/* CSS Reset and Variables */
:root {
    --bg-color: #0B0B13;
    --text-main: #FFFFFF;
    --text-muted: #A0A0B5;
    --neon-cyan: #00E5FF;
    --neon-magenta: #FF00FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ambient Background Glow */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,0,255,0.05) 0%, rgba(0,229,255,0.02) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Main Layout Grid */
.container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
}

/* --- Left Column: Branding --- */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-mascot {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.3), 0 0 50px rgba(255, 0, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(255,0,255,0.1), rgba(0,229,255,0.1));
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    color: var(--neon-cyan);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); text-shadow: 0 0 5px rgba(0, 229, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.6); text-shadow: 0 0 15px rgba(0, 229, 255, 1); }
}

.main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(to right, #FFF, #A0A0B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1.2rem;
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Right Column: Video --- */
.media-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.2);
    z-index: 2;
}

.promo-video {
    width: 100%;
    border-radius: 20px;
    display: block;
    background-color: #000;
}

.video-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
    border-radius: 24px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 3rem;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .media-section {
        order: -1; /* Puts the video on top for mobile */
    }
}
