* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(to bottom, #0D0D0D, #2A1F14);
            color: #fff;
            line-height: 1.7;
            font-family: Arial, Helvetica, sans-serif;
        }
        a{
            color: inherit;
            text-decoration: none;
        }
        .container{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 10px;
        }
        .header {
            
            padding: 20px 0px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
        }
        .header .container{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #8AB17D;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .logo img {
            width: 50px;
            margin-right: 10px;
        }
        .nav a {
            color: #B565A7;
            margin-left: 35px;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.4s;
        }
        .nav a:hover {
            color: #D9A7C9;
        }
        .age-restriction {
            
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 25px auto;
        }
        .age-restriction span{
            background: #C0392B;
            font-weight: bold;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
        }
        .section{
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(125, 138, 177) 50%, rgba(23, 13, 0, 1) 100%);
        }
        .main-title {
            font-size: 3.8rem;
            text-align: center;
            margin: 35px 0;
            color: #fff;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
            font-weight: bold;
        }
        .subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 25px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 25px;
            color: #fff;
        }
        .info-text {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 45px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 25px;
            color: #fff;
        }
        .features {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }
        .feature {
            background: rgba(138, 177, 125, 0.2);
            border: 1px solid #7D8AB1;
            padding: 18px 28px;
            border-radius: 18px;
            text-align: center;
            min-width: 220px;
            transition: all 0.4s;
        }
        .feature:hover {
            background: rgba(138, 177, 125, 0.3);
            transform: translateY(-6px);
        }
        .feature i {
            font-size: 1.7rem;
            margin-bottom: 12px;
            color: #B565A7;
            background-color: rgba(237, 182, 227, 0.2);
            padding: 5px;
            border-radius: 10px;
        }
        .partner-section {
            background: rgba(0, 0, 0, 0.7);
            padding: 35px 10px;
            margin: 35px 0;
            text-align: center;
            border-radius: 18px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
        }
        .rating {
            font-size: 2.2rem;
            color: #8AB17D;
            margin-bottom: 25px;
        }
        .partner-block{
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }
        .partner-card {
            flex: 1;
            background: rgba(42, 31, 20, 0.9);
            padding: 22px;
            border-radius: 12px;
            margin: 12px;
            display: flex;
           flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .partner-card img{
            width: 150px;
        }
        .partner-card-btn{
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .age-row{
            display: flex; align-items: center; margin: 12px 0;
        }
        .age{
            background: #C0392B; color: white; padding: 6px 18px; border-radius: 18px; font-weight: bold; margin-right: 12px;
        }
        .button {
            background: linear-gradient(45deg, #B565A7, #7D8AB1);
            padding: 14px 28px;
            border: none;
            color: #0D0D0D;
            border-radius: 28px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.4s;
            text-decoration: none;
            display: inline-block;
        }
        .button:hover {
            transform: scale(1.07);
            box-shadow: 0 6px 18px rgba(181, 101, 167, 0.5);
        }
        .faq-section {
            
            padding: 35px 10px;
            margin: 35px 0;
            border-radius: 18px;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
        }
        .faq-title {
            
            text-align: center;
            margin-bottom: 35px;
            color: #D9A7C9;
            font-size: 2rem;
        }
        .faq-item {
            background: rgba(42, 31, 20, 0.9);
            margin: 18px 0;
            border-radius: 12px;
            overflow: hidden;
        }
        .faq-question {
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(181, 101, 167, 0.1);
            transition: background 0.4s;
            font-weight: bold;
            color: #D9C1A9;
        }
        .faq-question:hover {
            background: rgba(181, 101, 167, 0.2);
        }
        .faq-answer {
            padding: 0 25px 25px;
            display: none;
            color: #fff;
            line-height: 1.7;
            margin-top: 20px;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question {
            background: rgba(181, 101, 167, 0.2);
        }
        .collaboration-section {
            background: linear-gradient(90deg, #7D8AB1, #5D6B9A);
            padding:80px 10px;
            text-align: center;
            font-size: 1rem;
            color: #fff;
            margin: 25px 0 0;
        }
        .collaboration-section .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .collaboration-section .logos a:first-child img{
            height: 120px;
        }
        .logo-img {
            height: 45px;
            opacity: 0.9;
        }
        .footer {
            background: #0F141A;
            padding: 50px 10px;
            color: #fff;
            font-size: 0.9rem;
            border-top: 1px solid #2A2A2A;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }
        .footer-grid .footer-column {
            flex: 1;
            min-width: 160px;
            margin: 12px;
        }
        .footer-column h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-column p, .footer-column ul {
            margin-bottom: 8px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            color: #A9B1D9;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            font-size: 0.8rem;
            color: #8A9AB5;
            border-top: 1px solid #333;
        }
        .footer-logo{
            display: flex;
            align-items: center;
            gap: 10px;
             color: #8AB17D;
            text-decoration: none;
            font-size: 20px;
        }
        .footer-logo img{
            width: 50px;
        }
        .footer-grid{
            flex: 1;
            display: grid;
           grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
           gap: 40px;
        }
        .page{
            padding: 130px 0 80px;
        }
        .page h1, .page h2{
            margin-bottom: 20px;
        }
        .page p, .page ul{
            margin-bottom: 40px;
        }
        .page p{
            max-width: 1000px;
        }
        .list{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        @media(max-width: 1024px){
            .nav a {
                margin-left: 10px;
                font-size: 14px;
            }
            .logo{
                font-size: 16px;
            }
            .logo img{
                width: 30px;
                margin-right: 5px;
            }
            .footer-content, .collaboration-section .logos, .partner-block{
                flex-direction: column;
            }
            .footer-grid{
                grid-template-columns: 1fr;
            }
            .main-title {
                font-size: 32px;
            }
            
        }
