/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e1a;
    --bg-darker: #060912;
    --accent-blue: #0066cc;
    --accent-cyan: #00c8ff;
    --accent-green: #00e676;
    --text-white: #ffffff;
    --text-gray: #a0a8b8;
    --text-muted: #6b7280;
    --red-live: #e53935;
    --red-dark: #b71c1c;
    --gold: #ffd700;
    --gradient-stadium: linear-gradient(180deg, #0a0e1a 0%, #000000 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}




/* ========================================
   MAIN CONTENT & STADIUM BACKGROUND
   ======================================== */
.main-content {
    position: relative;
    min-height: calc(100vh - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.stadium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--gradient-stadium);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stadium-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.stadium-bg::after {
    display: none;
}

/* ========================================
   VIDEO PLAYER
   ======================================== */
.match-title-container {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    margin: 5px auto 5px;
    padding: 0;
    background: transparent;
}

.match-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.match-badge {
    display: none;
}

.match-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #e94560;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.player-section {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 0;
    padding: 0 12px;
}

.video-container {
    width: 100%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 100, 200, 0.1);
}

/* Fullscreen styles */
.video-container:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.video-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.video-container:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.video-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.video-container:fullscreen .video-screen {
    height: 100%;
    flex: 1;
}

.video-container:-webkit-full-screen .video-screen {
    height: 100%;
    flex: 1;
}

.video-container:-moz-full-screen .video-screen {
    height: 100%;
    flex: 1;
}

.video-container:-ms-fullscreen .video-screen {
    height: 100%;
    flex: 1;
}

.video-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
    transition: cursor 0.3s ease;
}



/* Video screen clickable state after poster appears */
.video-screen.clickable {
    cursor: pointer;
}

.video-screen.clickable:hover {
    cursor: pointer;
}

.video-screen.clickable:hover .big-play-btn {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.connecting-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--text-white);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.connecting-text {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Fade out connecting indicator */
.connecting-indicator.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

/* Loading spinner state */
.connecting-indicator.loading .dot {
    animation: loadingSpin 1s ease-in-out infinite;
}

.connecting-indicator.loading .dot:nth-child(1) {
    animation-delay: 0s;
}

.connecting-indicator.loading .dot:nth-child(2) {
    animation-delay: 0.15s;
}

.connecting-indicator.loading .dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingSpin {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Big Play Button */
.big-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 5;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* Let clicks pass through to video-screen */
}

.big-play-btn.hidden {
    display: none;
}

.big-play-btn.show {
    display: flex;
    animation: playBtnAppear 0.8s ease-out forwards;
    opacity: 1;
}

@keyframes playBtnAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.big-play-btn i {
    margin-left: 4px;
    /* optical center for play icon */
}

.big-play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.big-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Video Controls Bar */
.video-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: linear-gradient(180deg, #e8e8e8, #d0d0d0);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.control-btn:hover {
    color: #000;
}

.progress-bar {
    flex: 1;
    height: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.progress-track {
    width: 100%;
    height: 3px;
    background: #888;
    border-radius: 2px;
    position: relative;
    overflow: visible;
}

.progress-fill {
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #555, #333);
    border-radius: 2px;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.15s;
}

.progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.volume-slider {
    width: 70px;
    height: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.volume-track {
    width: 100%;
    height: 4px;
    background: #888;
    border-radius: 2px;
    position: relative;
}

.volume-fill {
    width: 65%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 2px;
}

.fullscreen-btn {
    font-size: 13px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--red-live);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-left: auto;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red-live);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ========================================
   AD SLOT
   ======================================== */
.ad-slot {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    width: max-content;
    max-width: 95%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 0;
    /* Extra padding on the right for the close button */
    pointer-events: auto;
    background: transparent;
    border: none;
    /* Make it look like a floating box */
}

.ad-slot.ad-slot-bottom {
    top: auto;
    bottom: 15px;
}

.close-ad-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    transform: none;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.close-ad-btn:hover {
    background: rgba(229, 57, 53, 0.9);
    /* Red on hover */
    color: var(--text-white);
    transform: scale(1.1);
}

.ad-container {
    width: auto;
    height: auto;
    min-width: 320px;
    min-height: 50px;
    background: transparent;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.ad-container:empty::after {
    content: 'Advertisement';
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ========================================
   QUALITY OPTIONS
   ======================================== */
.quality-section {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    padding: 0 12px;
}

.quality-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.quality-item:hover {
    transform: scale(1.05);
}

.quality-4k .quality-label-big {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

.quality-label-top {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.quality-label-sub {
    font-size: 9px;
    color: var(--text-gray);
    font-weight: 500;
}

.quality-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

.quality-icon-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-gray);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 4px 8px;
}

.quality-icon-item span {
    font-size: 11px;
    font-weight: 600;
}

.quality-icon-item:hover {
    color: var(--text-white);
    transform: scale(1.1);
}

/* ========================================
   WATCH NOW BUTTON
   ======================================== */
.watch-section {
    position: relative;
    z-index: 10;
    margin-top: 28px;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(21, 101, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.watch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.watch-btn:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(21, 101, 192, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.watch-btn:hover::before {
    left: 100%;
}

.watch-btn i {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.watch-btn:hover i {
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

/* ========================================
   SOCIAL SHARE
   ======================================== */
.share-section {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-whatsapp {
    background: #25d366;
}

.share-telegram {
    background: #0088cc;
}

.share-copy {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-facebook:hover {
    background: #166fe5;
}

.share-twitter:hover {
    background: #1a91da;
}

.share-whatsapp:hover {
    background: #20bd5a;
}

.share-telegram:hover {
    background: #007ab8;
}

.share-copy:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ========================================
   CATEGORY SECTIONS
   ======================================== */
.category-section {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
    padding: 0 16px;
}

.category-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.category-title i {
    font-size: 12px;
    color: var(--accent-cyan);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.category-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.category-tag:hover {
    color: var(--text-white);
    background: rgba(0, 200, 255, 0.1);
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 255, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 30px;
    padding: 16px 16px;
    text-align: center;
    background: rgba(6, 9, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 11px;
    color: var(--text-gray);
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-dot {
    color: var(--text-muted);
    font-size: 9px;
}

.copyright {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   USERS ONLINE COUNTER
   ======================================== */
.users-online {
    position: fixed;
    bottom: 16px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: onlinePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

@keyframes onlinePulse {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(0, 230, 118, 0.4);
    }

    50% {
        box-shadow: 0 0 12px rgba(0, 230, 118, 0.7);
    }
}

.online-count {
    color: var(--accent-green);
    font-weight: 700;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .match-title-container {
        margin: 15px 10px 10px;
        padding: 0;
    }

    .match-title {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }

    .match-badge {
        display: none;
    }

    .player-section {
        margin-top: 16px;
        padding: 0 10px;
    }

    .quality-options {
        flex-direction: row;
        gap: 10px;
    }

    .quality-divider {
        display: block;
    }

    .quality-4k .quality-label-big {
        font-size: 28px;
    }

    .quality-label-top {
        font-size: 12px;
    }

    .watch-btn {
        padding: 12px 36px;
        font-size: 13px;
    }

    .volume-slider {
        display: none;
    }

    .share-section {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 45px;
        padding: 0 10px;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .brand-logo {
        height: 22px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 11px;
    }

    .nav-signin-mobile {
        gap: 5px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .signin-btn {
        padding: 4px 10px;
        font-size: 10px;
    }

    .main-content {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .match-title-container {
        margin: 12px 8px 8px;
    }

    .match-title {
        font-size: 14px;
    }

    .player-section {
        margin-top: 12px;
        padding: 0 8px;
    }

    .video-screen {
        height: 320px;
        max-height: 35vw;
    }

    /* Tall mobile screens */
    @media (min-height: 900px) and (max-width: 768px) {
        .video-screen {
            height: 500px;
            max-height: 50vw;
        }
    }

    .big-play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .control-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .video-controls {
        padding: 4px 8px;
        gap: 4px;
    }

    .progress-bar {
        height: 3px;
    }

    .progress-track {
        height: 2px;
    }

    .progress-handle {
        width: 6px;
        height: 6px;
    }

    .volume-slider {
        display: none;
    }

    .watch-section {
        margin-top: 20px;
    }

    .watch-btn {
        padding: 8px 24px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .quality-section {
        margin-top: 16px;
        padding: 0 8px;
    }

    .quality-options {
        gap: 8px;
    }

    .quality-4k .quality-label-big {
        font-size: 24px;
    }

    .quality-label-top {
        font-size: 10px;
    }

    .quality-label-sub {
        font-size: 8px;
    }

    .share-section {
        margin-top: 16px;
        gap: 8px;
    }

    .share-label {
        font-size: 11px;
    }

    .share-buttons {
        gap: 4px;
    }

    .share-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .category-section {
        margin-top: 24px;
        padding: 0 12px;
    }

    .category-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .category-tag {
        padding: 4px 10px;
        font-size: 10px;
    }

    .site-footer {
        margin-top: 24px;
        padding: 12px 12px;
    }

    .footer-links {
        gap: 6px;
        margin-bottom: 4px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .footer-dot {
        font-size: 8px;
    }

    .copyright {
        font-size: 9px;
    }

    .badge {
        font-size: 9px;
        padding: 3px 7px;
    }

    .quality-divider {
        height: 20px;
    }

    .quality-icon-item {
        font-size: 15px;
    }

    /* Small screen with medium height */
    @media (min-height: 600px) and (max-width: 480px) {
        .video-screen {
            height: 360px;
            max-height: 40vw;
        }
    }

    /* Small screen with tall aspect ratio */
    @media (min-height: 700px) and (max-width: 480px) {
        .video-screen {
            height: 420px;
            max-height: 45vw;
        }
    }

    /* Ultra tall smartphones */
    @media (min-height: 800px) and (max-width: 480px) {
        .video-screen {
            height: 480px;
            max-height: 50vw;
        }
    }

    /* Foldable phones */
    @media (min-height: 900px) and (max-width: 480px) {
        .video-screen {
            height: 520px;
            max-height: 55vw;
        }

        .main-content {
            padding-top: 60px;
        }
    }
}