:root {
    --primary: #33e073;
    --primary-dark: #2ab85e;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: #050505;
    overflow-x: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Video Section */
.video-section {
    width: 100%;
    position: relative;
    background: #000;
    border-bottom: 2px solid #1a1a1a;
    display: flex;
    justify-content: center;
}

#hero-video {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: contain;
}

/* Details Section */
.details-section {
    width: 100%;
    flex: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #050505;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.brand-logo {
    max-width: 160px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.glitch-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(51, 224, 115, 0.4);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 480px;
}

/* Form Styles */
.notify-form {
    margin-bottom: 40px;
    width: 100%;
    max-width: 450px;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(51, 224, 115, 0.15);
}

.input-group i {
    padding: 0 15px 0 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 12px 0;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-btn {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(51, 224, 115, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(51, 224, 115, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-section {
        height: 40vh;
    }
    
    .details-section {
        padding: 40px 20px;
    }

    .glitch-title {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border: none;
        background: none;
        padding: 0;
    }
    
    .input-group i {
        display: none;
    }
    
    .input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 15px 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .notify-btn {
        width: 100%;
        padding: 15px;
    }
}
