    :root {
            --primary: #2c5f2d;
            --secondary: #004225;
            --accent: #ffcc00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-green: #e9f5e9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
        }
        
        /* Шапка */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 28px;
            color: var(--secondary);
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark);
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--dark);
        }
           :root {
            --primary: #2c5f2d;
            --secondary: #004225;
            --accent: #ffcc00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-green: #e9f5e9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Шапка */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 28px;
            color: var(--secondary);
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark);
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Баннер */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ban.png') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 180px 0 120px;
            margin-top: 70px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Казино */
        .casinos-list {
            background-color: var(--light-green);
        }
        
        .casino-row {
            display: flex;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }
        
        .casino-row:hover {
            transform: translateY(-5px);
        }
        
        .casino-logo {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: #f8f9fa;
        }
        
        .casino-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        
        .casino-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .casino-name {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .advantages {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        
        .advantage {
            display: flex;
            align-items: center;
            margin-right: 25px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .advantage i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 18px;
        }
        
        .casino-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .bonus-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
        }
        
        /* О нас */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 17px;
            color: var(--gray);
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* FAQ */
        .faq-section {
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px 25px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 18px;
            color: var(--secondary);
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background-color: white;
        }
        
        .faq-answer p {
            padding-bottom: 25px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 15px;
        }
        
        /* Responsible Gambling */
        .responsible-gambling {
            background-color: var(--light-green);
            text-align: center;
        }
        
        .rg-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }
        
        .rg-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 180px;
        }
        
        .rg-icon img {
            height: 70px;
            margin-bottom: 15px;
            object-fit: contain;
        }
        
        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 24px;
            margin-bottom: 30px;
        }
        
        /* Подвал */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }
        
        .footer-logo .logo {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo p {
            opacity: 0.8;
            line-height: 1.8;
        }
        
        .footer-links {
            flex: 0 0 200px;
            margin-bottom: 30px;
        }
        
        .footer-links h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .casino-row {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .casino-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 28px;
            }
            
            .casino-name {
                font-size: 24px;
            }
            
            .advantages {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 28px;
            }
        }
        /* Контент страницы */
        .policy-hero {
            background: linear-gradient(rgba(44, 95, 45, 0.9), rgba(0, 66, 37, 0.9)), url('ban.png') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 160px 0 80px;
            margin-top: 70px;
        }
        
        .policy-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .policy-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .policy-content {
            padding: 80px 0;
        }
        
        .policy-section {
            margin-bottom: 50px;
        }
        
        .policy-section h2 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-green);
        }
        
        .policy-section h3 {
            font-size: 24px;
            color: var(--primary);
            margin: 30px 0 15px;
        }
        
        .policy-section p {
            margin-bottom: 20px;
            font-size: 17px;
            color: var(--dark);
        }
        
        .policy-section ul {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        
        .policy-section ul li {
            margin-bottom: 10px;
            font-size: 17px;
            color: var(--dark);
        }
        
        .warning-box {
            background-color: #fff8e1;
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .warning-box h4 {
            color: #e65100;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .back-to-home {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        /* Подвал */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }
        
        .footer-logo .logo {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo p {
            opacity: 0.8;
            line-height: 1.8;
        }
        
        .footer-links {
            flex: 0 0 200px;
            margin-bottom: 30px;
        }
        
        .footer-links h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .policy-hero {
                padding: 140px 0 60px;
            }
            
            .policy-hero h1 {
                font-size: 32px;
            }
            
            .policy-section h2 {
                font-size: 28px;
            }
            
            .policy-section h3 {
                font-size: 22px;
            }
        }
        
        @media (max-width: 480px) {
            .policy-hero h1 {
                font-size: 28px;
            }
            
            .policy-section h2 {
                font-size: 24px;
            }
        }