/* ============================================
   HERO SECTION
   Immersive poker table experience
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-16);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg .felt-texture {
    opacity: 0.3;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gold-primary);
    top: -200px;
    right: -200px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--felt-accent);
    bottom: -100px;
    left: -100px;
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Table Visualization */
.hero-table {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-bottom: var(--space-12);
    z-index: 1;
    opacity: 0.6;
    transform: scale(0.9);
}

@media (min-width: 992px) {
    .hero-table {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        max-width: 900px;
        opacity: 0.3;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: var(--gold-primary);
}

.badge-star {
    color: var(--gold-primary);
}

.hero-title {
    font-size: var(--text-4xl);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: var(--text-7xl);
    }
}

.title-line {
    display: block;
}

.title-line:last-child {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

/* CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-12);
}

@media (min-width: 576px) {
    .hero-ctas {
        flex-direction: row;
    }
}

/* Social Proof */
.hero-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.hero-social .stars {
    color: var(--gold-primary);
    letter-spacing: 4px;
    font-size: var(--text-lg);
}

.hero-social p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.trust-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges .badge {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, transparent 100%);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}
