@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #ffffff;
    --bg: #000000;
}

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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg);
    font-family: 'Outfit', sans-serif;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.logo {
    position: fixed;
    top: 40px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.8;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.quote-container {
    position: fixed;
    bottom: 40px;
    left: 40px;
    max-width: 400px;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.quote-container:hover {
    opacity: 1;
}

#quote-text {
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--primary);
}

#quote-author {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.8;
}

.unmute-btn {
...
@media (max-width: 768px) {
    .logo {
        top: 25px;
        left: 25px;
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
    }
    
    .quote-container {
        bottom: 90px; /* Move above unmute button on mobile if needed */
        left: 25px;
        max-width: 80%;
    }
    
    #quote-text {
        font-size: 0.9rem;
    }

    .unmute-btn {
...

    #bg-video {
        /* Ensure video covers even with browser chrome height variations */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Specific fix for small phones */
@media (max-width: 480px) {
    .logo {
        top: 20px;
        left: 20px;
        font-size: 1rem;
    }
    
    .unmute-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
    }
}
