* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Page Typography */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: "clarendon-urw", serif; /* Sleek, editorial body default */
    margin: 0;
}

/* Clear Headings using Rockwell */
h1 {
    font-family: "rockwell", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* The Widened Top Menu Email Input Container */
input[type="email"] {
    width: 230px; /* Widened cleanly so 'Stay in the infinite loop' doesn't clip */
    font-family: "clarendon-urw", serif;
    font-weight: 400;
    background: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
}

/* Submit Button */
input[type="submit"], button {
    font-family: "rockwell-condensed", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.studio-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .studio-panel {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.studio-panel form {
    display: flex;
    gap: 0.5rem;
}

.studio-panel input[type="email"] {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 0.5rem;
    font-family: monospace;
}

.studio-panel button {
    background: #e0e0e0;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: monospace;
    font-weight: bold;
}

.studio-panel a {
    color: #00ffff;
    text-decoration: none;
}

.doomscroll-stream {
    margin-top: 160px; /* Pushes content below the sticky navigation cockpit */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.doomscroll-stream img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 4px solid #050505; /* Seamless transition spacing */
}