* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #1a0f3a;
    --secondary-bg: #2d1b69;
    --hero-bg: #0f051f;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-yellow: #f59e0b;
    --accent-green: #10b981;
    --neon-purple: #d946ef;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --neon-pink: #ff1493;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-form: linear-gradient(135deg, #6366f1 0%, #d946ef 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 5, 31, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--hero-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/hero-bg.jpg') center center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 5, 31, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Neon Graphics */
.neon-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.neon-element {
    position: absolute;
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

.neon-phone {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 80px;
    border: 3px solid var(--neon-cyan);
    border-radius: 15px;
    box-shadow: 0 0 30px var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.neon-phone::before {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
}

.neon-cross {
    top: 25%;
    right: 20%;
    width: 60px;
    height: 60px;
    position: relative;
}

.neon-cross::before,
.neon-cross::after {
    content: '';
    position: absolute;
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}

.neon-cross::before {
    width: 4px;
    height: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.neon-cross::after {
    width: 60px;
    height: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.neon-lightning {
    bottom: 25%;
    left: 15%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--neon-purple);
    border-radius: 15px;
    box-shadow: 0 0 25px var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
}

.neon-lightning::before {
    content: '⚡';
}

.neon-disc {
    top: 20%;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 3px solid var(--neon-yellow);
    border-radius: 50%;
    box-shadow: 0 0 25px var(--neon-yellow);
    background: rgba(255, 255, 0, 0.1);
    position: relative;
}

.neon-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--neon-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--neon-yellow);
}

.neon-wand {
    bottom: 15%;
    right: 15%;
    width: 150px;
    height: 20px;
    background: var(--neon-yellow);
    border-radius: 10px;
    box-shadow: 0 0 20px var(--neon-yellow);
    transform: rotate(-30deg);
    position: relative;
}

.neon-wand::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--neon-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--neon-yellow);
}

.neon-squares {
    position: absolute;
}

.neon-square {
    width: 20px;
    height: 20px;
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple);
    position: absolute;
}

.neon-square:nth-child(1) { top: 30%; left: 5%; }
.neon-square:nth-child(2) { top: 80%; right: 25%; background: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); }
.neon-square:nth-child(3) { bottom: 40%; left: 25%; background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); }
.neon-square:nth-child(4) { top: 60%; right: 10%; background: var(--neon-yellow); box-shadow: 0 0 15px var(--neon-yellow); }

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
    font-family: 'Unbounded', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;

    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
  
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Games Section */
.games {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.game-image {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.game-subtitle {
    font-size: 1rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 500;
}

.game-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

}

.play-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Gallery Section */
.gallery {
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.gallery-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
}

.contact-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3);
    border-color: var(--accent-purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--gradient-form);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #333;
    padding: 2.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-popup h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cookie-popup p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookie-accept {
    background: var(--accent-blue);
    color: white;
}

.cookie-settings {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 1;
    }
}

.neon-element:nth-child(2) { animation-delay: -2s; }
.neon-element:nth-child(3) { animation-delay: -4s; }
.neon-element:nth-child(4) { animation-delay: -6s; }
.neon-element:nth-child(5) { animation-delay: -8s; }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(15, 5, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(168, 85, 247, 0.2);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .game-image {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .cookie-popup {
        padding: 1.5rem;
    }
    
    .contact-form,
    .about,
    .features,
    .games,
    .gallery,
    .contact {
        padding: 4rem 1rem;
    }
    
    .neon-element {
        transform: scale(0.7);
    }
}