 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a0933 0%, #2d1b4e 50%, #0f051d 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Marquee 18+ */
        .age-marquee {
            background: linear-gradient(90deg, #ff0844, #ffb199);
            color: #1a0933;
            font-weight: bold;
            font-size: 18px;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .age-marquee span {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* Header */
        header {
            background: rgba(13, 4, 26, 0.95);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(255, 8, 68, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff0844;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff0844, #ffb199);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
        }

        .logo h1 {
            font-size: 32px;
            background: linear-gradient(45deg, #ff0844, #ffb199, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav a {
            color: #ffb199;
            text-decoration: none;
            margin-left: 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 16px;
        }

        nav a:hover {
            color: #ff0844;
            text-shadow: 0 0 10px rgba(255, 8, 68, 0.5);
        }

        /* Hero Section */
        .hero {
            padding: 100px 20px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 8, 68, 0.1), rgba(45, 27, 78, 0.3));
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 8, 68, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 56px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff0844, #ffb199, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 8, 68, 0.3);
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 40px;
            color: #ffb199;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #ff0844, #ff4d6d);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 8, 68, 0.6);
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 42px;
            margin-bottom: 30px;
            color: #ff0844;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #e0d5f0;
            margin-bottom: 20px;
        }

        .about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff0844, #2d1b4e); /* градиент будет под фото */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.3);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* фото заполняет блок, сохраняя пропорции */
    display: block;
}
        /* Games Section */
        .games {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(13, 4, 26, 0.5), rgba(45, 27, 78, 0.3));
        }

        .games h3 {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ff0844, #ffb199);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .games-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .game-card {
            background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(13, 4, 26, 0.9));
            border-radius: 15px;
            padding: 0;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: #ff0844;
            box-shadow: 0 15px 40px rgba(255, 8, 68, 0.4);
        }

        .game-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #2d1b4e, #1a0933);
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .game-card:hover .game-image img {
            transform: scale(1.1);
        }

        .game-info {
            padding: 20px;
        }

        .game-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .game-card h4 {
            font-size: 22px;
            color: #ffb199;
            margin-bottom: 10px;
        }

        .game-card p {
            color: #c5b8d9;
            font-size: 14px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            overflow: auto;
        }

        .modal-content {
            position: relative;
            margin: 2% auto;
            width: 95%;
            max-width: 1400px;
            height: 90vh;
            background: #1a0933;
            border-radius: 15px;
            border: 2px solid #ff0844;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 40px;
            font-weight: bold;
            color: #ff0844;
            cursor: pointer;
            z-index: 2001;
            background: rgba(26, 9, 51, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-modal:hover {
            background: #ff0844;
            color: white;
            transform: rotate(90deg);
        }

        .modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
        }

        /* Disclaimer */
        .disclaimer {
            background: linear-gradient(135deg, #0d041a, #1a0933);
            padding: 60px 20px;
            border-top: 2px solid #ff0844;
            border-bottom: 2px solid #ff0844;
        }

        .disclaimer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .disclaimer h4 {
            color: #ff0844;
            font-size: 32px;
            margin-bottom: 25px;
        }

        .disclaimer-text {
            font-size: 16px;
            line-height: 1.8;
            color: #c5b8d9;
            margin-bottom: 30px;
        }

        .age-warning {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .age-badge {
            background: linear-gradient(135deg, #ff0844, #ff4d6d);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(255, 8, 68, 0.4);
        }

        .responsible-logos {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .responsible-logo {
            width: 300px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            transition: all 0.3s;
            cursor: pointer;
            overflow: hidden;
        }

        .responsible-logo:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .responsible-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Footer */
        footer {
            background: #0d041a;
            padding: 60px 20px 30px;
            border-top: 3px solid #ff0844;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h5 {
            color: #ff0844;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-section p {
            color: #c5b8d9;
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #ffb199;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #ff0844;
            padding-left: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 8, 68, 0.3);
            color: #9580b5;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hero h2 { font-size: 36px; }
            .hero p { font-size: 18px; }
            .about-content { grid-template-columns: 1fr; }
            .header-content { flex-direction: column; gap: 20px; }
            nav { display: flex; flex-wrap: wrap; justify-content: center; }
            nav a { margin: 5px 15px; }
        }

        /* Age Verification Modal */
        .age-modal {
            display: flex;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            align-items: center;
            justify-content: center;
        }

        .age-modal-content {
            background: linear-gradient(135deg, #1a0933, #2d1b4e);
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            border: 3px solid #ff0844;
            box-shadow: 0 20px 60px rgba(255, 8, 68, 0.5);
        }

        .age-modal h2 {
            color: #ff0844;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .age-modal p {
            color: #ffb199;
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .age-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .age-button {
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .age-yes {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #0d041a;
        }

        .age-yes:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
        }

        .age-no {
            background: linear-gradient(135deg, #ff0844, #cc0635);
            color: white;
        }

        .age-no:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
        }

        .hidden {
            display: none !important;
        }

        /* Features Section */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h3 {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ff0844, #ffb199);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(13, 4, 26, 0.8));
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #ff0844;
            box-shadow: 0 15px 40px rgba(255, 8, 68, 0.3);
        }

        .feature-icon {
            font-size: 70px;
            margin-bottom: 25px;
            filter: drop-shadow(0 5px 15px rgba(255, 8, 68, 0.3));
        }

        .feature-card h4 {
            color: #ff0844;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #c5b8d9;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Statistics Section */
        .statistics {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(13,4,26,0.95), rgba(45,27,78,0.85)), url('../img/img2.webp') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .statistics::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 9, 51, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1;
        }

        .statistics-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .statistics h3 {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            color: #ffb199;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: rgba(255, 8, 68, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(255, 8, 68, 0.3);
            transition: all 0.3s;
        }

        .stat-card:hover {
            background: rgba(255, 8, 68, 0.2);
            border-color: #ff0844;
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 56px;
            font-weight: bold;
            color: #ff0844;
            margin-bottom: 10px;
            text-shadow: 0 5px 20px rgba(255, 8, 68, 0.5);
        }

        .stat-label {
            font-size: 18px;
            color: #ffb199;
            font-weight: 600;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(13, 4, 26, 0.5), rgba(45, 27, 78, 0.3));
        }

        .testimonials h3 {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ff0844, #ffb199);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 50px;
            text-align: center;
        }

        .testimonial-content {
            background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(13, 4, 26, 0.9));
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 8, 68, 0.3);
            position: relative;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 100px;
            color: rgba(255, 8, 68, 0.3);
            position: absolute;
            top: -20px;
            left: 30px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 20px;
            color: #e0d5f0;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff0844, #ffb199);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
        }

        .author-info h5 {
            color: #ffb199;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #9580b5;
            font-size: 14px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 8, 68, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ff0844;
            width: 30px;
            border-radius: 6px;
        }

        .slider-arrows {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 8, 68, 0.3), rgba(255, 77, 109, 0.3));
            border: 2px solid #ff0844;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 20px;
            color: #ffb199;
        }

        .arrow:hover {
            background: linear-gradient(135deg, #ff0844, #ff4d6d);
            transform: scale(1.1);
        }

        /* Legal Pages */
        .legal-page {
            min-height: 100vh;
            padding: 80px 20px;
            background: linear-gradient(135deg, #0d041a, #1a0933);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .legal-card {
            max-width: 900px;
            width: 100%;
            background: rgba(26, 9, 51, 0.9);
            border: 2px solid rgba(255, 8, 68, 0.3);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .legal-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 999px;
            background: linear-gradient(135deg, #ff0844, #ffb199);
            color: #1a0933;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .legal-title {
            font-size: 32px;
            margin-bottom: 10px;
            color: #ffb199;
        }

        .legal-updated {
            color: #c5b8d9;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .legal-section {
            margin-bottom: 26px;
        }

        .legal-section h4 {
            color: #ff0844;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .legal-section p,
        .legal-section li {
            color: #e0d5f0;
            line-height: 1.7;
            font-size: 15px;
        }

        .legal-list {
            padding-left: 18px;
            margin: 8px 0 0;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            color: #ffb199;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.2s, transform 0.2s;
        }

        .back-link:hover {
            color: #ff0844;
            transform: translateX(-2px);
        }
