* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Space Mono', monospace;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35vw;
    height: 50vh;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Let clicks pass to the background if needed */
}

.small-text {
    font-size: 1.2vw;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    /* Adjust space considering the severe scale of the larger text */
    transform: translateY(8vh);
}

.large-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8.5vw;
    font-weight: 300;
    white-space: nowrap;
    /* Severe height stretch and width compress distortion per requirements */
    transform: scale(0.5, 3.5); 
    transform-origin: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0; /* Managed by GSAP for fading */
    z-index: 3;
    pointer-events: none;
}

.content-section {
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #111; /* Just to demo next section */
}

.content-video {
    /* Initial size state will be handled securely by JS, but give it a nice object-fit */
    width: 40vw;
    height: 40vh;
    border-radius: 20px;
    object-fit: cover;
}

.sound-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
}

.sound-btn:hover {
    background: #fff;
    color: #000;
}