/* ===================================
   HH Poker — Indigo Royal Theme
   Premium VIP Luxurious Design System
   =================================== */

*, *::before, *::after { box-sizing: border-box; }

/* ====== GOLD PARTICLES (Hero Background) ====== */
.gold-particles {
    position: relative;
    overflow: hidden;
}
.gold-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(234,179,8,0.6), transparent),
        radial-gradient(1px 1px at 20% 60%, rgba(234,179,8,0.5), transparent),
        radial-gradient(1.5px 1.5px at 35% 15%, rgba(250,204,21,0.7), transparent),
        radial-gradient(1px 1px at 50% 75%, rgba(234,179,8,0.5), transparent),
        radial-gradient(1.5px 1.5px at 65% 30%, rgba(250,204,21,0.6), transparent),
        radial-gradient(1px 1px at 75% 55%, rgba(234,179,8,0.4), transparent),
        radial-gradient(1px 1px at 85% 80%, rgba(250,204,21,0.5), transparent),
        radial-gradient(1.5px 1.5px at 90% 10%, rgba(234,179,8,0.6), transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(250,204,21,0.4), transparent),
        radial-gradient(1px 1px at 45% 40%, rgba(234,179,8,0.5), transparent),
        radial-gradient(1.5px 1.5px at 70% 70%, rgba(250,204,21,0.4), transparent),
        radial-gradient(1px 1px at 30% 45%, rgba(234,179,8,0.5), transparent),
        radial-gradient(1px 1px at 55% 90%, rgba(250,204,21,0.3), transparent),
        radial-gradient(1.5px 1.5px at 80% 25%, rgba(234,179,8,0.6), transparent);
    pointer-events: none;
    z-index: 0;
}

/* ====== GOLD GRADIENT TEXT ====== */
.gold-gradient {
    background: linear-gradient(135deg, #eab308 0%, #fbbf24 30%, #f59e0b 60%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== GOLD GLOW SHADOW ====== */
.gold-glow {
    box-shadow: 0 0 20px rgba(234,179,8,0.15), 0 0 40px rgba(234,179,8,0.05);
}

/* ====== FEATURE CARDS ====== */
.feature-card {
    border-top: 3px solid #eab308;
    transition: all 0.35s ease;
}
.feature-card:hover {
    box-shadow: 0 8px 30px rgba(234,179,8,0.2), 0 0 0 1px rgba(234,179,8,0.1);
    transform: translateY(-4px);
}

/* ====== FAQ ACCORDION ====== */
.faq-toggle-icon {
    transition: transform 0.35s ease;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-body {
    max-height: 300px;
}

/* ====== NAVBAR GOLD UNDERLINE ====== */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eab308, #fbbf24);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ====== CROWN DIVIDER ====== */
.crown-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.crown-divider::before,
.crown-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234,179,8,0.5), transparent);
}
.crown-divider i {
    color: #eab308;
    font-size: 18px;
}

/* ====== VIP ACCENT BADGE ====== */
.vip-badge {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #1e1b4b;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ====== PULSE ANIMATION (CTA Button) ====== */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234,179,8,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(234,179,8,0); }
}
.pulse-gold {
    animation: pulse-gold 2s infinite;
}

/* ====== TESTIMONIAL GOLD QUOTE ====== */
.testimonial-card {
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #eab308;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
    .gold-gradient {
        -webkit-text-fill-color: #eab308;
    }
}
