:root {
    --color-bg: #050510;
    --color-cyan: #00f3ff;
    --color-pink: #ff00ff;
    --color-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;

    --glow-cyan: 0 0 20px rgba(0, 243, 255, 0.6);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.6);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

/* --- Background Effects --- */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1));
    background-size: 100% 4px;
    z-index: -1;
    pointer-events: none;
}

/* --- Typography --- */
.container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-header {
    margin-bottom: 30px;
}

.band-name {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
}

.line-1,
.line-3 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-white);
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.line-2 {
    font-size: clamp(4rem, 8vw, 7rem);
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
}

/* --- Video Container --- */
.video-wrapper {
    width: 100%;
    max-width: 700px;
    background: #000;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), 0 0 30px rgba(255, 0, 222, 0.15);
    margin: 0 auto 30px;
    position: relative;
}

.video-frame {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-overlay-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    pointer-events: none;
    /* Let video clicks formatting through */
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-cyan);
}

.quality-badge {
    color: var(--color-cyan);
    letter-spacing: 1px;
}

/* --- Subtext --- */
.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 40px;
}

.highlight-cyan {
    color: var(--color-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.highlight-pink {
    color: var(--color-pink);
    text-shadow: 0 0 8px rgba(255, 0, 222, 0.4);
}

/* --- Buttons --- */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 12px 30px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn .icon {
    font-size: 0.9rem;
}

.btn-cyan {
    color: var(--color-cyan);
    border: 2px solid var(--color-cyan);
    box-shadow: var(--box-glow-cyan);
}

.btn-cyan:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    text-shadow: 0 0 5px var(--color-cyan);
    color: #fff;
    border-color: #fff;
}

.btn-pink {
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    box-shadow: var(--box-glow-pink);
}

.btn-pink:hover {
    background: rgba(255, 0, 222, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 222, 0.6);
    text-shadow: 0 0 5px var(--color-pink);
    color: #fff;
    border-color: #fff;
}

/* --- Mobile Tweaks --- */
@media (max-width: 600px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Mission Log (Manifesto) --- */
/* --- Mission Log (Manifesto) --- */
.mission-log {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(5, 10, 20, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 30px;
    font-family: var(--font-tech);
    color: #aaa;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.log-header {
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    padding-bottom: 10px;
}

.log-entry {
    margin-bottom: 25px;
    padding-left: 15px;
}

.bot-entry {
    border-left: 2px solid var(--color-cyan);
    color: #aee;
}

.supervisor-entry {
    border-left: 2px solid var(--color-pink);
    color: #eea;
}

.entry-meta {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 5px;
    font-family: monospace;
}

.log-footer {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.log-entry p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Disclaimer Footer --- */
.system-disclaimer {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #888;
    font-family: monospace;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclaimer-title {
    color: #555;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.disclaimer-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
    line-height: 1.5;
}

.spec-label {
    color: #666;
    font-weight: 700;
    text-align: right;
}

.spec-value {
    color: #aaa;
}

.disclaimer-footer {
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.warning-text {
    color: #ff5555;
}

@media (max-width: 600px) {
    .spec-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .spec-label {
        text-align: left;
        color: var(--color-cyan);
        opacity: 0.7;
    }
}