:root {
    --color-studio: #4169E1;
    /* Royal Blue */
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --text-secondary: #a0a0a0;

    --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);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: exclusion;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.status {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recording-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-studio);
    border-radius: 50%;
    animation: blink 2s infinite ease-in-out;
    box-shadow: 0 0 10px var(--color-studio);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Main Content */
.studio-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Space for header */
}

/* Background Blob */
.bg-blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.studio-blob {
    width: 60vw;
    height: 60vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-studio);
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.content-wrapper {
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.studio-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
    /* Studio Blue Shadow */
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.studio-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

/* Video Placeholder */
.video-placeholder-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-placeholder-container:hover {
    border-color: rgba(65, 105, 225, 0.3);
    transform: scale(1.01);
}

.video-placeholder-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1), transparent 70%);
    pointer-events: none;
}

.video-placeholder {
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.play-button {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid rgba(255, 255, 255, 0.8);
    margin-left: 5px;
    /* Visual center adjustment */
    transition: border-left-color 0.3s ease;
}

.video-placeholder-container:hover .play-button {
    transform: scale(1.1);
    border-color: var(--color-studio);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.4);
}

.video-placeholder-container:hover .play-button::after {
    border-left-color: var(--color-studio);
}

/* Footer */
.sub-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .studio-title {
        font-size: 3.5rem;
    }

    .video-placeholder-container {
        border-radius: 10px;
    }
}