/* ============================================
   HOMEPAGE V2 — LV-KAZINO.COM
   Separate CSS file for the new homepage template
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --hp2-primary: #5c2698;
    --hp2-primary-light: #7b3ec0;
    --hp2-primary-dark: #421b6e;
    --hp2-accent: #e84393;
    --hp2-cta: #c4e538;
    --hp2-cta-hover: #b5d632;
    --hp2-cta-text: #1a1b25;
    --hp2-text: #2e3246;
    --hp2-text-light: #7f8c8d;
    --hp2-heading: #151515;
    --hp2-bg: #ffffff;
    --hp2-bg-alt: #f5f6fa;
    --hp2-bg-dark: #1a1b25;
    --hp2-border: #e9ecef;
    --hp2-shadow: 0 2px 20px rgba(92, 38, 152, 0.08);
    --hp2-shadow-hover: 0 8px 30px rgba(92, 38, 152, 0.15);
    --hp2-radius: 12px;
    --hp2-radius-sm: 8px;
    --hp2-transition: 0.3s ease;
    --hp2-max-width: 1200px;
}

/* ---------- RESET FOR TEMPLATE ---------- */
/* (sticky handled via JS due to Mercury overflow chain) */
.hp2-section { box-sizing: border-box; }
.hp2-section *, .hp2-hero * { box-sizing: border-box; }

/* ============================================
   HERO SECTION
   ============================================ */
.hp2-hero {
    position: relative;
    padding: 0;
    color: #fff;
    overflow: hidden;
}
.hp2-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0533 0%, var(--hp2-primary-dark) 25%, var(--hp2-primary) 55%, var(--hp2-accent) 100%);
    z-index: 0;
}
.hp2-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 90%, rgba(232, 67, 147, 0.2), transparent),
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(92, 38, 152, 0.3), transparent);
    z-index: 1;
}
.hp2-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-image: radial-gradient(ellipse 60% 70% at 10% 100%, black 0%, transparent 55%),
                        radial-gradient(ellipse 50% 80% at 95% 85%, black 0%, transparent 55%);
    mask-image: radial-gradient(ellipse 60% 70% at 10% 100%, black 0%, transparent 55%),
                radial-gradient(ellipse 50% 80% at 95% 85%, black 0%, transparent 55%);
    z-index: 2;
}

.hp2-hero-ins {
    position: relative;
    z-index: 3;
    max-width: var(--hp2-max-width);
    margin: 0 auto;
    padding: 50px 20px 45px;
}
/* ---------- HERO GRID (left + right) ---------- */
.hp2-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: stretch;
}
.hp2-hero-grid--solo {
    grid-template-columns: 1fr;
}
.hp2-hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
/* ---------- HERO IMAGE MODE ---------- */
.hp2-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp2-hero-custom-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- AUTHOR CHIP ---------- */
.hp2-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.hp2-author-chip {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp2-author-chip-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: all var(--hp2-transition);
}
.hp2-author-chip-link:hover {
    color: #fff;
}
.hp2-author-chip-link:hover .hp2-author-avatar {
    box-shadow: 0 0 0 3px var(--hp2-accent);
}
.hp2-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all var(--hp2-transition);
}
.hp2-author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.hp2-author-name {
    font-size: 0.9em;
    font-weight: 700;
    color: #fff;
}
.hp2-author-role {
    font-size: 0.75em;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.hp2-author-socials {
    display: flex;
    gap: 6px;
}
.hp2-author-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    transition: all var(--hp2-transition);
    text-decoration: none;
}
.hp2-author-socials a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-1px);
}
.hp2-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}
.hp2-meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8em;
    color: rgba(255,255,255,0.6);
}
.hp2-meta-date svg {
    opacity: 0.6;
}

/* ---------- HERO H1 ---------- */
.hp2-hero-h1 {
    font-size: 2.8em;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #fff;
    letter-spacing: -0.02em;
}
.hp2-hero-h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--hp2-cta), var(--hp2-accent));
    border-radius: 2px;
    margin-top: 16px;
}

/* ---------- HERO TEXT (glass card) ---------- */
.hp2-hero-text {
    position: relative;
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 28px 20px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hp2-hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 20%, rgba(196,229,56,0.2) 50%, rgba(232,67,147,0.15) 80%, transparent);
}
.hp2-hero-text-clip {
    max-height: 76px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.hp2-hero-text-clip.expanded {
    max-height: 2000px;
}
.hp2-hero-text-inner {
    font-size: 0.95em;
    line-height: 1.8;
}
.hp2-hero-text-inner p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.85);
}
.hp2-hero-text-inner p:last-child {
    margin-bottom: 0;
}
.hp2-hero-text-inner a {
    color: var(--hp2-cta);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(196, 229, 56, 0.4);
    transition: text-decoration-color var(--hp2-transition);
}
.hp2-hero-text-inner a:hover {
    text-decoration-color: var(--hp2-cta);
}

/* ---------- HERO TOGGLE BUTTON ---------- */
.hp2-hero-toggle {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    margin-top: 18px;
    transition: all var(--hp2-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    line-height: 1;
}
.hp2-hero-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hp2-hero-toggle-more,
.hp2-hero-toggle-less {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.hp2-hero-toggle svg {
    display: block;
    flex-shrink: 0;
    position: relative;
    top: 0;
}

/* ============================================
   CASINO OF THE MONTH (hero sidebar)
   ============================================ */
.hp2-hero-sidebar {
    display: flex;
    align-items: stretch;
}
.hp2-cotm-card {
    background: #c4538e;
    border-radius: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Subtle noise texture overlay */
.hp2-cotm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Top: logo + badge row --- */
.hp2-cotm-head {
    position: relative;
    z-index: 2;
    padding: 22px 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp2-cotm-logo {
    flex-shrink: 0;
}
.hp2-cotm-logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.hp2-cotm-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.65em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 50px;
}
.hp2-cotm-badge svg {
    color: #ffd32a;
}

/* --- Body --- */
.hp2-cotm-body {
    position: relative;
    z-index: 2;
    padding: 16px 22px 0;
    flex: 1;
}
.hp2-cotm-name {
    font-size: 1.1em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.25;
}
.hp2-cotm-rating {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}
.hp2-cotm-rating-number {
    font-size: 1.35em;
    font-weight: 900;
    color: #ffd32a;
    line-height: 1;
}
.hp2-cotm-rating-stars {
    color: #ffd32a;
    font-size: 0.7em;
    letter-spacing: 1px;
    opacity: 0.85;
}
.hp2-cotm-bonus {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    margin-bottom: 14px;
}
.hp2-cotm-bonus p {
    margin: 0;
    color: inherit;
}

/* --- Mini stat bars --- */
.hp2-cotm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-bottom: 16px;
}
.hp2-cotm-feat-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hp2-cotm-feat-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.hp2-cotm-feat-label {
    font-size: 0.68em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hp2-cotm-feat-val {
    font-size: 0.68em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
}
.hp2-cotm-feat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}
.hp2-cotm-feat-fill {
    height: 100%;
    background: #ffd32a;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Bottom actions --- */
.hp2-cotm-actions {
    position: relative;
    z-index: 2;
    padding: 0 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp2-cotm-actions .hp2-btn-primary {
    padding: 12px 20px;
    font-size: 0.9em;
    border-radius: 12px;
    background: #fff;
    color: #c4538e !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    font-weight: 800;
    letter-spacing: 0.01em;
}
.hp2-cotm-actions .hp2-btn-primary:hover {
    background: #ffd32a;
    color: #1a1b25 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hp2-cotm-review-link {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--hp2-transition);
    text-align: center;
}
.hp2-cotm-review-link:hover {
    color: #fff !important;
}

/* ---------- TRUST BAR ---------- */
.hp2-trust-bar {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.hp2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hp2-trust-item svg {
    color: var(--hp2-cta);
    flex-shrink: 0;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.hp2-section {
    padding: 45px 0;
}
.hp2-section:nth-child(even) {
    background-color: var(--hp2-bg-alt);
}
.hp2-section-ins {
    max-width: var(--hp2-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.hp2-section-header {
    margin-bottom: 35px;
}
.hp2-section-title {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--hp2-heading);
    margin: 0 0 10px;
    line-height: 1.3;
}
.hp2-section-title span {
    position: relative;
    padding-left: 22px;
}
.hp2-section-title span::before,
.hp2-section-title span::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
}
.hp2-section-title span::before {
    background: var(--hp2-accent);
    top: calc(50% - 8px);
}
.hp2-section-title span::after {
    background: var(--hp2-primary);
    top: calc(50% + 2px);
}
.hp2-section-subtitle {
    font-size: 1.05em;
    color: var(--hp2-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   TABS
   ============================================ */
.hp2-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--hp2-border);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.hp2-tabs::-webkit-scrollbar {
    display: none;
}
.hp2-tab {
    padding: 12px 24px;
    border: none;
    background: none;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--hp2-text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all var(--hp2-transition);
}
.hp2-tab:hover {
    color: var(--hp2-primary);
}
.hp2-tab.active {
    color: var(--hp2-primary);
    border-bottom-color: var(--hp2-primary);
}
a.hp2-tab {
    text-decoration: none;
    color: var(--hp2-text-light);
}
a.hp2-tab:hover {
    color: var(--hp2-primary);
}

/* (filters removed) */

/* ============================================
   CASINO CARDS
   ============================================ */
.hp2-casino-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-height: 400px; /* prevent CLS on AJAX tab switch */
}
.hp2-casino-card {
    display: grid;
    grid-template-columns: 50px 80px 1fr 200px 180px;
    align-items: center;
    gap: 20px;
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 20px 24px;
    transition: all var(--hp2-transition);
}
.hp2-casino-card:hover {
    border-color: var(--hp2-primary-light);
    box-shadow: var(--hp2-shadow-hover);
    transform: translateY(-2px);
}
.hp2-casino-rank {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--hp2-primary);
    text-align: center;
}
.hp2-casino-logo img {
    width: 80px;
    height: 80px;
    border-radius: var(--hp2-radius-sm);
    object-fit: cover;
}
.hp2-casino-name {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 4px;
}
.hp2-casino-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.hp2-rating-score {
    font-size: 1.1em;
    font-weight: 800;
    color: var(--hp2-primary);
}
.hp2-rating-stars {
    color: #f39c12;
    font-size: 0.85em;
    letter-spacing: 1px;
}
.hp2-casino-bonus-label {
    font-size: 0.75em;
    text-transform: uppercase;
    color: var(--hp2-text-light);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.hp2-casino-bonus-text {
    font-size: 1em;
    font-weight: 700;
    color: var(--hp2-accent);
    line-height: 1.3;
}
.hp2-casino-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp2-casino-features li {
    font-size: 0.85em;
    color: var(--hp2-text);
    margin-bottom: 4px;
    line-height: 1.4;
}
.hp2-casino-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.hp2-btn-primary {
    display: inline-block;
    background: var(--hp2-cta);
    color: var(--hp2-cta-text) !important;
    padding: 13px 32px;
    border-radius: var(--hp2-radius-sm);
    font-weight: 700;
    font-size: 0.95em;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all var(--hp2-transition);
    box-shadow: 0 4px 15px rgba(196, 229, 56, 0.35);
    width: 100%;
}
.hp2-btn-primary:hover {
    background: var(--hp2-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196, 229, 56, 0.45);
}
.hp2-btn-secondary {
    font-size: 0.85em;
    color: var(--hp2-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--hp2-transition);
}
.hp2-btn-secondary:hover {
    color: var(--hp2-accent) !important;
}
.hp2-btn-outline {
    background: transparent;
    border: 2px solid var(--hp2-primary);
    color: var(--hp2-primary);
    padding: 12px 40px;
    border-radius: var(--hp2-radius-sm);
    font-weight: 700;
    font-size: 0.95em;
    cursor: pointer;
    transition: all var(--hp2-transition);
}
.hp2-btn-outline:hover {
    background: var(--hp2-primary);
    color: #fff;
}
.hp2-btn-link {
    color: var(--hp2-primary) !important;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
}
.hp2-btn-link:hover {
    color: var(--hp2-accent) !important;
}
.hp2-show-more-wrap {
    text-align: center;
    margin-top: 30px;
}

/* ============================================
   CRITERIA / HOW WE RATE
   ============================================ */
.hp2-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.hp2-criteria-card {
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--hp2-transition);
}
.hp2-criteria-card:hover {
    box-shadow: var(--hp2-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--hp2-primary-light);
}
.hp2-criteria-icon {
    font-size: 2.2em;
    margin-bottom: 15px;
}
.hp2-criteria-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 10px;
}
.hp2-criteria-card p {
    font-size: 0.9em;
    color: var(--hp2-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   BONUS TYPES
   ============================================ */
.hp2-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.hp2-bonus-card {
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    transition: all var(--hp2-transition);
    display: block;
}
.hp2-bonus-card:hover {
    box-shadow: var(--hp2-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--hp2-accent);
}
.hp2-bonus-card-icon {
    font-size: 2em;
    margin-bottom: 12px;
}
.hp2-bonus-card h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 8px;
}
.hp2-bonus-card p {
    font-size: 0.85em;
    color: var(--hp2-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   PAYMENTS
   ============================================ */
.hp2-payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    justify-content: center;
}
.hp2-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-sm);
    text-decoration: none;
    transition: all var(--hp2-transition);
    min-width: 120px;
}
.hp2-payment-item:hover {
    border-color: var(--hp2-primary);
    box-shadow: var(--hp2-shadow);
}
.hp2-payment-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.hp2-payment-item span {
    font-size: 0.85em;
    color: var(--hp2-text);
    font-weight: 600;
}

/* ============================================
   GAME TYPES
   ============================================ */
.hp2-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.hp2-game-card {
    position: relative;
    border-radius: var(--hp2-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
}
.hp2-game-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--hp2-primary);
    transition: transform 0.5s ease;
}
.hp2-game-card:hover .hp2-game-card-bg {
    transform: scale(1.08);
}
.hp2-game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}
.hp2-game-card-overlay h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}
.hp2-game-count {
    font-size: 0.85em;
    opacity: 0.85;
    color: var(--hp2-cta);
    font-weight: 600;
}

/* ============================================
   NEW CASINOS
   ============================================ */
.hp2-new-casino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.hp2-new-casino-card {
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all var(--hp2-transition);
}
.hp2-new-casino-card:hover {
    box-shadow: var(--hp2-shadow-hover);
    transform: translateY(-3px);
}
.hp2-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #4cd137;
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp2-new-casino-card img {
    width: 64px;
    height: 64px;
    border-radius: var(--hp2-radius-sm);
    object-fit: cover;
    margin-bottom: 12px;
}
.hp2-new-casino-card h3 {
    font-size: 1em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 8px;
}
.hp2-new-casino-bonus {
    font-size: 0.9em;
    font-weight: 700;
    color: var(--hp2-accent);
    margin-bottom: 15px;
}
.hp2-new-casino-card .hp2-btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-bottom: 8px;
}

/* ============================================
   BIG WINS
   ============================================ */
.hp2-wins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.hp2-win-card {
    background: var(--hp2-bg);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    overflow: hidden;
    transition: all var(--hp2-transition);
}
.hp2-win-card:hover {
    box-shadow: var(--hp2-shadow-hover);
    transform: translateY(-2px);
}
.hp2-win-image {
    position: relative;
    overflow: hidden;
}
.hp2-win-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.hp2-win-amount {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--hp2-primary), var(--hp2-accent));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2em;
}
.hp2-win-details {
    padding: 20px;
}
.hp2-win-details h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 8px;
}
.hp2-win-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}
.hp2-win-meta span {
    font-size: 0.8em;
    color: var(--hp2-text-light);
}
.hp2-win-details p {
    font-size: 0.9em;
    color: var(--hp2-text);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   GUIDE
   ============================================ */
.hp2-guide-content {
    margin-top: 30px;
}
.hp2-guide-toc {
    background: var(--hp2-bg-alt);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 24px 30px;
    margin-bottom: 30px;
}
.hp2-guide-toc h3 {
    font-size: 1em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 12px;
}
.hp2-guide-toc ol {
    margin: 0;
    padding-left: 20px;
}
.hp2-guide-toc li {
    margin-bottom: 6px;
}
.hp2-guide-toc a {
    color: var(--hp2-primary);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
}
.hp2-guide-toc a:hover {
    color: var(--hp2-accent);
    text-decoration: underline;
}
.hp2-guide-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-guide-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.hp2-guide-section h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--hp2-heading);
    margin: 0 0 12px;
}
.hp2-guide-section p {
    font-size: 0.95em;
    color: var(--hp2-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.hp2-faq .hp2-section-title {
    text-align: center;
}
.hp2-faq-list {
    margin: 30px auto 0;
    max-width: 900px;
}
.hp2-faq-item {
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--hp2-bg);
    transition: border-color var(--hp2-transition);
}
.hp2-faq-item:hover {
    border-color: var(--hp2-primary-light);
}
.hp2-faq-item.active {
    border-color: var(--hp2-primary);
}
.hp2-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: var(--hp2-heading);
    text-align: left;
    gap: 16px;
}
.hp2-faq-question svg {
    flex-shrink: 0;
    transition: transform var(--hp2-transition);
    color: var(--hp2-primary);
}
.hp2-faq-item.active .hp2-faq-question svg {
    transform: rotate(180deg);
}
.hp2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.hp2-faq-item.active .hp2-faq-answer {
    max-height: 500px;
}
.hp2-faq-answer > div {
    padding: 0 20px 18px;
}
.hp2-faq-answer p {
    font-size: 0.95em;
    color: var(--hp2-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 1024px) {
    .hp2-casino-card {
        grid-template-columns: 40px 70px 1fr 160px;
        gap: 15px;
        padding: 16px 18px;
    }
    .hp2-casino-features {
        display: none;
    }
    .hp2-criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp2-bonus-grid,
    .hp2-games-grid,
    .hp2-new-casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp2-trust-bar {
        gap: 16px;
    }
    .hp2-hero-grid {
        grid-template-columns: 1fr 280px;
        gap: 28px;
    }
}

@media screen and (max-width: 768px) {
    .hp2-hero-ins {
        padding: 35px 16px 30px;
    }
    .hp2-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hp2-cotm-card {
        max-width: 380px;
        margin: 0 auto;
    }
    .hp2-hero-text {
        padding: 18px 20px 16px;
        border-radius: 12px;
    }
    .hp2-hero-h1 {
        font-size: 2em;
    }
    .hp2-hero-meta {
        gap: 12px;
        margin-bottom: 20px;
    }
    .hp2-meta-divider {
        display: none;
    }
    .hp2-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        margin-top: 24px;
        padding-top: 18px;
    }
    .hp2-trust-item {
        font-size: 0.78em;
    }
    .hp2-section {
        padding: 40px 0;
    }
    .hp2-section-title {
        font-size: 1.4em;
    }
    .hp2-casino-card {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding: 20px;
        position: relative;
    }
    .hp2-casino-rank {
        position: absolute;
        top: 12px;
        left: 12px;
        font-size: 1em;
    }
    .hp2-casino-logo {
        display: flex;
        justify-content: center;
    }
    .hp2-casino-rating {
        justify-content: center;
    }
    .hp2-casino-features {
        display: none;
    }
    .hp2-casino-actions {
        width: 100%;
    }
    .hp2-criteria-grid,
    .hp2-bonus-grid,
    .hp2-games-grid,
    .hp2-new-casino-grid {
        grid-template-columns: 1fr;
    }
    .hp2-wins-grid {
        grid-template-columns: 1fr;
    }
    .hp2-tabs {
        gap: 0;
    }
    .hp2-tab {
        padding: 10px 14px;
        font-size: 0.85em;
    }
    .hp2-payment-item {
        min-width: 100px;
        padding: 14px 16px;
    }
}

@media screen and (max-width: 480px) {
    .hp2-hero-h1 {
        font-size: 1.6em;
    }
    .hp2-hero-h1::after {
        width: 50px;
        height: 3px;
        margin-top: 12px;
    }
    .hp2-author-chip-link {
        gap: 8px;
    }
    .hp2-author-avatar {
        width: 34px;
        height: 34px;
    }
    .hp2-author-name {
        font-size: 0.82em;
    }
    .hp2-author-role {
        font-size: 0.7em;
    }
    .hp2-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }
    .hp2-section-title {
        font-size: 1.25em;
    }
    .hp2-bonus-grid,
    .hp2-new-casino-grid {
        grid-template-columns: 1fr;
    }
    .hp2-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   HIDE MOLONGUI PLUGIN AUTHOR BOX (we use our own)
   ============================================ */
.m-a-box,
.molongui-clearfix {
    display: none !important;
}

/* ============================================
   GUIDE ARTICLE — LAYOUT WITH STICKY TOC
   ============================================ */
.hp2-guide-article {
    padding: 60px 0 0;
    background: var(--hp2-bg);
    overflow: visible !important;
}
.hp2-guide-layout {
    max-width: var(--hp2-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
    overflow: visible !important;
}

/* --- TOC SIDEBAR --- */
.hp2-toc-sidebar {
    align-self: start;
}
.hp2-toc {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/* JS controls: always fixed when active, top adjusted dynamically */
.hp2-toc.is-stuck {
    position: fixed;
    width: 220px;
    transition: opacity 0.3s;
}
.hp2-toc-sidebar.has-stuck {
    position: relative;
}
.hp2-toc {
    background: var(--hp2-bg-alt);
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid var(--hp2-border);
}
.hp2-toc-title {
    font-size: 0.7em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp2-text-light);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc;
}
.hp2-toc-list li { counter-increment: toc; margin-bottom: 2px; }
.hp2-toc-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.78em;
    font-weight: 500;
    color: var(--hp2-text);
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.35;
}
.hp2-toc-list a::before {
    content: counter(toc);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--hp2-text-light);
    flex-shrink: 0;
    transition: all 0.2s;
}
.hp2-toc-list a:hover { background: rgba(92,38,152,0.05); color: var(--hp2-primary); }
.hp2-toc-list a.active { background: rgba(92,38,152,0.08); color: var(--hp2-primary); font-weight: 700; }
.hp2-toc-list a.active::before { background: var(--hp2-primary); color: #fff; }

/* --- GUIDE MAIN --- */
.hp2-guide-main { min-width: 0; }
.hp2-gs {
        padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--hp2-border);
}
.hp2-gs:last-child { border-bottom: none; margin-bottom: 0; }
.hp2-gs h2 { font-size: 1.6em; font-weight: 800; color: var(--hp2-heading); margin: 0 0 16px; line-height: 1.25; }
.hp2-gs h3 { font-size: 1.15em; font-weight: 700; color: var(--hp2-heading); margin: 20px 0 10px; }
.hp2-gs p { font-size: 0.95em; color: var(--hp2-text); line-height: 1.8; margin: 0 0 14px; }
.hp2-gs a { color: var(--hp2-primary); text-decoration: underline; text-decoration-color: rgba(92,38,152,0.3); text-underline-offset: 2px; transition: text-decoration-color 0.2s; }
.hp2-gs a:hover { text-decoration-color: var(--hp2-primary); }

/* --- ICON ROW --- */
.hp2-icon-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.hp2-icon-item { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--hp2-bg-alt); border-radius: 50px; font-size: 0.88em; font-weight: 600; color: var(--hp2-heading); }

/* --- CRITERIA (guide override) --- */
.hp2-gs .hp2-criteria-grid { margin-top: 24px; margin-bottom: 8px; }
.hp2-gs .hp2-criteria-card { text-align: left; padding: 24px 22px; }
.hp2-gs .hp2-criteria-icon { font-size: 1em; margin-bottom: 10px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(92,38,152,0.07); border-radius: 12px; color: var(--hp2-primary); }
.hp2-gs .hp2-criteria-card h3 { margin: 0 0 6px; font-size: 1em; }
.hp2-gs .hp2-criteria-card p { font-size: 0.85em; margin: 0; line-height: 1.6; }

/* --- PROS / CONS --- */
.hp2-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.hp2-pros, .hp2-cons { padding: 20px 22px; border-radius: 12px; }
.hp2-pros { background: #ecfdf5; border: 1px solid #a7f3d0; }
.hp2-cons { background: #fef2f2; border: 1px solid #fecaca; }
.hp2-pros h4, .hp2-cons h4 { font-size: 0.85em; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.hp2-pros h4 { color: #059669; }
.hp2-cons h4 { color: #dc2626; }
.hp2-pros ul, .hp2-cons ul { list-style: none; margin: 0; padding: 0; }
.hp2-pros li, .hp2-cons li { font-size: 0.88em; padding: 4px 0 4px 20px; position: relative; color: var(--hp2-text); line-height: 1.5; }
.hp2-pros li::before { content: '\2713'; position: absolute; left: 0; color: #059669; font-weight: 700; }
.hp2-cons li::before { content: '\2715'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* --- COMPARE TABLE --- */
.hp2-compare-table-wrap { margin: 24px 0; overflow-x: auto; border-radius: 12px; border: 1px solid var(--hp2-border); }
.hp2-compare-table { width: 100%; border-collapse: collapse; font-size: 0.88em; }
.hp2-compare-table th { padding: 14px 18px; background: var(--hp2-bg-alt); font-weight: 700; color: var(--hp2-heading); text-align: left; border-bottom: 2px solid var(--hp2-border); }
.hp2-compare-table th:first-child { color: var(--hp2-text-light); font-weight: 600; }
.hp2-compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--hp2-border); color: var(--hp2-text); line-height: 1.45; }
.hp2-compare-table tr:last-child td { border-bottom: none; }
.hp2-compare-table tbody tr:hover { background: rgba(92,38,152,0.02); }

/* --- CALLOUTS --- */
.hp2-callout {
    position: relative;
    padding: 20px 24px 20px 58px;
    border-radius: 14px;
    margin: 0 0 15px;
    font-size: 0.9em;
    line-height: 1.65;
    border: 1px solid;
}
.hp2-callout::before {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 1.15em;
    line-height: 1;
}
.hp2-callout--tip {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #a7f3d0;
    color: #065f46;
}
.hp2-callout--tip::before { content: '\2714'; color: #10b981; }
.hp2-callout--example {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
    color: #1e40af;
}
.hp2-callout--example::before { content: '\1F4A1'; }
.hp2-callout--warning {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-color: #fde68a;
    color: #92400e;
}
.hp2-callout--warning::before { content: '\26A0'; color: #f59e0b; }
.hp2-callout--help {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-color: #c4b5fd;
    color: #581c87;
}
.hp2-callout--help::before { content: '\2139'; color: var(--hp2-primary); }
.hp2-callout a { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(0,0,0,0.15); text-underline-offset: 2px; }
.hp2-callout a:hover { text-decoration-color: currentColor; }

/* --- BONUS & GAME TABS --- */
.hp2-bonus-tabs, .hp2-game-tabs { margin: 24px 0; border: 1px solid var(--hp2-border); border-radius: 14px; overflow: hidden; background: var(--hp2-bg); }
.hp2-bonus-tabs-nav, .hp2-game-tabs-nav { display: flex; background: var(--hp2-bg-alt); border-bottom: 1px solid var(--hp2-border); }
.hp2-bt-tab, .hp2-gt-tab { flex: 1; padding: 14px 16px; border: none; background: none; font-size: 0.85em; font-weight: 600; color: var(--hp2-text-light); cursor: pointer; transition: all 0.2s; border-bottom: 3px solid transparent; text-align: center; }
.hp2-bt-tab:hover, .hp2-gt-tab:hover { color: var(--hp2-primary); background: rgba(92,38,152,0.03); }
.hp2-bt-tab.active, .hp2-gt-tab.active { color: var(--hp2-primary); border-bottom-color: var(--hp2-primary); background: var(--hp2-bg); }
.hp2-bonus-tabs-content, .hp2-game-tabs-content { padding: 24px; }
.hp2-bt-panel, .hp2-gt-panel { display: none; }
.hp2-bt-panel.active, .hp2-gt-panel.active { display: block; }
.hp2-bt-panel h3, .hp2-gt-panel h3 { margin-top: 0; }

/* --- PAYMENT CARDS --- */
.hp2-pay-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.hp2-pay-card { padding: 24px 22px; background: var(--hp2-bg); border: 1px solid var(--hp2-border); border-radius: 14px; transition: all var(--hp2-transition); }
.hp2-pay-card:hover { border-color: var(--hp2-primary-light); box-shadow: var(--hp2-shadow); }
.hp2-pay-card-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(92,38,152,0.07); border-radius: 12px; color: var(--hp2-primary); margin-bottom: 14px; }
.hp2-pay-card h3 { font-size: 1em; margin: 0 0 8px; }
.hp2-pay-card p { font-size: 0.85em; color: var(--hp2-text-light); line-height: 1.55; margin: 0; }

/* --- PROVIDER LIST --- */
.hp2-provider-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.hp2-provider-item { padding: 18px 20px; background: var(--hp2-bg-alt); border-radius: 12px; border: 1px solid var(--hp2-border); transition: border-color 0.2s; }
.hp2-provider-item:hover { border-color: var(--hp2-primary-light); }
.hp2-provider-item dt { font-size: 0.95em; font-weight: 800; color: var(--hp2-heading); margin-bottom: 4px; }
.hp2-provider-item dd { font-size: 0.85em; color: var(--hp2-text-light); line-height: 1.5; margin: 0; }

/* --- CHECKLIST --- */
.hp2-check-list { list-style: none; margin: 16px 0; padding: 0; }
.hp2-check-list li { padding: 6px 0 6px 24px; position: relative; font-size: 0.92em; color: var(--hp2-text); line-height: 1.6; }
.hp2-check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--hp2-primary); font-weight: 700; }

/* --- STEPS --- */
.hp2-steps { list-style: none; margin: 24px 0; padding: 0; }
.hp2-steps li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--hp2-border); font-size: 0.92em; color: var(--hp2-text); line-height: 1.6; }
.hp2-steps li:last-child { border-bottom: none; }
.hp2-step-num { display: flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; border-radius: 10px; background: var(--hp2-primary); color: #fff; font-weight: 800; font-size: 0.85em; flex-shrink: 0; }

/* --- RESPONSIBLE GRID --- */
.hp2-resp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.hp2-resp-card { padding: 20px; background: var(--hp2-bg-alt); border-radius: 12px; border: 1px solid var(--hp2-border); }
.hp2-resp-card strong { display: block; font-size: 0.92em; color: var(--hp2-heading); margin-bottom: 6px; }
.hp2-resp-card p { font-size: 0.85em; color: var(--hp2-text-light); line-height: 1.55; margin: 0; }

/* ============================================
   AUTHOR BOX
   ============================================ */
.hp2-author-section {
    padding: 48px 0;
    background: var(--hp2-bg);
}
.hp2-author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: var(--hp2-bg-alt);
    border: 1px solid var(--hp2-border);
    border-radius: 18px;
}
.hp2-ab-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.hp2-ab-content {
    flex: 1;
    min-width: 0;
}
.hp2-ab-label {
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hp2-accent);
    margin-bottom: 4px;
}
.hp2-ab-name {
    font-size: 1.15em;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.3;
}
.hp2-ab-name a {
    color: var(--hp2-heading);
    text-decoration: none;
    transition: color 0.2s;
}
.hp2-ab-name a:hover {
    color: var(--hp2-primary);
}
.hp2-ab-bio {
    font-size: 0.88em;
    color: var(--hp2-text);
    line-height: 1.7;
    margin: 0 0 14px;
}
.hp2-ab-socials {
    display: flex;
    gap: 8px;
}
.hp2-ab-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--hp2-border);
    color: var(--hp2-text-light);
    transition: all 0.2s;
    text-decoration: none;
}
.hp2-ab-socials a:hover {
    color: var(--hp2-primary);
    border-color: var(--hp2-primary);
    background: rgba(92,38,152,0.04);
}
@media screen and (max-width: 600px) {
    .hp2-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
    .hp2-ab-socials { justify-content: center; }
}

/* --- GUIDE RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .hp2-guide-layout { grid-template-columns: 190px 1fr; gap: 32px; }
    .hp2-pay-cards, .hp2-provider-list { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
    .hp2-guide-layout { grid-template-columns: 1fr; gap: 0; }
    .hp2-toc-sidebar { margin-bottom: 30px; min-height: 0 !important; }
    .hp2-toc.is-stuck, .hp2-toc.is-bottom { position: static !important; width: auto !important; }
    .hp2-toc-list { display: flex; flex-wrap: wrap; gap: 4px; }
    .hp2-toc-list a { padding: 5px 10px; font-size: 0.72em; }
    .hp2-toc-list a::before { min-width: 18px; height: 18px; font-size: 0.75em; }
    .hp2-gs h2 { font-size: 1.3em; }
    .hp2-pros-cons, .hp2-resp-grid, .hp2-criteria-grid { grid-template-columns: 1fr; }
    .hp2-bonus-tabs-nav, .hp2-game-tabs-nav { flex-wrap: wrap; }
    .hp2-bt-tab, .hp2-gt-tab { font-size: 0.78em; padding: 10px 12px; }
}