        :root {
            --bg-color: #0a0c14;
            --primary-green: #00ff88;
            --primary-green-dark: #00cc66;
            --card-bg: rgba(20, 30, 45, 0.8);
            --text-color: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --border-color: rgba(0, 255, 136, 0.2);
            --grid-color: rgba(0, 255, 136, 0.05);
            --glow-color: #00ff88;
            --footer-bg: rgba(10, 12, 20, 0.95);
        }

        @font-face {
            font-family: 'Widlock Trial';
            src: url('fonts/Widocktrialbold.woff2') format('woff2'),
                 url('fonts/Widocktrialbold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'FindSans Pro';
            src: url('fonts/FindSansPro-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'FindSans Pro', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* Фоновые элементы */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .background-grid {
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px;
            position: absolute;
            filter: blur(1px);
        }

        .background-image.roulette-bg {
            position: absolute;
            width: 700px;
            height: 700px;
            right: -150px;
            bottom: -300px;
            background-image: url('images/roulete.png');
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 0.2;
            filter: blur(10px);
        }

        .background-image.autom-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            left: -100px;
            bottom: -150px;
            background-image: url('images/autom.png');
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 0.15;
            filter: blur(5px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Шапка */
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            background-color: rgba(10, 12, 20, 0.8);
            backdrop-filter: blur(10px);
            z-index: 100;
            border-bottom: 1px solid rgba(0, 255, 136, 0.3);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            font-size: 16px;
            flex-wrap: wrap;
        }

        .nav-links a {
            transition: color 0.3s, text-shadow 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
            text-shadow: 0 0 8px var(--glow-color);
        }

        .login-btn {
            background-color: var(--primary-green);
            color: var(--bg-color);
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--primary-green);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }

        .login-btn:hover {
            background-color: transparent;
            color: var(--primary-green);
            box-shadow: 0 0 15px var(--glow-color);
        }

        .btn-icon {
            height: 20px;
            width: auto;
        }

        /* Герой-блок */
        .hero {
            padding: 80px 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 80px);
        }

        .hero-logo {
            width: 220px;
            height: auto;
            margin-bottom: 40px;
        }

        .hero h1 {
            margin-bottom: 20px;
        }

        .hero h1 .subtitle {
            font-family: 'Widlock Trial', sans-serif;
            font-size: 28px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-color);
            display: block;
            margin-bottom: 10px;
        }

        .hero h1 .main-title {
            font-family: 'Widlock Trial', sans-serif;
            font-size: 48px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-green);
        }

        .text-glow {
            text-shadow: 0 0 10px var(--glow-color), 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: var(--bg-color);
            border-color: var(--primary-green);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary-green);
            box-shadow: 0 0 15px var(--glow-color);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-color);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            box-shadow: 0 0 15px var(--glow-color);
        }

        /* Секции */
        .section {
            padding: 80px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-family: 'Widlock Trial', sans-serif;
            font-size: 36px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 40px;
            letter-spacing: 1.5px;
        }

        .section-title .highlight {
            color: var(--primary-green);
        }

        /* Сетки */
        .features-grid, .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Карточки преимуществ */
        .feature-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .feature-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 8px var(--glow-color));
        }

        .feature-card h3 {
            color: var(--primary-green);
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Карточки игр */
        .game-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }

        .game-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
        }

        .game-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
        }

        .game-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .game-card:hover .game-image {
            transform: scale(1.05);
        }

        .game-card-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .play-btn {
            background-color: var(--primary-green);
            color: var(--bg-color);
            padding: 12px;
            border-radius: 16px;
            text-align: center;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--primary-green);
        }

        .play-btn:hover {
            background-color: transparent;
            color: var(--primary-green);
            box-shadow: 0 0 15px var(--glow-color);
        }

        /* SEO блоки */
        .seo-content {
            text-align: left;
            background: var(--card-bg);
            padding: 30px;
            border-radius: 24px;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(5px);
            margin-bottom: 30px;
        }

        .seo-content h2, .seo-content h3, .seo-content h4 {
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .seo-content p, .seo-content ul, .seo-content ol {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .seo-content ul, .seo-content ol {
            padding-left: 20px;
        }

        .seo-content li {
            margin-bottom: 10px;
        }

        .faq-container {
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .faq-question {
            font-weight: bold;
            color: var(--primary-green);
            font-size: 18px;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .faq-answer {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Таблицы */
        .table-wrap {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        th, td {
            border: 1px solid var(--border-color);
            padding: 12px;
            text-align: left;
        }

        th {
            background-color: rgba(0, 255, 136, 0.1);
            color: var(--primary-green);
        }

        td {
            color: var(--text-secondary);
        }

        /* Подвал */
        footer {
            padding: 60px 0 30px;
            margin-top: 50px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            background-color: var(--footer-bg);
            backdrop-filter: blur(5px);
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }

        .footer-logo img {
            height: 35px;
            width: auto;
        }

        footer .disclaimer {
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-size: 15px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
        }

        .footer-nav a:hover {
            color: var(--primary-green);
        }

        .copyright {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-logo {
                width: 180px;
            }

            .hero h1 .main-title {
                font-size: 36px;
            }

            .hero h1 .subtitle {
                font-size: 22px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 80%;
            }

            .login-btn {
                padding: 10px 20px;
                font-size: 15px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-logo {
                width: 150px;
            }

            .hero h1 .main-title {
                font-size: 32px;
            }

            .hero h1 .subtitle {
                font-size: 20px;
            }

            .section-title {
                font-size: 24px;
            }

            .btn {
                width: 100%;
            }

            .logo img {
                height: 32px;
            }

            .login-btn {
                padding: 10px 15px;
                font-size: 14px;
                gap: 5px;
            }

            .btn-icon {
                height: 16px;
            }
        }
