/* ══════════════════════════════════════
   Homepage — index.css
   Casino Online Indonesia
   Theme: Gold × Navy × Crimson
   ══════════════════════════════════════ */

.section-spacing { padding: 96px 0; }
.bg-alt { background: var(--navy-mid); }

/* ── Shared Section Heading ── */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    color: var(--text-bright);
}

.section-heading h2 em {
    font-style: normal;
    color: var(--gold);
}

.section-heading p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ════════════════════════════════════
   HERO SECTION — two-column immersive
   ════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #0A0A1A 0%, #06060F 60%, #0D0510 100%);
}

/* Base diagonal texture */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 55px,
        rgba(201,168,76,0.018) 55px,
        rgba(201,168,76,0.018) 56px
    );
    pointer-events: none;
    z-index: 0;
}

/* Gold bottom rule */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--crimson) 60%, transparent);
    opacity: 0.4;
    z-index: 1;
}

/* ── Animated background orbs ── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: -120px; left: -100px;
    animation: orbDrift1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(183,28,58,0.10) 0%, transparent 70%);
    bottom: -60px; right: 10%;
    animation: orbDrift2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    top: 40%; right: 30%;
    animation: orbDrift1 18s ease-in-out infinite reverse;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-25px, -30px) scale(1.08); }
}

/* ── Floating particles ── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.25;
    animation: particleFloat linear infinite;
}

.p1 { width:4px; height:4px; left:8%;  top:20%; animation-duration:14s; animation-delay:0s; }
.p2 { width:3px; height:3px; left:20%; top:70%; animation-duration:18s; animation-delay:-4s; }
.p3 { width:5px; height:5px; left:55%; top:15%; animation-duration:12s; animation-delay:-2s; opacity:0.15; }
.p4 { width:3px; height:3px; left:72%; top:60%; animation-duration:20s; animation-delay:-6s; }
.p5 { width:4px; height:4px; left:85%; top:30%; animation-duration:16s; animation-delay:-1s; }
.p6 { width:2px; height:2px; left:38%; top:80%; animation-duration:22s; animation-delay:-8s; }

@keyframes particleFloat {
    0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.25; }
    90%  { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ── Two-column inner layout ── */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left: text content ── */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeIn 0.5s ease-out both;
}

.hero-eyebrow svg { color: var(--gold); }

.hero-content h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--text-bright);
    animation: slideUp 0.6s ease-out both;
}

.hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Underline shimmer under the highlight */
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    border-radius: 2px;
    opacity: 0.5;
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-content p {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 36px;
    color: var(--text-mid);
    animation: slideUp 0.8s ease-out both;
    line-height: 1.82;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out both;
    margin-bottom: 40px;
}

/* Pulse glow on main CTA */
.hero-btn-main {
    position: relative;
    overflow: visible;
}

.hero-btn-main::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.hero-btn-main:hover::before { opacity: 0.6; }

/* Social proof strip */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeIn 1.2s ease-out both;
}

.hero-proof-avatars {
    display: flex;
}

.proof-av {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
}

.proof-av:first-child { margin-left: 0; }

.hero-proof-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-proof-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
}

.hero-proof-text span {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.3;
}

.hero-proof-text strong { color: var(--text-bright); }

/* ── Right: visual / card panel ── */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

/* Main promo card */
.hero-card-main {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(160deg, rgba(30,20,10,0.95) 0%, rgba(18,18,40,0.98) 100%);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
    animation: slideUp 0.7s 0.2s ease-out both;
}

/* Card inner glow */
.hero-card-glow {
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 180px;
    background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--crimson) 0%, #8B1428 100%);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.hero-card-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.hero-card-body {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 16px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    margin-bottom: 20px;
}

.hero-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.hero-card-value {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.hero-card-sub {
    font-size: 0.88rem;
    color: var(--text-mid);
}

.hero-card-sub strong { color: var(--text-bright); }

.hero-card-cta {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    gap: 10px;
}

.hero-card-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-card-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 600;
}

.hero-card-stat svg { color: var(--gold); }

/* Floating mini-cards */
.hero-float-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(18,18,40,0.92);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 14px;
    padding: 12px 18px;
    backdrop-filter: blur(12px);
    position: absolute;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
    z-index: 2;
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-wins {
    top: 12px;
    right: -24px;
    animation-delay: 0s;
}

.hero-float-players {
    bottom: 80px;
    left: -24px;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hfc-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hfc-icon-green {
    background: rgba(64,145,108,0.15);
    border-color: rgba(64,145,108,0.25);
    color: #40916C;
}

.hfc-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hfc-live {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: #40916C;
    font-weight: 700;
    animation: liveBlink 1.5s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.hfc-label {
    font-size: 0.72rem;
    color: var(--text-mid);
    margin-top: 2px;
}

/* Ad slot in visual panel */
.hero-ad {
    width: 100%;
    max-width: 400px;
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-content p { margin-left: auto; margin-right: auto; max-width: 540px; }
    .hero-actions { justify-content: center; }
    .hero-proof { justify-content: center; }

    .hero-visual { width: 100%; max-width: 440px; margin: 0 auto; }
    .hero-float-wins   { right: -10px; }
    .hero-float-players { left: -10px; }
}

@media (max-width: 768px) {
    .hero-float-card { display: none; }
}

@media (max-width: 540px) {
    .hero-section { padding: 56px 0 44px; min-height: auto; }
    .hero-eyebrow { font-size: 0.68rem; padding: 6px 14px; margin-bottom: 18px; letter-spacing: 1.5px; }
    .hero-content h1 { font-size: clamp(1.85rem, 7.5vw, 2.5rem); letter-spacing: -0.5px; margin-bottom: 16px; }
    .hero-content p { font-size: 0.92rem; line-height: 1.65; margin-bottom: 24px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 10px; margin-bottom: 28px; }
    .hero-actions .btn { width: 100%; padding: 13px 20px; font-size: 0.88rem; justify-content: center; }
    .hero-proof { flex-direction: column; gap: 8px; text-align: center; }
    .hero-card-main { padding: 22px 18px; border-radius: 16px; }
    .hero-card-value { font-size: 2.8rem; }
    .hero-card-footer { gap: 14px; font-size: 0.72rem; }
}

@media (max-width: 380px) {
    .hero-card-value { font-size: 2.4rem; }
    .hero-card-header { margin-bottom: 16px; }
}

/* ════════════════════════════════════
   STATS / TICKER BAR
   (like reference: service icon row)
   ════════════════════════════════════ */
.stats-bar {
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: 0;
}

.stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 40px;
    flex: 1;
    cursor: default;
    position: relative;
    transition: var(--transition);
    border-right: 1px solid rgba(201,168,76,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover,
.stat-item.active {
    background: linear-gradient(180deg, rgba(201,168,76,0.10) 0%, rgba(201,168,76,0.04) 100%);
}

.stat-item.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    border-radius: 3px 3px 0 0;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 6px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon,
.stat-item.active .stat-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-align: center;
}

/* ════════════════════════════════════
   GAME GRID (catalog section)
   ════════════════════════════════════ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 24px;
}

.game-card {
    background: var(--navy-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.12);
}

.game-card:hover::before { opacity: 1; }

.card-image {
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,15,0.65) 0%, transparent 60%);
}

.game-card:hover .card-image img { transform: scale(1.08); }

.card-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--crimson);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    z-index: 2;
}

.card-content {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.card-content p {
    font-size: 0.86rem;
    color: var(--text-mid);
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.card-content .btn { width: 100%; }

/* ════════════════════════════════════
   HOW IT WORKS
   (3-step horizontal layout like reference)
   ════════════════════════════════════ */
.how-it-works {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    max-width: 310px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.4);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.step-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: 0 8px 24px var(--gold-glow);
    border-color: transparent;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.step-connector {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: rgba(201,168,76,0.3);
}

/* ════════════════════════════════════
   WHY CHOOSE US — split layout
   (reference: left headline + right cards)
   ════════════════════════════════════ */
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.why-us-headline {
    position: sticky;
    top: 100px;
}

.why-us-headline .section-eyebrow {
    justify-content: flex-start;
}

.why-us-headline .section-eyebrow::before { display: none; }

.why-us-headline h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    margin-top: 12px;
    text-align: left;
}

.why-us-headline p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: left;
}

.why-us-headline .btn { align-self: flex-start; }

.quote-attribution {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(201,168,76,0.12);
}

.quote-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.quote-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-bright);
    font-family: var(--font-body);
    font-weight: 700;
}

.quote-meta span {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--crimson));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(201,168,76,0.22);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.28);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ════════════════════════════════════
   PROMOTIONS SECTION
   (dark bg + 3 cards, featured wider)
   ════════════════════════════════════ */
.promos-section {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.promos-section::before {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183,28,58,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.promos-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.promo-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.promo-featured {
    border-color: rgba(201,168,76,0.25);
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, var(--navy-card) 55%);
}

.promo-card-bg {
    position: absolute;
    top: -30px; right: -30px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.promo-badge {
    position: absolute;
    top: -11px; left: 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px var(--gold-glow);
}

.promo-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.promo-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.promo-value {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.promo-value span {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-family: var(--font-body);
    font-weight: 400;
}

.promo-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
}

/* ════════════════════════════════════
   NEWS / GALLERY GRID
   ════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--navy-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.22);
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}

.news-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,15,0.6) 0%, transparent 55%);
}

.news-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.news-card:hover .news-image img { transform: scale(1.06); }

.news-info {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date svg { color: var(--crimson); }

.news-info h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.45;
    flex: 1;
}

.news-info h3 a { color: var(--text-bright); }
.news-info h3 a:hover { color: var(--gold); }

.news-info p {
    font-size: 0.86rem;
    color: var(--text-mid);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

.read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.read-more:hover { color: var(--gold-light); gap: 10px; }

/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px; right: 22px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: rgba(201,168,76,0.08);
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(201,168,76,0.22);
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
}

.testimonial-card > p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(201,168,76,0.08);
}

.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(201,168,76,0.25);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-bright);
    font-family: var(--font-body);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.76rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* ════════════════════════════════════
   CTA BANNER
   (dark with diagonal accent + gold border)
   ════════════════════════════════════ */
.cta-section {
    padding: 96px 0;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(183,28,58,0.18) 0%, rgba(201,168,76,0.10) 50%, rgba(13,13,30,0.9) 100%);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Diagonal stripe decoration */
.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(201,168,76,0.03) 40px,
        rgba(201,168,76,0.03) 41px
    );
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }

.cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.cta-text h2 span { color: var(--gold); }

.cta-text p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════ */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1024px) {
    .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-us-headline { position: static; }
    .why-us-headline h2 { text-align: center; }
    .why-us-headline p  { text-align: center; }
    .why-us-headline .section-eyebrow { justify-content: center; }
    .why-us-headline .btn { margin: 0 auto; display: block; width: fit-content; }
    .quote-attribution { justify-content: center; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .promos-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-spacing { padding: 56px 0; }
    .section-heading { margin-bottom: 36px; }
    .section-heading h2 { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }
    .section-heading p { font-size: 0.92rem; }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding: 22px 14px;
        border-right: 1px solid rgba(201,168,76,0.08);
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    .stat-item.active::after { display: none; }
    .stat-icon { width: 44px; height: 44px; margin-bottom: 4px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.72rem; letter-spacing: 0.8px; }

    .steps-grid { flex-direction: column; align-items: center; gap: 20px; }
    .step-card { max-width: 100%; width: 100%; padding: 28px 20px; }
    .step-connector { display: none; }

    .promos-grid { grid-template-columns: 1fr; gap: 20px; }
    .promo-card { padding: 28px 22px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .news-grid { grid-template-columns: 1fr; gap: 20px; }

    .cta-section { padding: 60px 0; }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 20px;
        border-radius: var(--radius-lg);
        gap: 24px;
    }
    .cta-text p { max-width: 100%; font-size: 0.94rem; }
    .cta-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 540px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-content { padding: 14px 12px; }
    .card-content h3 { font-size: 0.92rem; margin-bottom: 6px; }
    .card-content p { display: none; }
    .card-content .btn { padding: 8px 12px; font-size: 0.76rem; }
    .card-badge { top: 8px; right: 8px; font-size: 0.58rem; padding: 2px 7px; }

    .why-us-headline h2 { font-size: 1.65rem; }
    .why-us-headline p { font-size: 0.9rem; }
    .quote-attribution { padding-top: 20px; margin-top: 24px; }
    .feature-card { padding: 20px 18px; }
}

@media (max-width: 380px) {
    .game-grid { grid-template-columns: 1fr; }
    .card-content p { display: -webkit-box; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; }
}

/* ════════════════════════════════════
   HOW IT WORKS — split timeline layout
   ════════════════════════════════════ */

/* Outer split: left headline | right timeline */
.hiw-inner {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 80px;
    align-items: center;
}

/* ── Left column ── */
.hiw-headline .section-eyebrow {
    justify-content: flex-start;
}
.hiw-headline .section-eyebrow::before { display: none; }

.hiw-headline h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 18px;
    text-align: left;
}

.hiw-headline p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
    text-align: left;
    max-width: 360px;
}

/* Trust badge row */
.hiw-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hiw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--text-mid);
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 6px 14px;
    border-radius: 100px;
    transition: var(--transition);
}

.hiw-badge svg { color: var(--gold); }

.hiw-badge:hover {
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
}

/* ── Right column — vertical timeline ── */
.hiw-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Each step row */
.hiw-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 0;
}

/* Vertical connector line between steps */
.hiw-step:not(.hiw-step-last) .hiw-step-node::after {
    content: '';
    position: absolute;
    left: 27px; /* center of the 56px node */
    top: 56px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(
        180deg,
        rgba(201,168,76,0.35) 0%,
        rgba(201,168,76,0.08) 100%
    );
    z-index: 0;
}

/* Space between steps (gap handled by margin on body) */
.hiw-step:not(.hiw-step-last) {
    margin-bottom: 40px;
}

/* ── Node (icon bubble) ── */
.hiw-step-node {
    position: relative;
    flex-shrink: 0;
}

.hiw-node-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
    animation: nodeRingPulse 3s ease-in-out infinite;
}

.hiw-step:nth-child(3) .hiw-node-ring { animation-delay: 1s; }
.hiw-step:nth-child(5) .hiw-node-ring { animation-delay: 2s; }

@keyframes nodeRingPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.15); opacity: 0.15; }
}

.hiw-node-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy-card-alt);
    border: 2px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hiw-step:hover .hiw-node-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 6px 24px var(--gold-glow);
}

/* Last step gets gold from the start to signal completion */
.hiw-node-gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.06) 100%);
    border-color: rgba(201,168,76,0.4) !important;
}

.hiw-step:hover .hiw-node-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
}

/* ── Step body (text) ── */
.hiw-step-body {
    flex: 1;
    padding-top: 6px;
}

.hiw-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
    opacity: 0.75;
}

.hiw-step-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-bright);
    transition: var(--transition);
}

.hiw-step:hover .hiw-step-body h3 { color: var(--gold); }

.hiw-step-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 12px;
}

/* Small tag pill at the bottom of each step */
.hiw-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--text-mid);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 4px 12px;
    border-radius: 100px;
}

.hiw-step-tag svg { color: var(--gold); }

.hiw-tag-gold {
    color: var(--gold);
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.2);
}

.hiw-tag-gold svg { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hiw-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hiw-headline h2,
    .hiw-headline p { text-align: center; }

    .hiw-headline .section-eyebrow { justify-content: center; }

    .hiw-headline .btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .hiw-badges { justify-content: center; }
}

@media (max-width: 480px) {
    .hiw-step { gap: 18px; }
    .hiw-node-icon { width: 48px; height: 48px; }
    .hiw-step:not(.hiw-step-last) .hiw-step-node::after { left: 23px; }
}
