
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #6d28d9;
    --bg-dark: #0a0a14;
    --bg-card: #11111f;
    --bg-light: #18182a;
    --text-white: #ffffff;
    --text-gray: #a0a0c0;
    --text-muted: #4a4a6a;
    --border: rgba(139, 92, 246, 0.15);
    --glow: rgba(139, 92, 246, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.header {
    background: rgba(10, 10, 20, 0.95);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #a78bfa;
}

.header-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 8px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.header-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: #8b5cf6;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #a78bfa;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .burger-line {
        width: 18px;
        margin: 4px auto;
    }
    
    .mobile-menu a {
        padding: 10px 16px;
        font-size: 15px;
    }
}
.hero {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85), rgba(26, 26, 46, 0.92)), url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.08), transparent 60%);
    pointer-events: none;
}

.header {
    background: rgba(10, 10, 20, 0.95);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

nav a {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--primary-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: white;
    transition: var(--transition);
}

.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85), rgba(26, 26, 46, 0.92)), url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 5px 20px var(--glow);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow);
}

.games-section {
    background: var(--bg-dark);
}

.games-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.games-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 15px auto 0;
    border-radius: 3px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.games-section img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    text-align: center;
}

.card p {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
    flex-grow: 1;
    margin-bottom: 20px;
}

.card .btn {
    display: inline-block;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 10px 25px;
    font-size: 14px;
    box-shadow: none;
}

.about-section {
    background: linear-gradient(135deg, #0a0a14, #0d0d1a);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.about-header h2 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-header p {
    font-size: 18px;
    color: #a0a0c0;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    color: #b0b0d0;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.about-text strong {
    color: #a78bfa;
}

.about-quote {
    background: rgba(139, 92, 246, 0.05);
    border-left: 3px solid #8b5cf6;
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.about-quote p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
    color: #c0c0e0;
}

.about-quote span {
    font-size: 13px;
    color: #a78bfa;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 18px;
    min-width: 25px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.feature-item p {
    font-size: 12px;
    color: #a0a0c0;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-header h2 {
        font-size: 36px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-header p {
        font-size: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-quote {
        padding: 15px 20px;
    }
}

.why-us {
    background: linear-gradient(135deg, #0d0d1a, #0a0a14);
    padding: 100px 0;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #0a0a14, transparent);
    pointer-events: none;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.why-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.why-header h2 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-header .why-subtitle {
    font-size: 18px;
    color: #a0a0c0;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(139, 92, 246, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 22px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.2));
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #a78bfa;
}

.feature-card p {
    color: #b0b0d0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-header h2 {
        font-size: 28px;
    }
    
    .why-header .why-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        font-size: 44px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}
.reviews {
    background: var(--bg-card);
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.reviews h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 15px auto 0;
    border-radius: 3px;
}

.reviews .grid {
    grid-template-columns: repeat(3, 1fr);
}

.reviews .card {
    padding: 25px;
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.reviews .card p {
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer strong {
    color: var(--primary-light);
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    font-size: 12px;
    color: var(--text-muted);
}

.form-section {
    background: linear-gradient(135deg, #0a0a14, #0d0d1a);
    padding: 100px 0;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.form-header h2 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-header .form-subtitle {
    font-size: 18px;
    color: #a0a0c0;
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-left {
    background: rgba(139, 92, 246, 0.03);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.form-image {
    text-align: center;
    margin-bottom: 30px;
}

.form-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 24px;
    min-width: 40px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #a78bfa;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: 13px;
    color: #b0b0d0;
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover {
    color: #a78bfa;
}

.form-right {
    background: rgba(139, 92, 246, 0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.form-wrapper {
    width: 100%;
}

.custom-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.custom-form textarea {
    resize: vertical;
    min-height: 100px;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: #6a6a8a;
}

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #6a6a8a;
    margin-top: 20px;
}

.form-note a {
    color: #a78bfa;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-header h2 {
        font-size: 36px;
    }
    
    .form-right {
        order: 1;
    }
    
    .form-left {
        order: 2;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 60px 0;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .form-header .form-subtitle {
        font-size: 15px;
    }
    
    .form-right {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .form-right {
        padding: 20px;
    }
    
    .custom-form input,
    .custom-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .grid,
    .features-grid,
    .reviews .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .grid,
    .features-grid,
    .reviews .grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .form-wrapper {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .games-section h2,
    .about-section h2,
    .why-us h2,
    .reviews h2,
    .form-section h2 {
        font-size: 28px;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
.footer {
    background: linear-gradient(135deg, #05050a, var(--bg-dark));
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column h4 {
    color: var(--primary-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.disclaimer {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.age-warning {
    color: var(--primary-light);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .benefits-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .benefits-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-description {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 28px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
.page {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a14, #0d0d1a);
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero h1 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-subtitle {
    font-size: 18px;
    color: #a0a0c0;
}

.section-header-light {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag-light {
    display: inline-block;
    background: rgba(139, 92, 246, 0.08);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: #a78bfa;
    margin-bottom: 12px;
}

.section-header-light h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.section-header-light h2 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.intro-text p {
    color: #b0b0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text strong {
    color: #a78bfa;
}

.mission-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.mission-card {
    background: rgba(139, 92, 246, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #a78bfa;
}

.mission-card p {
    color: #b0b0d0;
    line-height: 1.6;
}

.how-it-works {
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    color: #fff;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.step p {
    color: #b0b0d0;
    font-size: 14px;
    line-height: 1.6;
}

.features-section {
    margin-bottom: 80px;
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-about {
    display: flex;
    gap: 18px;
    background: rgba(139, 92, 246, 0.03);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.05);
}

.feature-about:hover {
    background: rgba(139, 92, 246, 0.06);
    transform: translateX(5px);
}

.feature-icon-small {
    font-size: 28px;
}

.feature-about h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.feature-about p {
    color: #b0b0d0;
    font-size: 13px;
    line-height: 1.5;
}

.important-info {
    margin-bottom: 80px;
    background: rgba(139, 92, 246, 0.03);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.important-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
}

.info-icon-large {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #a78bfa;
}

.info-card p {
    color: #b0b0d0;
    font-size: 14px;
    line-height: 1.6;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: rgba(139, 92, 246, 0.03);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #a78bfa;
}

.faq-item p {
    color: #b0b0d0;
    font-size: 14px;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.02));
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.cta-inner h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-inner p {
    color: #b0b0d0;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .mission-section,
    .steps-grid,
    .info-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-about {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .page {
        padding: 60px 0;
    }
    
    .mission-section,
    .steps-grid,
    .info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .important-info {
        padding: 30px;
    }
    
    .cta-inner {
        padding: 40px 25px;
    }
    
    .cta-inner h3 {
        font-size: 24px;
    }
}
.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a14, #0d0d1a);
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact-header h1 span {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    font-size: 18px;
    color: #a0a0c0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-side {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(139, 92, 246, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.info-card-side:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.info-icon-side {
    font-size: 32px;
    min-width: 50px;
}

.info-content-side h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #a78bfa;
}

.info-content-side a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.info-content-side a:hover {
    color: #a78bfa;
}

.info-content-side p {
    color: #b0b0d0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.info-note {
    background: rgba(139, 92, 246, 0.05);
    padding: 15px 20px;
    border-radius: 16px;
    text-align: center;
    margin-top: 10px;
}

.info-note p {
    color: #a78bfa;
    font-size: 13px;
    margin: 0;
}

.contact-form-side {
    background: rgba(139, 92, 246, 0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.form-container {
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6a6a8a;
}

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #6a6a8a;
    margin-top: 20px;
}

.form-note a {
    color: #a78bfa;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 0 0 12px;
}

.contact-form input._phone {
    padding-left: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h1 {
        font-size: 42px;
    }
    
    .contact-form-side {
        order: 1;
    }
    
    .contact-info-side {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact-form-side {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .info-card-side {
        padding: 20px;
    }
    
    .info-icon-side {
        font-size: 28px;
        min-width: 45px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 50px 0;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-tag {
        font-size: 11px;
    }
    
    .contact-form-side {
        padding: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .info-card-side {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon-side {
        margin: 0 auto;
    }
}
.game-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a14, #0d0d1a);
    min-height: calc(100vh - 200px);
}

.game-page h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Inter', sans-serif;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 16px;
    background: #111;
}

.game-page a {
    display: inline-block;
    text-align: center;
    margin-top: 25px;
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
}

.game-page a:hover {
    color: #fff;
    background: #8b5cf6;
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .game-page {
        padding: 60px 0;
    }
    
    .game-page h1 {
        font-size: 40px;
    }
    
    .game-wrapper iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .game-page {
        padding: 50px 0;
    }
    
    .game-page h1 {
        font-size: 32px;
    }
    
    .game-wrapper {
        padding: 15px;
        margin: 0 15px;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .game-page {
        padding: 40px 0;
    }
    
    .game-page h1 {
        font-size: 28px;
    }
    
    .game-wrapper {
        padding: 10px;
        margin: 0 10px;
    }
    
    .game-wrapper iframe {
        height: 300px;
    }
    
    .game-page a {
        margin-top: 20px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .game-page {
        padding: 40px 0;
    }
    
    .game-wrapper iframe {
        height: 320px;
    }
}