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

:root {
    --primary-bg: #0F0F1E;
    --secondary-bg: #1A1A2E;
    --accent-bg: #16213E;
    --primary-purple: #6B46C1;
    --secondary-cyan: #00CED1;
    --accent-gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --card-bg: rgba(26, 26, 46, 0.8);
    --card-border: rgba(107, 70, 193, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--card-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-cyan);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sections */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

section:first-of-type {
    padding-top: 10rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

/* Hero Section - Side by Side Layout */
.hero {
    position: relative;
}

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

.hero-text {
    order: 1;
}

.hero-image-container {
    order: 2;
}

.splash-image {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-cyan);
    border: 2px solid var(--secondary-cyan);
}

.btn-secondary:hover {
    background: var(--secondary-cyan);
    color: var(--primary-bg);
}

/* Coming Soon Section */
.coming-soon-section {
    background: var(--secondary-bg);
    text-align: center;
}

.coming-soon-section h2 {
    margin-bottom: 2rem;
}

.coming-soon-section p {
    margin-bottom: 2rem;
}

/* Social Media Section */
.social-media {
    background: var(--primary-bg);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--secondary-cyan);
    transform: translateY(-5px);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.social-link:hover .social-icon {
    border-color: var(--secondary-cyan);
    background: var(--secondary-cyan);
    color: var(--primary-bg);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--secondary-cyan);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-cyan);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 2px solid var(--primary-purple);
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    color: var(--text-primary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Mobile navigation - hidden by default */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--card-border);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    /* Show mobile menu when active */
    .nav-links.active {
        right: 0;
    }
    
    /* Mobile menu items */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--card-border);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: var(--card-bg);
        padding-left: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Fix viewport shifting - ensure content never overflows */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    section {
        padding: 4rem 1rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}
