/* ============================================
   INDEX — Landing page (extends common.css)
   Royal Emerald + Champagne Gold theme
   ============================================ */

:root {
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.14);
    --surface-elevated: rgba(15, 42, 30, 0.88);
    --ring-focus: 0 0 0 2px var(--bg-dark), 0 0 0 4px var(--secondary-color);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

main {
    padding-top: 76px;
}

/* ── Shared index typography ── */
.section-prefix {
    font-family: 'DM Sans', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.section-head .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.section-head .section-title::after {
    margin: 0.5rem 0 0;
    text-align: left;
}

.section-title--center {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
}

.section-intro--center {
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

/* ── Buttons ── */
.btn-primary,
.btn-ghost,
.btn-secondary {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.85rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-secondary:focus-visible {
    outline: none;
    box-shadow: var(--ring-focus);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-light);
}

.btn-ghost:hover {
    border-color: var(--secondary-color);
    color: var(--accent-color);
    background: var(--gold-soft);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--border-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.18);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.78rem;
}

.btn--lg {
    padding: 1.05rem 2.75rem;
    font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 15% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.hero-main .badge {
    width: fit-content;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    background: var(--gold-soft);
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.hero-main h1 {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.hero-desc {
    font-size: clamp(0.92rem, 1.6vw, 1.02rem);
    color: var(--text-muted);
    max-width: 32rem;
    line-height: 1.8;
    margin-bottom: 1.85rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

/* Live wins ticker */
.live-wins-bar {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border-subtle);
    background: rgba(4, 16, 8, 0.85);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
    overflow: hidden;
}

.live-wins-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    border-right: 1px solid var(--border-subtle);
    font-family: 'DM Sans', sans-serif;
}

.wins-track-container {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.wins-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.8rem 0;
    width: max-content;
    animation: wins-marquee 100s linear infinite;
}

@keyframes wins-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.win-ticket {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    white-space: nowrap;
    background: rgba(15, 42, 30, 0.6);
}

.win-user { font-weight: 600; color: var(--text-main); }
.win-amount { font-weight: 700; color: var(--secondary-color); }

/* ── Games ── */
.games-section {
    border-top: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 40%, rgba(5, 150, 105, 0.04));
}

.games-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.games-header-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.games-header-icons span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.games-header-icons span:nth-child(2) {
    transform: scale(1.15);
    background: rgba(5, 150, 105, 0.12);
    color: var(--primary-color);
    border-color: rgba(5, 150, 105, 0.3);
}

.games-section-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0.75rem auto 1.5rem;
    max-width: 32rem;
}

.games-catalog-btn {
    margin: 0 auto;
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.game-row-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 1.35rem;
    padding: 0.85rem 1.25rem 0.85rem 0.85rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.game-row-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-card);
    transform: translateX(6px);
}

.game-row-card:nth-child(even) {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), var(--surface-elevated));
}

.game-row-media {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}

.game-row-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-row-card:hover .game-row-img {
    transform: scale(1.06);
}

.game-row-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 26, 18, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-row-play i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    color: #071a12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding-left: 3px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.game-row-card:hover .game-row-play {
    opacity: 1;
}

.game-row-body {
    min-width: 0;
    padding: 0.25rem 0;
}

.game-row-title {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.game-row-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-row-action {
    flex-shrink: 0;
    padding-right: 0.25rem;
}

.game-row-action .btn-primary {
    white-space: nowrap;
}

.payment-strip {
    margin-top: 2.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: rgba(212, 175, 55, 0.04);
}

.ps-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
}

.ps-item {
    font-size: 0.82rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    background: rgba(15, 42, 30, 0.5);
}

.ps-item i {
    color: var(--secondary-color);
}

/* ── Providers marquee ── */
.providers-strip {
    border-block: 1px solid var(--border-subtle);
    background: rgba(4, 16, 8, 0.7);
    padding: 1.15rem 0;
    overflow: hidden;
}

.providers-track-container {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.providers-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: providers-marquee 40s linear infinite;
}

@keyframes providers-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.provider-logo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'DM Sans', sans-serif;
}

.provider-logo i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ── Ad banner block ── */
.ad-banner-section {
    margin: clamp(2.5rem, 5vw, 3.5rem) auto;
}

/* ── VIP ── */
.vip-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent 60%);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vip-section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 2.75rem;
    position: relative;
    z-index: 1;
}

.vip-section-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 0.75rem;
}

.vip-ladder {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vip-ladder::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, #059669, #94a3b8, var(--secondary-color));
    border-radius: 2px;
    opacity: 0.45;
}

.vip-tier-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem 1.5rem 0;
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.vip-tier-card:last-child {
    margin-bottom: 0;
}

.vip-tier-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-card);
    transform: translateX(8px);
}

.vip-tier-card--emerald {
    border-left: 4px solid #059669;
}

.vip-tier-card--ruby {
    border-left: 4px solid #94a3b8;
}

.vip-tier-card--diamond {
    border-left: 4px solid var(--secondary-color);
}

.vip-tier-card--featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(15, 42, 30, 0.95));
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 48px rgba(212, 175, 55, 0.1);
}

.vip-tier-card--featured:hover {
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.18);
}

.vip-tier-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.vip-tier-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.vip-tier-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 0 4px var(--bg-dark);
}

.vip-tier-card--emerald .vip-tier-node {
    color: #059669;
    border-color: rgba(5, 150, 105, 0.4);
    background: rgba(5, 150, 105, 0.1);
}

.vip-tier-card--ruby .vip-tier-node {
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(148, 163, 184, 0.1);
}

.vip-tier-card--diamond .vip-tier-node {
    color: var(--secondary-color);
    border-color: rgba(212, 175, 55, 0.5);
    background: var(--gold-soft);
    box-shadow: 0 0 0 4px var(--bg-dark), 0 0 20px rgba(212, 175, 55, 0.25);
}

.vip-tier-main {
    min-width: 0;
}

.vip-tier-head {
    margin-bottom: 0.75rem;
}

.vip-tier-head h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.vip-tier-head h3 .vip-tier-sub {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.35rem;
}

.vip-tier-points {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    font-family: 'DM Sans', sans-serif;
}

.vip-badge-hot {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #071a12;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.45rem;
    font-family: 'DM Sans', sans-serif;
}

.vip-perks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.vip-perks li {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vip-perks i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.vip-tier-cta {
    flex-shrink: 0;
}

.vip-tier-cta .btn-primary,
.vip-tier-cta .btn-secondary {
    white-space: nowrap;
}

/* ── Why choose ── */
.why-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 60%);
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.why-intro {
    position: sticky;
    top: 120px;
}

.why-intro .section-prefix {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    margin-bottom: 1rem;
}

.why-intro .section-prefix::before {
    content: '✦';
    color: var(--secondary-color);
}

.why-intro .section-title {
    text-align: left;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.why-intro .section-title::after {
    margin: 0.75rem 0 0;
    text-align: left;
}

.why-section-lead {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.why-checklist {
    margin: 1.75rem 0;
    display: grid;
    gap: 0.75rem;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.why-checklist li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.why-intro-cta {
    width: 100%;
}

.why-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-tile {
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-tile:hover {
    transform: translateY(-6px);
    border-color: var(--border-color);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.why-tile:hover::before {
    opacity: 1;
}

.why-tile-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.85rem;
    display: inline-block;
    transition: transform 0.35s ease;
}

.why-tile:hover .why-tile-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-tile h3 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 1;
}

.why-tile p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.why-tile--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), var(--surface-elevated));
    border-color: rgba(212, 175, 55, 0.3);
    padding: 1.75rem;
}

.why-tile--featured .why-tile-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.why-tile--wide {
    grid-column: span 2;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-feature-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-feature-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.why-feature-card--featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(15, 42, 30, 0.95));
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 32px rgba(212, 175, 55, 0.08);
}

.why-feature-card--featured:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.why-card-header .why-card-icon {
    font-size: 1.85rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.why-feature-card--featured .why-card-header .why-card-icon {
    color: var(--accent-color);
}

.why-card-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.why-feature-card > p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
    flex-grow: 1;
}

.why-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.why-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--text-light);
}

.why-card-features i {
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1rem;
}

.why-feature-card--featured .why-card-features i {
    color: var(--secondary-color);
}

.why-section-cta {
    text-align: center;
    margin-top: 1rem;
}

/* ── App ── */
.dual-section {
    background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.06), transparent 70%);
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.app-mockup-img:hover {
    transform: translateY(-10px);
}

.app-content {
    display: flex;
    flex-direction: column;
}

.app-content .section-prefix,
.app-content .section-title {
    text-align: left;
}

.app-content .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.app-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: var(--surface-elevated);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.app-feature-item:hover {
    border-color: var(--border-color);
    transform: translateX(8px);
}

.app-feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.app-feature-item h4 {
    font-size: 0.95rem;
    margin: 0 0 0.25rem 0;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.app-feature-item p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--text-muted);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ── News ── */
.news-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.35rem;
    align-items: start;
}

.news-featured {
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    transition: box-shadow 0.3s ease;
}

.news-featured:hover {
    box-shadow: var(--shadow-card);
}

.news-featured img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-featured-content {
    padding: 1.65rem;
}

.news-kicker {
    color: var(--secondary-color);
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.55rem;
    display: block;
    letter-spacing: 2px;
    font-family: 'DM Sans', sans-serif;
}

.news-featured-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.news-featured-content h3 a {
    color: var(--text-main);
    transition: color 0.25s ease;
}

.news-featured-content h3 a:hover {
    color: var(--secondary-color);
}

.news-featured-content > p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.news-link-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.news-link-more:hover {
    color: var(--secondary-color);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.news-list-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.9rem;
    padding: 0.9rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: rgba(15, 42, 30, 0.5);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.news-list-item:hover {
    border-color: var(--border-color);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(4px);
}

.news-list-item img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.news-content h3 {
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.news-content h3 a {
    color: var(--text-main);
}

.news-content h3 a:hover {
    color: var(--secondary-color);
}

.news-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── FAQ ── */
.faq-section {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 2rem auto 0;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: var(--surface-elevated);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-color);
}

.faq-question {
    padding: 1.1rem 1.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    user-select: none;
    font-family: 'DM Sans', sans-serif;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 1.35rem 1.15rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.12);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 25rem;
}

/* ── Features + SEO ── */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 2.5rem;
}

.feature-box {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: var(--gold-soft);
}

.feature-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.feature-box p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.seo-block {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: rgba(4, 16, 8, 0.6);
}

.seo-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.seo-block p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 0.85rem;
}

.seo-block p:last-child {
    margin-bottom: 0;
}

/* ── Testimonials ── */
.testimonials-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05), transparent 60%);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.testimonials-side {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.testimonial-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    padding: 1.65rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card--featured {
    background: linear-gradient(135deg, var(--surface-elevated) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    padding: 2rem;
}

.testimonial-card--small {
    padding: 1.25rem;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-card--featured:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.78rem;
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.85rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.testimonial-card--featured p {
    font-size: 1rem;
}

.testimonial-card--small p {
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-subtle);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.user-avatar--small {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-user strong {
    color: var(--text-main);
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.testimonial-card--featured .testimonial-user strong {
    font-size: 0.95rem;
}

.testimonial-user span {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4a530);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ── Trust + Payments ── */
.trust-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.15rem;
}

.trust-main,
.trust-side {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    padding: clamp(1.5rem, 3vw, 2rem);
}

.trust-main .section-title {
    text-align: left;
    margin-bottom: 0.75rem;
    font-size: clamp(1.3rem, 3vw, 1.85rem);
}

.trust-main .section-title::after {
    margin: 0.5rem 0 0;
}

.trust-lead {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.15rem;
    font-size: 0.9rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trust-list li {
    color: var(--text-light);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.trust-list i {
    color: var(--primary-color);
    margin-top: 0.15rem;
}

.trust-side h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.trust-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-bottom: 1.15rem;
}

.trust-pay-grid span {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(5, 150, 105, 0.05);
}

.trust-pay-grid i {
    color: var(--secondary-color);
}

.trust-side .btn-primary {
    width: 100%;
}

/* ── Responsible ── */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.responsible-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: rgba(15, 42, 30, 0.4);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.responsible-card:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
}

.responsible-card i {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
}

.responsible-card h3 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.responsible-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

/* ── Footer CTA strip ── */
.footer-register-banner {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(212, 175, 55, 0.12));
    border-block: 1px solid var(--border-color);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
    text-align: center;
}

.footer-register-banner h3 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin-bottom: 1.35rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.footer-register-banner .btn-primary {
    padding: 1rem 2.75rem;
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    color: #071a12;
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

.footer-register-banner .btn-primary:hover {
    box-shadow: 0 10px 36px rgba(212, 175, 55, 0.45);
}

/* ── Footer logo ── */
.footer-brand img {
    max-height: 46px;
    margin-bottom: 0.85rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-main { order: 1; }
    .hero-sidebar { order: 2; }

    .why-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-intro {
        position: static;
    }

    .news-split-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonials-side {
        flex-direction: row;
    }
    
    .testimonials-grid,
    .responsible-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vip-tier-card {
        grid-template-columns: 72px 1fr;
        gap: 1.15rem;
    }

    .vip-tier-cta {
        grid-column: 1 / -1;
    }

    .vip-tier-cta .btn-primary,
    .vip-tier-cta .btn-secondary {
        width: 100%;
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-content .section-prefix,
    .app-content .section-title {
        text-align: center;
    }
    
    .app-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .game-row-card {
        grid-template-columns: 140px 1fr;
        grid-template-rows: auto auto;
    }

    .game-row-action {
        grid-column: 1 / -1;
        padding: 0 0.25rem;
    }

    .game-row-action .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .app-mockup-img {
        max-height: 350px;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .live-wins-bar {
        flex-direction: column;
        width: 100%;
        border-radius: 0;
    }

    .live-wins-label {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        justify-content: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonials-side {
        flex-direction: column;
    }
    
    .testimonials-grid,
    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .vip-ladder::before {
        display: none;
    }

    .vip-tier-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        text-align: center;
    }

    .vip-tier-step {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .vip-perks {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .trust-pay-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-row-card {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .game-row-media {
        aspect-ratio: 16 / 9;
    }

    .game-row-action {
        grid-column: auto;
    }
}
