  /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: #fff;
            transition: color 0.3s;
        }

        a:hover {
            color: #ffcc00;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #000;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }

        section {
            padding: 80px 0;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        h2:after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            margin: 15px auto;
        }

        /* Шапка */
        header {
            background-color: rgba(0, 0, 0, 0.9);
            width: 100%;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
        }

        .logo span {
            color: #fff;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Баннер */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ban.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .banner-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Казино */
        .casinos {
            background-color: #111;
        }

        .casino-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .casino-item {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
        }

        .casino-item:hover {
            transform: translateY(-10px);
        }

        .casino-logo {
            flex: 0 0 200px;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 80px;
        }

        .casino-content {
            flex: 1;
            padding: 30px;
        }

        .casino-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ffcc00;
        }

        .casino-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature {
            background-color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .casino-bonus {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bonus-text {
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* О нас */
        .about {
            background-color: #000;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* FAQ */
        .faq {
            background-color: #111;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            background-color: #1a1a1a;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-answer {
            background-color: #222;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Ответственная игра */
        .responsible-gambling {
            background-color: #000;
            text-align: center;
        }

        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .rg-icon {
            font-size: 4rem;
            color: #ffcc00;
            margin-bottom: 20px;
        }

        .rg-text {
            margin-bottom: 30px;
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .rg-link {
            background-color: #1a1a1a;
            padding: 15px 25px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .rg-link:hover {
            background-color: #333;
        }

        /* Подвал */
        footer {
            background-color: #111;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #999;
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .casino-item {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 30px;
            }
            
            .casino-bonus {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .banner h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 2rem;
            }
            
            .casino-title {
                font-size: 1.5rem;
            }
            
            .rg-links {
                flex-direction: column;
            }
        }
          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: #fff;
            transition: color 0.3s;
        }

        a:hover {
            color: #ffcc00;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #000;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }

        section {
            padding: 80px 0;
        }

        h1, h2 {
            margin-bottom: 30px;
            position: relative;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
        }

        h1:after, h2:after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            margin: 15px 0;
        }

        h1:after {
            margin: 15px auto;
        }

        p {
            margin-bottom: 20px;
        }

        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        li {
            margin-bottom: 10px;
        }

        /* Шапка */
        header {
            background-color: rgba(0, 0, 0, 0.9);
            width: 100%;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
        }

        .logo span {
            color: #fff;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Контент страницы */
        .policy-content {
            background-color: #111;
            padding: 120px 0 80px;
            min-height: calc(100vh - 200px);
        }

        .policy-text {
            max-width: 900px;
            margin: 0 auto;
        }

        .last-updated {
            text-align: center;
            color: #999;
            margin-bottom: 40px;
            font-style: italic;
        }

        /* Подвал */
        footer {
            background-color: #111;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }

        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #999;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .footer-links {
                flex-direction: column;
            }
        }