@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Mohave:wght@700&family=Nothing+You+Could+Do&display=swap');

:root {
    --primary-red: #70000e;
    --lato-font-family: 'Lato', sans-serif;
}

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

body {
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.video_container {
    min-width: 100vw;
    min-height: 100vh;
    max-height: 100dvh;
    position: relative;
    overflow: hidden;
    background: var(--primary-red);
    background-image: url('./media/cover.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.video_container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    z-index: 1;
    mix-blend-mode: soft-light;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 7rem;
    z-index: 25;
    color: white;
    padding: 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Nothing You Could Do', cursive;
}

.header.transparent {
    background: transparent;
}

.content_container {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    background: radial-gradient(circle at var(--x) var(--y), 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0) 70%);
}

.content_container:hover .title-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.album_title, .subtitle, .available {
    position: relative;
    z-index: 2;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 4rem;
        padding: 0 5%;
    }

    .video_container {
        min-height: 100dvh;
        background-size: contain;
    }

    .content_container {
        padding: 15px;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .album_title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.2rem !important;
        margin: 10px 0;
    }

    .available {
        font-size: 1rem !important;
        padding: 8px 16px;
    }

    .play-btn {
        padding: 10px 20px;
        font-size: 20px;
        border-width: 1px;
    }

    .title-overlay {
        width: 100%;
        height: 110%;
        backdrop-filter: blur(3px);
    }

    @media (hover: none) {
        .content_container:hover .title-overlay {
            opacity: 0;
            transform: translate(-50%, -50%) scale(1);
        }
    }
}

/* Video Play Button Styles */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}