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

body {
    font-family: 'Open Sans', sans-serif;
    background: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Full-screen video player */
#player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
    z-index: 1;
}

/* Massive title spanning width */
.title-main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
    font-size: 12vw; /* Massive responsive size */
    font-weight: 800;
    color: rgba(255, 0, 51, 0.15); /* Subtle transparency so it doesn't block video */
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: screen; /* Blend nicely with video */
}

/* Info bar - NOW AT TOP-RIGHT */
.info-bar {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
    font-size: 9px;
    font-weight: 300;
    color: #ff0033;
    text-shadow: 0 0 6px #ff0033, 0 0 10px rgba(255, 0, 51, 0.4);
    display: flex;
    gap: 15px;
    pointer-events: none;
    user-select: none;
}

.info-item {
    white-space: nowrap;
    letter-spacing: 0.3px;
}

#streamState,
#signal {
    font-weight: 400;
}

/* VIDEO CONTROLS - HIDE PROGRESS BAR AND MENU BUTTON */
video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Hide timeline/progress bar */
video::-webkit-media-controls-timeline-container,
video::-webkit-media-controls-timeline {
    display: none !important;
}

/* Hide menu button (three dots) */
video::-webkit-media-controls-overflow-button {
    display: none !important;
}

/* Style remaining controls in red */
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-fullscreen-button {
    filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(7466%) hue-rotate(357deg) brightness(97%) contrast(118%);
}

video::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
    background: #ff0033;
}

/* Style time display in red */
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: #ff0033 !important;
    text-shadow: 0 0 5px #ff0033;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-vertical {
        font-size: 14px;
        left: 15px;
        top: 15px;
    }
    
    .info-bar {
        font-size: 8px;
        gap: 10px;
        top: 12px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .title-vertical {
        font-size: 12px;
        left: 10px;
        top: 10px;
    }
    
    .info-bar {
        font-size: 7px;
        gap: 8px;
        top: 10px;
        right: 10px;
        flex-wrap: wrap;
        max-width: calc(100vw - 60px);
    }
}
