:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-color: #4169E1;
    /* Using Studio's Royal Blue as accent */
    --error-color: #ff4d4d;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Unlock UI */
.unlock-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    z-index: 10;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.unlock-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.branding {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: -0.2rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #4169E1, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unlock-instruction {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="password"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 15px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

input[type="password"]:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--accent-color);
}

button:active {
    transform: translateY(0);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.error-message.show {
    opacity: 1;
}

/* Content State */
.content-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.content-container.visible {
    opacity: 1;
    transform: scale(1);
}

.video-wrapper {
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plyr {
    border-radius: 20px;
    --plyr-color-main: var(--accent-color);
}

/* Ensure the player takes full width */
.plyr__video-embed {
    aspect-ratio: 16/9;
}

/* Utils */
.hidden {
    display: none !important;
}

.fade-out {
    opacity: 0;
    transform: scale(1.05);
}