body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: Garamond, "Times New Roman", serif;
}

.landing-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    width: 100%;
    max-width: 600px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Minimalist, subtle Flash-style sound selector */
#audio-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.2s ease;
    padding: 5px 10px;
}

#audio-toggle:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.footer-overlay p {
    margin: 4px 0;
}

.footer-overlay a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-overlay a:hover {
    text-decoration: underline;
}
