        :root {
            --primary-color: #FF1744;
            --secondary-color: #00E5FF;
            --accent-color: #FFC400;
            --dark-bg: #0A0E27;
            --card-bg: #141A3E;
            --text-light: #E8EAED;
            --text-muted: #A0A5BD;
            --gradient-primary: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
            --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #00B8D4 100%);
            --gradient-accent: linear-gradient(135deg, #FFC400 0%, #FFD740 100%);
            --shadow-sm: 0 4px 24px rgba(255, 23, 68, 0.15);
            --shadow-md: 0 8px 40px rgba(255, 23, 68, 0.25);
            --shadow-lg: 0 16px 64px rgba(255, 23, 68, 0.35);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 23, 68, 0.1);
            transition: all 0.3s ease;
        }
        .site-header.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-md);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .header-logo a {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .hamburger-menu span {
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
        }
        .nav-list a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        .nav-list a:hover {
            color: var(--primary-color);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .cta-button {
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            display: inline-block;
            text-align: center;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: white;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
            width: 100%;
        }

        main {
            margin-top: 88px;
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(255, 23, 68, 0.1), transparent);
            opacity: 0.3;
        }

        h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
        }

        h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 48px;
            color: var(--text-light);
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        h3 {
            font-size: 32px;
            font-weight: 700;
            margin: 64px 0 32px;
            color: var(--text-light);
            letter-spacing: -0.5px;
        }

        p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        .hero-section {
            padding: 160px 0 120px;
            background: radial-gradient(circle at 50% 0%, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 48px 0;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .game-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }

        .game-card p {
            padding: 24px;
            margin: 0;
            font-size: 16px;
        }

        .advantages-list {
            list-style: none;
            padding: 0;
        }

        .advantages-list li {
            position: relative;
            padding: 32px 32px 32px 80px;
            margin-bottom: 24px;
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .advantages-list li::before {
            content: '✓';
            position: absolute;
            left: 24px;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .advantages-list li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }

        .advantages-list li p {
            margin: 0;
        }

        .feature-block {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 16px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }

        .feature-block:nth-child(odd) {
            border-left-color: var(--primary-color);
        }

        .feature-block:nth-child(even) {
            border-left-color: var(--secondary-color);
        }

        .feature-block:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }

        .feature-block p {
            margin: 0;
        }

        .accordion-item {
            background: var(--card-bg);
            border-radius: 16px;
            margin-bottom: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-md);
        }

        .accordion-header {
            width: 100%;
            padding: 28px 32px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            position: relative;
        }

        .accordion-header::after {
            content: '+';
            font-size: 32px;
            color: var(--primary-color);
            font-weight: 300;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        .accordion-header[aria-expanded="true"]::after {
            transform: rotate(45deg);
        }

        .accordion-header:hover {
            background: rgba(255, 23, 68, 0.05);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: -0.3px;
            padding-right: 24px;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-body p {
            padding: 0 32px 32px;
            margin: 0;
            color: var(--text-muted);
        }

        .cta-section {
            background: var(--gradient-primary);
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .site-footer {
            background: rgba(10, 14, 39, 0.95);
            padding: 60px 0 32px;
            border-top: 1px solid rgba(255, 23, 68, 0.1);
        }

        .footer-nav ul {
            display: flex;
            justify-content: center;
            gap: 48px;
            list-style: none;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

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

        .footer-info {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-info p {
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--text-muted);
        }

        img {
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 88px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                padding: 24px 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
                box-shadow: var(--shadow-md);
            }

            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
            }

            .nav-list li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav-list li:last-child {
                border-bottom: none;
            }

            .nav-list a {
                display: block;
                padding: 16px 0;
                font-size: 16px;
            }

            .site-header .cta-button {
                display: none;
            }

            .main-nav .cta-button {
                display: block;
                margin-top: 16px;
            }

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            p {
                font-size: 16px;
            }

            section {
                padding: 80px 0;
            }

            .hero-section {
                padding: 120px 0 80px;
            }

            .features-grid,
            .cards-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                padding-left: 32px;
            }

            .advantages-list li {
                padding: 24px 24px 24px 64px;
            }

            .advantages-list li::before {
                width: 36px;
                height: 36px;
                font-size: 20px;
                left: 16px;
            }

            table {
                font-size: 14px;
            }

            th, td {
                padding: 12px 16px;
            }

            .accordion-header h3 {
                font-size: 18px;
            }
            table {
                display: block;
                overflow: scroll;
            }
        }
        .accordion-body {
            padding: 0 !important;
        }
        .header-logo img {
            max-height: 50px;
        }

        @media (min-width: 1440px) {
            h1 {
                font-size: 72px;
            }

            h2 {
                font-size: 56px;
            }
        }
    

        .main-nav {
            padding-left: 0 !important;
            margin-bottom: 0 !important;
        }
        .main-nav {
            flex: none !important;
        }
        @media screen and (max-width: 768px) {
            table {
                display: block !important;
                overflow: scroll !important;
            }
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 88px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                padding: 24px 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
                box-shadow: var(--shadow-md);
            }

            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
            }

            .nav-list li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav-list li:last-child {
                border-bottom: none;
            }

            .nav-list a {
                display: block;
                padding: 16px 0;
                font-size: 16px;
            }

            .site-header .cta-button {
                display: none;
            }

            .main-nav .cta-button {
                display: block;
                margin-top: 16px;
            }

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            p {
                font-size: 16px;
            }

            section {
                padding: 80px 0;
            }

            .hero-section {
                padding: 120px 0 80px;
            }

            .features-grid,
            .cards-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                padding-left: 32px;
            }

            .advantages-list li {
                padding: 24px 24px 24px 64px;
            }

            .advantages-list li::before {
                width: 36px;
                height: 36px;
                font-size: 20px;
                left: 16px;
            }

            table {
                font-size: 14px;
            }

            th, td {
                padding: 12px 16px;
            }

            .accordion-header h3 {
                font-size: 18px;
            }
        }
        @media (min-width: 769px) {
            .main-nav .cta-button {
                display: none;
            }
        }
        .table>:not(caption)>*>* {
            background-color: unset !important;
        }