        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #00e676;
            --secondary-color: #ff6f00;
            --accent-color: #ffd600;
            --dark-bg: #0a0e1a;
            --card-bg: #151923;
            --text-light: #ffffff;
            --text-gray: #94a3b8;
            --border-color: #1e293b;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .nav-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #00c853 100%);
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
        }
        
        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 230, 118, 0.4);
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }
        
        .hero {
            margin-top: 70px;
            padding: 100px 0 80px;
            background: radial-gradient(ellipse at bottom, #1e293b 0%, var(--dark-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%2300e676" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 111, 0, 0.2);
            color: var(--secondary-color);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 111, 0, 0.3);
        }
        
        .hero-badge i {
            margin-right: 8px;
        }
        
        .hero h1 {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 3s ease infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            color: var(--text-gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #00c853 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 230, 118, 0.4);
        }
        
        .secondary-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary-color);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            border: 2px solid var(--primary-color);
            transition: all 0.3s;
        }
        
        .secondary-button:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
        }
        
        /* Provider Logos */
        .providers {
            padding: 40px 0;
            background: rgba(21, 25, 35, 0.5);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .providers-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            opacity: 0.6;
        }
        
        .provider-logo {
            font-size: 18px;
            color: var(--text-gray);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .categories {
            padding: 80px 0;
            background: var(--dark-bg);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--text-gray);
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            background: var(--card-bg);
            color: var(--text-gray);
            border: 2px solid transparent;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
            font-weight: 600;
        }
        
        .category-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .category-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .slot-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .slot-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(255, 214, 0, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .slot-card:hover::before {
            opacity: 1;
        }
        
        .slot-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
        }
        
        .slot-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }
        
        .slot-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .slot-info {
            padding: 25px;
        }
        
        .slot-title {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .slot-provider {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .slot-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .slot-stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .stat-label {
            font-size: 12px;
            color: var(--text-gray);
        }
        
        .play-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #00c853 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-weight: bold;
            font-size: 16px;
        }
        
        .play-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
        }
        
        .features {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(21, 25, 35, 0.8) 100%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            opacity: 0.1;
            border-radius: 50%;
            transform: translate(30px, -30px);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #00c853 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 25px;
        }
        
        .feature-title {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .feature-desc {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        .bonuses {
            padding: 80px 0;
            background: var(--dark-bg);
            position: relative;
        }
        
        .bonus-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .bonus-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .bonus-card:nth-child(1) {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .bonus-card:nth-child(2) {
            background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
            border-color: rgba(240, 147, 251, 0.3);
        }
        
        .bonus-card:nth-child(3) {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
            border-color: rgba(79, 172, 254, 0.3);
        }
        
        .bonus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .bonus-icon {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bonus-amount {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bonus-type {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .bonus-terms {
            color: var(--text-gray);
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        footer {
            background: #080b14;
            padding: 80px 0 30px;
            margin-top: 100px;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 15px;
        }
        
        .footer-section a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }
        
        .payment-methods {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .payment-methods i {
            font-size: 36px;
            color: var(--text-gray);
            transition: all 0.3s;
        }
        
        .payment-methods i:hover {
            color: var(--primary-color);
            transform: scale(1.2);
        }
        
        .seo-text {
            background: rgba(0, 230, 118, 0.05);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 50px;
            border: 1px solid rgba(0, 230, 118, 0.2);
        }
        
        .seo-text h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 32px;
        }
        
        .seo-text p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
        }
        
        .nav-mobile {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(10, 14, 26, 0.98);
            backdrop-filter: blur(10px);
            padding: 20px;
            transform: translateY(-100%);
            transition: transform 0.3s;
            border-bottom: 1px solid var(--border-color);
        }
        
        .nav-mobile.active {
            transform: translateY(0);
        }
        
        .mobile-nav-item {
            display: block;
            padding: 15px 0;
            color: var(--text-gray);
            text-decoration: none;
            border-bottom: 1px solid var(--border-color);
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .mobile-nav-item:hover {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-mobile {
                display: block;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .slots-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .features-grid,
            .bonus-cards {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button,
            .secondary-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animated {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .animated.delay-1 {
            animation-delay: 0.2s;
        }
        
        .animated.delay-2 {
            animation-delay: 0.4s;
        }
        
        .animated.delay-3 {
            animation-delay: 0.6s;
        }
        
        .glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(50px, -50px); }
            50% { transform: translate(-50px, 50px); }
            75% { transform: translate(-50px, -50px); }
        }
        
        .hero .glow {
            top: -200px;
            right: -200px;
        }
        
        .features .glow {
            bottom: -200px;
            left: -200px;
        }
