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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff6b35;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .hero-content .subtitle {
            font-size: 1.3rem;
            color: #ff6b35;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .hero-content .description {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Live Stream Section */
        .live-stream {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .stream-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .stream-placeholder {
            background: #000;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 2px solid #ff6b35;
            position: relative;
            overflow: hidden;
        }

        .live-stats {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* Game Overview */
        .game-overview {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
        }

        .feature-card i {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: #ccc;
            line-height: 1.6;
        }

        /* Statistics Section */
        .statistics {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .chart-placeholder {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            text-align: center;
        }

        /* How to Play */
        .how-to-play {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(16, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.8) 100%);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.3);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .step h4 {
            color: #fff;
            margin: 1rem 0;
            font-size: 1.3rem;
        }

        .step p {
            color: #ccc;
        }

        /* Bonus Games */
        .bonus-games {
            padding: 80px 0;
            background: radial-gradient(circle at center, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .bonus-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
            z-index: -2;
            border-radius: 15px;
        }

        .bonus-card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: rgba(0, 0, 0, 0.9);
            z-index: -1;
            border-radius: 13px;
        }

        .bonus-card:hover {
            transform: scale(1.05);
        }

        .bonus-card h4 {
            color: #ff6b35;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* Registration Section */
        .registration {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
        }

        .reg-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .reg-form {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #fff;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }

        .form-group input::placeholder {
            color: #ccc;
        }

        /* Mobile App Section */
        .mobile-app {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .app-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .app-features {
            list-style: none;
        }

        .app-features li {
            color: #ccc;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .app-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .download-btn {
            background: #000;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.3s;
        }

        .download-btn:hover {
            background: #333;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(16, 33, 62, 0.6) 0%, rgba(15, 52, 96, 0.6) 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            text-align: left;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #ccc;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #000;
            padding: 60px 0 30px;
            color: #ccc;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: #ff6b35;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #ff6b35;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .trust-badge i {
            font-size: 2rem;
            color: #ff6b35;
            margin-bottom: 0.5rem;
        }

        .trust-badge span {
            color: #fff;
            font-size: 0.9rem;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .stream-container,
            .stats-grid,
            .reg-container,
            .app-container {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .trust-indicators {
                gap: 1rem;
            }

            .download-buttons {
                flex-direction: column;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        /* Content Placeholders */
        .content-placeholder {
            background: rgba(255, 255, 255, 0.1);
            border: 2px dashed rgba(255, 107, 53, 0.5);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            color: #ff6b35;
            font-weight: bold;
            margin: 1rem 0;
            backdrop-filter: blur(10px);
        }
/* Live Stream Banner */
.live-stream-banner {
    background: 
        linear-gradient(rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.85)),
        url('./images/FB-GIF-20.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.banner-title {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-subtitle {
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-description {
    color: #ccc;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner-btn {
    background: rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ff6b35;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btn:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.banner-cta {
    display: flex;
    justify-content: center;
}

.banner-main-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .live-stream-banner {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .banner-icon {
        font-size: 3rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-buttons {
        gap: 0.5rem;
    }
    
    .banner-main-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}




.ad-banner {
    width: 100%;
    margin: 3rem auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    position: relative;
}

.ad-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    max-width: 100%;
}

.ad-container:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ad-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.ad-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ad-link:hover .ad-image {
    transform: scale(1.02);
}

.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #ccc;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 10;
}

.ad-banner-with-text .ad-container {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ad-text h4 {
    color: #ff6b35;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.ad-text p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.ad-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.ad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.ad-banner-vertical .ad-container {
    max-width: 300px;
    width: 100%;
}

.ad-banner-animated .ad-container {
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.ad-banner-animated .ad-container:hover {
    border-color: rgba(255, 107, 53, 0.6);
}

.ad-banner-leaderboard .ad-container {
    max-width: 728px;
    width: 100%;
}

.ad-banner-rectangle .ad-container {
    max-width: 336px;
    width: 100%;
}

.ad-banner-square .ad-container {
    max-width: 250px;
    width: 100%;
}

.ad-banner-mobile .ad-container {
    max-width: 320px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .ad-banner {
        margin: 2rem auto;
        padding: 0.5rem;
    }
    
    .ad-banner-with-text .ad-container {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .ad-text h4 {
        font-size: 1rem;
    }
    
    .ad-text p {
        font-size: 0.8rem;
    }
    
    .ad-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .ad-label {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

.ad-banner-compact {
    margin: 1.5rem auto;
}

.ad-banner-large {
    margin: 4rem auto;
}

.ad-banner-no-border .ad-container {
    border: none;
    background: transparent;
}

.ad-banner-glow .ad-container {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.ad-banner-pulse .ad-container {
    animation: adPulse 2s ease-in-out infinite alternate;
}

@keyframes adPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
}




/* Registration Section */
.registration {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.registration-info-card,
.benefits-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-steps {
    flex: 1;
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.info-step:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.step-icon {
    font-size: 1.4rem;
    min-width: 35px;
    text-align: center;
    margin-top: 0.2rem;
}

.step-content {
    flex: 1;
}

.step-label {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.step-example {
    color: #ff6b35;
    font-size: 0.85rem;
    font-family: monospace;
    background: rgba(255, 107, 53, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.step-description {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.registration-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
}

.registration-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.login-link {
    color: #ccc;
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
}

.login-link a {
    color: #ff6b35;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.benefits-list {
    flex: 1;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #f7931e;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(247, 147, 30, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    color: #ff6b35;
    font-size: 1.4rem;
    min-width: 35px;
    text-align: center;
    margin-top: 0.2rem;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: #fff;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.benefit-description {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.quick-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: #ccc;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.quick-icon {
    font-size: 0.9rem;
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-info-card,
    .benefits-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .info-step,
    .benefit-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .step-icon,
    .benefit-icon {
        font-size: 1.2rem;
        min-width: 30px;
    }
    
    .registration-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .quick-benefits {
        flex-direction: column;
    }
}

.info-step,
.benefit-item {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.info-step:nth-child(1) { animation-delay: 0.1s; }
.info-step:nth-child(2) { animation-delay: 0.2s; }
.info-step:nth-child(3) { animation-delay: 0.3s; }
.info-step:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.3s; }
.benefit-item:nth-child(3) { animation-delay: 0.4s; }
.benefit-item:nth-child(4) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: contain;
}





/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.pulse {
    animation: scrollPulse 2s ease-in-out infinite alternate;
}

@keyframes scrollPulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.scroll-to-top.game-style {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid #ff6b35;
    font-size: 1.4rem;
}

.scroll-to-top.game-style:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #f7931e;
}

.scroll-to-top.game-style::before {
    content: '🎰';
    font-size: 1.2rem;
}

.scroll-to-top.game-style i {
    display: none;
}