       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: #1a1a1a;
            padding: 15px 0;
            border-bottom: 1px solid #333;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 20px;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 4px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            text-decoration: none;
            color: #fff;
            font-size: 14px;
        }

        .social-links a:hover {
            background: #ffd700;
            color: #000;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 25px;
            border-radius: 4px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
        }

        .btn-login:hover {
            background: #ffd700;
            color: #000;
        }

        .btn-register {
            background: #4CAF50;
            color: white;
        }

        .btn-register:hover {
            background: #45a049;
        }

        /* Banner Section */
        .banner {
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .banner-content {
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .banner-content h2 {
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: bold;
        }

        .banner-content p {
            font-size: 20px;
        }

        /* Games Section */
        .games-section {
            margin: 40px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px 0;
            border-bottom: 1px solid #333;
        }

        .section-header h2 {
            font-size: 20px;
            color: #fff;
            font-weight: normal;
        }

        .section-header h2::before {
            content: '☰ ';
            margin-right: 8px;
        }

        .view-all {
            color: #ffd700;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .view-all:hover {
            color: #fff;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-bottom: 50px;
        }

        .game-card {
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        .game-image {
            width: 100%;
            height: 150px;
            position: relative;
            overflow: hidden;
            background: #2a2a2a;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }

        .game-card:hover .game-image img {
            transform: scale(1.05);
        }

        .game-image::after {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            opacity: 0;
            transition: opacity 0.3s;
            color: #fff;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
            z-index: 2;
        }

        .game-card:hover .game-image::after {
            opacity: 0.9;
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-info {
            padding: 12px;
            background: #1a1a1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .game-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }

        .game-provider {
            font-size: 12px;
            color: #999;
            display: none; /* Скрываем текстовое название */
        }

        .provider-badge {
            height: 20px;
            width: auto;
            max-width: 60px;
            object-fit: contain;
            flex-shrink: 0;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .game-card:hover .provider-badge {
            opacity: 1;
        }

        /* Альтернатива для провайдеров без изображений */
        .provider-badge-text {
            font-size: 9px;
            color: #999;
            background: #2a2a2a;
            padding: 4px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* License Info Section */
        .license-section {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .license-icon {
            width: 60px;
            height: 60px;
            background: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            flex-shrink: 0;
        }

        .license-text {
            flex: 1;
            font-size: 13px;
            line-height: 1.6;
            color: #ccc;
        }

        .license-qr {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 4px;
            flex-shrink: 0;
        }

        /* Payment Methods Section */
        .payment-section {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .payment-logo {
            background: #2a2a2a;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            font-size: 10px;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 45px;
            transition: background 0.3s;
        }

        .payment-logo:hover {
            background: #333;
        }

        /* Content Section */
        .content-section {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .content-section h1 {
            font-size: 28px;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .content-text {
            font-size: 14px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 30px;
        }

        .content-text p {
            margin-bottom: 15px;
        }

        /* FAQ Section */
        .faq-section {
            margin: 30px 0;
        }

        .faq-section h2 {
            font-size: 24px;
            color: #ffd700;
            margin-bottom: 20px;
        }

        /* Дополнительные стили для информационного контента */
        .casino-specs, .bonus-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #2a2a2a;
            border-radius: 8px;
            overflow: hidden;
        }

        .casino-specs td, .bonus-table td, .bonus-table th {
            padding: 12px 15px;
            border-bottom: 1px solid #3a3a3a;
        }

        .casino-specs tr:last-child td, .bonus-table tr:last-child td {
            border-bottom: none;
        }

        .casino-specs td:first-child {
            font-weight: 600;
            color: #ffd700;
            width: 40%;
        }

        .casino-specs td:last-child {
            color: #ccc;
        }

        .bonus-table thead {
            background: linear-gradient(135deg, #6b1fb3, #c239ff);
        }

        .bonus-table th {
            color: #fff;
            font-weight: 600;
            text-align: left;
        }

        .bonus-table tbody tr:hover {
            background: #333;
        }

        .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        .warning {
            background: rgba(255, 152, 0, 0.1);
            border-left: 4px solid #ff9800;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            color: #ffb74d;
        }

        .info-box {
            background: rgba(33, 150, 243, 0.1);
            border-left: 4px solid #2196F3;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            color: #64B5F6;
        }

        .info-box strong {
            color: #2196F3;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }

        .pros, .cons {
            background: #2a2a2a;
            padding: 20px;
            border-radius: 8px;
        }

        .pros h3 {
            color: #4CAF50;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .cons h3 {
            color: #f44336;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .pros ul, .cons ul {
            list-style: none;
        }

        .pros ul li, .cons ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .checkmark {
            position: absolute;
            left: 0;
            color: #4CAF50;
        }

        .crossmark {
            position: absolute;
            left: 0;
            color: #f44336;
        }

        @media (max-width: 768px) {
            .pros-cons {
                grid-template-columns: 1fr;
            }

            .casino-specs td:first-child {
                width: 50%;
            }
        }

        .faq-item {
            background: #2a2a2a;
            border-radius: 6px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #333;
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s;
            padding: 0 20px;
            color: #aaa;
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 20px 20px 20px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #ffd700;
            font-size: 16px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: normal;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .provider-logo {
            background: #2a2a2a;
            padding: 12px 8px;
            border-radius: 4px;
            text-align: center;
            font-size: 9px;
            color: #999;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-height: 70px;
            border: 1px solid transparent;
        }

        .provider-logo:hover {
            background: #333;
            border-color: #ffd700;
            transform: translateY(-2px);
        }

        .provider-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
            color: #fff;
            margin-bottom: 2px;
        }

        .provider-logo:hover .provider-icon {
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            color: #000;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 12px;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .badge {
            width: 60px;
            height: 60px;
            background: #2a2a2a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .games-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .banner-content h2 {
                font-size: 32px;
            }

            .license-section {
                flex-direction: column;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }