:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: rgba(255, 255, 255, 0.7);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: url('images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#star-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 5vh 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-cta {
    margin: 3rem 0;
}

.hero-cta h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 2.5rem;
    color: var(--accent-color);
    opacity: 0.6;
}

.pre-order-btn {
    background: rgba(114, 89, 123, 0.5);
    border: none;
    color: var(--text-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 25px;
    font-weight: 300;
}

.pre-order-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    color: var(--bg-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-bottom {
    position: absolute;
    left: 0;
    bottom: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.scroll-indicator {
    position: static;
    margin-top: 0.5rem;
    color: var(--text-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
#about {
    background-color: rgba(10, 10, 10, 0.9);
}

#about p {
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 0.03em;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Video Section */
#video {
    background-color: rgba(10, 10, 10, 0.9);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 auto;
    max-width: 800px;
}

/* Contact Section */
#contact {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.contact-info, .email-signup {
    margin-bottom: 3rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

#signup-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

#signup-form input {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
}

#signup-form button {
    padding: 0.8rem 1.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

#signup-form button:hover {
    opacity: 0.9;
}

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

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta h2 {
        font-size: 1.2rem;
    }

    #signup-form {
        flex-direction: column;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-cta h2 {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

.hero-gradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, #0a0a0a 100%);
} 