/* CSS Variables */
:root {
    --spacing-vsm: 6px;
    --spacing-sm: 12px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 72px;
    
    /* Elegant Colors */
    --primary-gold: #d4af37;
    --accent-gold: #ffd700;
    --deep-red: #8b0000;
    --rich-green: #006400;
    --elegant-blue: #1e3a8a;
    --soft-purple: #6b46c1;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-accent: #d4af37;
    --text-muted: #9ca3af;
    
    /* Background Colors */
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-card: rgba(31, 41, 55, 0.95);
    --bg-overlay: rgba(0, 0, 0, 0.6);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    --gradient-card: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Elegant Effects */
.neon-text {
    color: var(--text-accent);
    text-shadow: 
        0 2px 4px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.neon-text:hover {
    text-shadow: 
        0 2px 8px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes suitGlow {
    0%, 100% {
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(255, 215, 0, 0.4);
    }
}

.glow-text {
    color: var(--text-secondary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.neon-number {
    color: var(--accent-gold);
    text-shadow: 
        0 2px 4px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
    font-weight: 900;
}

.neon-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.neon-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.neon-button {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.neon-border {
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 15px rgba(191, 0, 255, 0.5),
        inset 0 0 15px rgba(191, 0, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('table.jpg') center/cover no-repeat,
        var(--gradient-primary);
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.01);
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 215, 0, 0.2);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.poker-suit {
    display: inline-block;
    font-size: 4rem;
    margin: 0 var(--spacing-md);
    color: var(--accent-gold);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
    animation: suitGlow 3s ease-in-out infinite alternate;
}

.hero-cta {
    font-size: 1.8rem;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1a1a;
    border: 3px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: scale(1);
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(255, 215, 0, 0.6),
        0 0 100px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.hero-cta:hover::before {
    left: 100%;
}


/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.playing-card {
    position: absolute;
    background: #ffffff;
    color: #000000;
    padding: var(--spacing-sm);
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.card1 { top: 20%; left: 10%; animation-delay: 0s; color: #000; }
.card2 { top: 30%; right: 15%; animation-delay: 1.5s; color: #dc143c; }
.card3 { bottom: 30%; left: 15%; animation-delay: 3s; color: #dc143c; }
.card4 { bottom: 20%; right: 20%; animation-delay: 4.5s; color: #000; }

.hero-download {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.hero-download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-download-btn {
    display: block;
    transition: all 0.3s ease;
}

.hero-download-btn img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Instructions Section */
.instructions {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-secondary);
}

.instructions-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B092E;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    color: #ffffff;
    font-weight: 900;
    position: relative;
    z-index: 5;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.steps.roadmap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    flex-wrap: nowrap;
}

.steps.roadmap .step {
    width: 300px;
    flex-shrink: 0;
}

.step-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.step-wrapper:last-child .roadmap-arrow {
    display: none;
}

.roadmap-arrow {
    width: 60px;
    height: 60px;
    color: var(--accent-gold);
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.roadmap-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.step {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 300px;
}

.step:hover {
    transform: translateY(-8px);
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.step-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    padding: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.highlight-id {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Club ID Section */
.club-id-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.club-id-card-full {
    width: 100%;
    margin: 0 auto;
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.club-id-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 1s;
}

.club-id-card-full:hover::before {
    left: 100%;
}

.club-id-card-full:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.3);
}

.club-id-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.club-id-icon {
    font-size: 4rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.club-id-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.club-id-number-large {
    font-size: 4rem;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border: 3px solid var(--primary-gold);
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
    letter-spacing: 4px;
    display: inline-block;
}

.club-id-instruction {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
}

.club-id-decoration .poker-suits {
    font-size: 3rem;
    color: var(--accent-gold);
    animation: suitGlow 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-primary);
}

.benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B092E;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 300px;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.benefit-image {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0; /* Rounded top corners only */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensure image fits without cropping */
    transition: transform 0.3s ease;
    display: block;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-content {
    padding: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-accent);
}

.benefit-value {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Tournament Section */
.tournament {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-secondary);
}

.tournament-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('tournament.jpg') center/cover no-repeat,
        var(--bg-secondary);
    background-blend-mode: overlay;
}

.tournament-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.tournament-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}


.tournament-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.tournament-prize {
    margin: var(--spacing-lg) 0;
    font-size: 3.5rem;
    font-weight: 900;
    position: relative;
}

.tournament-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.mega-neon {
    background: var(--casino-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 30px var(--casino-gold),
        0 0 60px var(--neon-orange),
        0 0 90px var(--casino-red);
    animation: megaPulse 1.5s ease-in-out infinite alternate;
}

.jackpot-symbols {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.symbol {
    font-size: 3rem;
    animation: symbolBounce 2s ease-in-out infinite;
}

.symbol:nth-child(1) { animation-delay: 0s; }
.symbol:nth-child(2) { animation-delay: 0.2s; }
.symbol:nth-child(3) { animation-delay: 0.4s; }
.symbol:nth-child(4) { animation-delay: 0.6s; }
.symbol:nth-child(5) { animation-delay: 0.8s; }

.mega-neon-button {
    font-size: 1.5rem;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--casino-gradient);
    border: 3px solid var(--casino-gold);
    box-shadow: 
        0 0 30px var(--casino-gold),
        0 15px 50px rgba(255, 215, 0, 0.4);
    animation: megaButtonPulse 2s ease-in-out infinite;
}

.mega-neon-button:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 0 50px var(--casino-gold),
        0 20px 60px rgba(255, 215, 0, 0.6);
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-primary);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B092E;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-card {
    padding: var(--spacing-lg);
    /* padding-bottom: var(--spacing-md); */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    max-width: 300px;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-icon-fa {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.contact-icon-fa i {
    font-size: 4rem;
    color: var(--bg-primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-fa {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.contact-card:hover .contact-icon-fa i {
    transform: scale(1.1);
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    margin: var(--spacing-md) auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.qr-content {
    text-align: center;
}

.qr-icon {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-accent);
    display: block;
    margin-bottom: var(--spacing-vsm);
}

.contact-button {
    display: inline-block;
    margin-top: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    align-self: center;
}

.highlight-text {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    margin-top: var(--spacing-md);
}

.partnership-badge {
    margin: var(--spacing-md) 0;
    display: flex;
    justify-content: center;
}

.vip-text {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.mega-button {
    font-size: 1.3rem;
    padding: var(--spacing-md) var(--spacing-xl);
}

/* Poker Elements */
.poker-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-chip {
    position: absolute;
    font-size: 10rem;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
    opacity: 0.7;
}

.chip1 { 
    top: 15%; 
    left: 8%; 
    color: var(--accent-gold);
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 215, 0, 0.8),
        0 0 100px rgba(255, 215, 0, 0.4);
    animation: floatAround1 12s ease-in-out infinite;
}
.chip2 { 
    top: 70%; 
    right: 10%; 
    color: #00f5ff;
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 245, 255, 0.8),
        0 0 100px rgba(0, 245, 255, 0.4);
    animation: floatAround2 14s ease-in-out infinite;
}
.chip3 { 
    bottom: 20%; 
    left: 15%; 
    color: #bf00ff;
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(191, 0, 255, 0.8),
        0 0 100px rgba(191, 0, 255, 0.4);
    animation: floatAround3 16s ease-in-out infinite;
}
.chip4 { 
    top: 45%; 
    right: 20%; 
    color: var(--accent-gold);
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 215, 0, 0.8),
        0 0 100px rgba(255, 215, 0, 0.4);
    animation: floatAround4 10s ease-in-out infinite;
}

/* Animations */
@keyframes floatAround1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, -60px) scale(0.9); }
    75% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes floatAround2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-35px, -50px) scale(0.95); }
    50% { transform: translate(25px, -80px) scale(1.15); }
    75% { transform: translate(-15px, -25px) scale(0.85); }
}

@keyframes floatAround3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(45px, 30px) scale(1.2); }
    50% { transform: translate(-30px, 60px) scale(0.8); }
    75% { transform: translate(20px, 15px) scale(1.1); }
}

@keyframes floatAround4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 35px) scale(0.9); }
    50% { transform: translate(35px, 70px) scale(1.25); }
    75% { transform: translate(-25px, 20px) scale(0.95); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-25px) scale(1.1); }
    66% { transform: translateY(-12px) scale(0.9); }
}

.floating {
    animation: floatElement 4s ease-in-out infinite;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
}

.download-btn img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps.roadmap {
        flex-direction: column;
        gap: var(--spacing-vsm);
        align-items: center;
    }
    
    .step-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .roadmap-arrow {
        transform: rotate(90deg) !important;
        margin: var(--spacing-vsm) 0;
    }
    .roadmap-arrow svg {
        transform: rotate(0deg) !important;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero-download {
        margin-top: var(--spacing-md);
    }

    .hero-download-buttons {
        /* flex-direction: column; */
        align-items: center;
        gap: var(--spacing-vsm);
    }
    .hero-download-btn img {
        height: 37px;
    }
    
    .tournament-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .poker-suit {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        font-size: 1.4rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .tournament-prize {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps, .benefits-grid, .contact-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .floating-chip {
        font-size: 6rem;
        opacity: 0.5;
    }
    
    .club-id-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .club-id-card-full {
        max-width: 300px;
    }
    
    .club-id-number-large {
        font-size: 3rem;
    }
    
}
