* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B4CE8;
    --secondary-color: #FF6B9D;
    --accent-color: #00D9FF;
    --orange-cta: #FF7020;
    --dark-bg: #1a1a2e;
    --light-text: #1a1a2e;
    --light-gray: #F5F5F5;
    --border-radius: 10px;
    --transition: 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Navigation Bar */
.navbar {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section Updates */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.1rem !important;
    margin-bottom: 2.5rem !important;
    color: #718096 !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(107, 76, 232, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 76, 232, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Game Screen Mockup */
.game-screen-mockup {
    width: 100%;
    max-width: 350px;
    height: 700px;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    border: 12px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.full-game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features and Other Sections */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(107, 76, 232, 0.1);
    border: 1px solid rgba(107, 76, 232, 0.1);
}

.feature-card:hover {
    box-shadow: 0 20px 50px rgba(107, 76, 232, 0.2);
    transform: translateY(-10px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .game-screen-mockup {
        height: 600px;
        max-width: 350px;
    }
}


/* Download Section */
.download {
    padding: 8rem 2rem;
    background: white;
    text-align: center;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
}

.download h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    font-weight: 800;
}

.download p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.contact p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    text-align: left;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(107, 76, 232, 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 2.5rem;
    background: rgba(107, 76, 232, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-bg);
}

.info-text p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #718096;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Footer Improvements */
.footer {
    background: #1a202c;
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section p, .footer-section ul li a {
    color: #a0aec0;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-color: #2d3748;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, #8B5CF6 100%);
        padding: 2rem;
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features h2,
    .download h2 {
        font-size: 2rem;
    }

    .features {
        padding: 3rem 1rem;
    }

    .download {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .game-mockup {
        gap: 10px;
        padding: 1rem;
    }

    .features h2,
    .download h2 {
        font-size: 1.6rem;
    }
}
