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

        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --accent-light: #ff6b9d;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
            --bg-dark: #0f1419;
            --border-color: #2d2d3d;
            --gold: #f1c40f;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

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

        /* ===== HEADER ===== */
        .site-header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 30px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-size: 14px;
        }

        .nav-menu a:hover {
            color: var(--accent-light);
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-light);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .login-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(233, 69, 96, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .login-icon:hover {
            background: rgba(233, 69, 96, 0.2);
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }

        .btn-outline:hover {
            border-color: var(--accent-light);
            color: var(--accent-light);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .header-actions {
                gap: 10px;
            }
            .btn {
                padding: 10px 16px;
                font-size: 12px;
            }
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
            border-bottom: 1px solid var(--border-color);
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-block;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.4)); }
            50% { filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8)); }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 36px;
            }
            .hero p {
                font-size: 16px;
            }
        }

        /* ===== BANNER SECTION ===== */
        .banner-section {
            padding: 60px 0;
        }

        .banner-img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
            display: block;
        }

        .banner-img:hover {
            transform: scale(1.02);
            filter: brightness(1.1);
        }

        .banner-link {
            display: block;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3);
        }

        /* ===== REGISTRATION FORM ===== */
        .registration {
            padding: 80px 0;
            background: rgba(26, 26, 46, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin: 40px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .registration:hover {
            background: rgba(26, 26, 46, 0.8);
            border-color: var(--accent-color);
            box-shadow: 0 10px 40px rgba(233, 69, 96, 0.2);
        }

        .registration-inner {
            text-align: center;
        }

        .registration h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .registration-hint {
            color: var(--text-secondary);
            font-size: 14px;
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            pointer-events: none;
        }

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.1);
        }

        .form-inline {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            max-width: 400px;
            margin: 0 auto;
        }

        .registration .btn {
            width: 100%;
            max-width: 300px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .registration {
                padding: 50px 0;
            }
            .form-inline {
                grid-template-columns: 1fr;
            }
        }

        /* ===== SEO TEXT SECTION ===== */
        .seo-section {
            padding: 60px 0;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .seo-section h2 {
            color: var(--text-primary);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .seo-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .seo-section strong {
            color: var(--accent-light);
        }

        /* ===== GAMES SECTION ===== */
        .games-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* ===== TABS ===== */
        .tabs-container {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tab-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
            color: white;
            border-color: var(--accent-light);
        }

        /* ===== GAMES GRID ===== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .game-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
        }

        .game-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
            background: rgba(0, 0, 0, 0.3);
        }

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

        .game-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .game-provider {
            font-size: 12px;
            color: var(--accent-color);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .game-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .game-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .game-features {
            display: flex;
            gap: 8px;
            margin-top: auto;
            flex-wrap: wrap;
        }

        .feature-badge {
            background: rgba(241, 196, 15, 0.1);
            color: var(--gold);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .games-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            .section-title {
                font-size: 28px;
            }
        }

        /* ===== PROVIDERS SECTION ===== */
        .providers-section {
            padding: 80px 0;
            background: rgba(22, 33, 62, 0.5);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin: 40px 0;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .provider-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .provider-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
        }

        .provider-logo {
            width: 120px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto 15px;
            filter: brightness(0.9);
            transition: filter 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 10px;
        }

        .provider-card:hover .provider-logo {
            filter: brightness(1.2);
        }

        .provider-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .provider-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== AUTHOR SECTION ===== */
        .author-section {
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin: 40px 0;
        }

        .author-inner {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 40px;
            align-items: center;
        }

        .author-photo {
            width: 200px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            background: rgba(26, 26, 46, 0.6);
        }

        .author-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-content h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--accent-light);
        }

        .author-content p {
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.8;
        }

        .author-meta {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .author-inner {
                grid-template-columns: 1fr;
            }
            .author-photo {
                width: 100%;
                height: auto;
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--secondary-color);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 20px;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.8;
        }

        .footer-legal {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            margin-top: 30px;
        }

        .footer-legal strong {
            color: var(--accent-light);
        }

        .footer-legal a {
            color: var(--accent-light);
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--text-primary);
        }

        /* ===== UTILITIES ===== */
        .hidden {
            display: none !important;
        }

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

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
  