/* Mobil menü açılır nav */
.nav.nav-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 2000;
    padding: 24px 0 16px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 100vw;
    overflow-x: hidden;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Parallax Background */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-image: url('stadium-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: -2;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Content overlay to ensure readability */
.content-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(1px);
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    color: #3b82f6;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #64748b;
    pointer-events: none;
}

.search-input {
    width: 320px;
    height: 48px;
    padding: 0 20px 0 48px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #64748b;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    padding: 32px 0;
}

/* Featured Player */
.featured-player {
    margin-bottom: 48px;
}

.player-container, .player-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  position: relative;
  max-width: none;
  min-width: 0;
  min-height: 0;
}

.player-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    border-radius: 18px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 30;
}

.player-overlay[style*="display: none"], .player-info[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}
.player-overlay, .player-info {
  opacity: 1;
}

.play-button {
    pointer-events: auto;
    background: rgba(0,0,0,0.4);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(0,0,0,0.7);
}

.player-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 32px 16px 32px;
    color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.0) 100%);
    z-index: 2;
}

.player-info-overlay.player-info-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 32px 18px 32px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.0) 100%);
    z-index: 10;
    color: #fff;
    font-size: 16px;
}

.player-info-overlay.player-info-bottom-bar .match-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 8px;
    color: #fff;
}

.player-info-overlay.player-info-bottom-bar .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #fff;
}

.player-info-overlay.player-info-bottom-bar .mini-play-btn,
.player-info-overlay.player-info-bottom-bar .mini-fullscreen-btn {
    background: rgba(0,0,0,0.4);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.player-info-overlay.player-info-bottom-bar .mini-play-btn:hover,
.player-info-overlay.player-info-bottom-bar .mini-fullscreen-btn:hover {
    background: rgba(0,0,0,0.7);
}

.match-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #ef4444;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.league {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.match-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.match-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

/* Tabs */
.tabs-section {
    margin-bottom: 32px;
}

.tabs-container {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: none;
    border: none;
    border-radius: 12px;
    color: #94a3b8;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.tab:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
}

.tab.active {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tab svg {
    width: 16px;
    height: 16px;
}

/* Content Header */
.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.content-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.content-count {
    color: #64748b;
    font-size: 14px;
}

.view-controls {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: #3b82f6;
}

.view-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.view-btn svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.match-card,
.channel-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.match-card::before,
.channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover,
.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.match-card:hover::before,
.channel-card:hover::before {
    opacity: 1;
}

.match-card > *,
.channel-card > * {
    position: relative;
    z-index: 1;
}

.match-header,
.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.match-league {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-badges,
.channel-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.live {
    background: #ef4444;
    color: #ffffff;
}

.badge.upcoming {
    background: #f59e0b;
    color: #ffffff;
}

.badge.rating {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 4px;
}

.match-teams {
    text-align: center;
    margin-bottom: 20px;
}

.teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team {
    flex: 1;
    text-align: center;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.match-card:hover .team-name {
    color: #3b82f6;
}

.match-score {
    margin: 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.vs-text {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.match-footer,
.channel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 14px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-item svg {
    width: 16px;
    height: 16px;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.channel-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.channel-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.channel-category {
    color: #64748b;
    font-size: 14px;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding: 64px 0 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 24px 0;
    text-align: center;
    color: #64748b;
}

/* --- UNIFIED BAR TASARIMI --- */
.unified-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 24px 12px 8px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 90%, rgba(0,0,0,0.0) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    border-radius: 0 0 18px 18px;
}
.unified-bar .bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}
.unified-bar .live-badge {
    margin-left: 0;
    margin-right: 8px;
    padding: 4px 10px;
    font-size: 11px;
    display: flex;
    align-items: center;
}
.unified-bar .league {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    margin-right: 4px;
    margin-left: 0;
}
.unified-bar .match-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-right: 8px;
}
.unified-bar .live-badge {
    margin-left: 4px;
    padding: 4px 10px;
    font-size: 11px;
}
.unified-bar .mini-play-btn,
.unified-bar .mini-fullscreen-btn {
    margin: 0 6px;
}
.unified-bar .video-progress-bar {
    width: 120px;
    height: 4px;
    accent-color: #2563eb;
    margin: 0 10px;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    /* display: none; */
    visibility: hidden;
    width: 0;
    padding: 0;
}
@media (max-width: 700px) {
    .unified-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 8px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .search-input {
        width: 240px;
        max-width: calc(100vw - 120px);
    }
    
    .matches-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
    }
    
    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .parallax-background {
        opacity: 0.45;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .content-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
        overflow-x: hidden;
        max-width: 100vw;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 64px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .search-input {
        width: 200px;
        max-width: calc(100vw - 100px);
    }
    
    .match-title {
        font-size: 24px;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .matches-grid,
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .tabs {
        gap: 2px;
        overflow-x: auto;
        max-width: 100%;
    }
    
    .tab {
        padding: 10px 16px;
        font-size: 13px;
        min-width: max-content;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
        padding: 48px 0 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .search-input {
        width: 120px;
        font-size: 12px;
        max-width: calc(100vw - 60px);
        height: 36px;
        padding-left: 36px;
    }
    .search-icon {
        width: 16px;
        height: 16px;
        left: 10px;
    }
    
    .player-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .match-title {
        font-size: 20px;
    }
    
    .match-card,
    .channel-card {
        padding: 12px 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .match-header,
    .channel-header {
        margin-bottom: 12px;
    }
    
    .match-teams {
        margin-bottom: 12px;
    }
    
    .teams-container {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    
    .team-name {
        font-size: 14px;
        word-break: break-word;
    }
    
    .match-score {
        margin: 0 12px;
        font-size: 18px;
    }
    
    .vs-text {
        font-size: 14px;
    }
    
    .match-league {
        font-size: 12px;
        word-break: break-word;
    }
    
    .match-footer,
    .channel-footer {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .footer-item svg {
        width: 14px;
        height: 14px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.player-controls-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}
.mini-play-btn, .mini-fullscreen-btn {
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
}
.mini-play-btn:hover, .mini-fullscreen-btn:hover {
  background: rgba(0,0,0,0.8);
}
.player-overlay {
  /* Ortadaki büyük play sadece ilk seferde görünsün */
  z-index: 30;
}
.video-player {
  position: relative;
}
.mini-play-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.mini-play-btn:hover {
  background: rgba(0,0,0,0.85);
}
.mini-fullscreen-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.mini-fullscreen-btn:hover {
  background: rgba(0,0,0,0.85);
}
.match-overlay-info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: rgba(15,23,42,0.65);
  padding: 14px 22px 14px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.match-league-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}
.match-overlay-info .live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ef4444;
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match-overlay-info .live-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.match-overlay-info .league {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}
.match-overlay-info .match-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .match-overlay-info {
    left: 8px;
    bottom: 8px;
    padding: 8px 12px 8px 10px;
    border-radius: 8px;
  }
  .match-overlay-info .match-title {
    font-size: 15px;
  }
}

/* Hide native video controls */
.video-player video::-webkit-media-controls {
  display: none !important;
}
.video-player video::-webkit-media-controls-enclosure {
  display: none !important;
}
.video-player video::-webkit-media-controls-panel {
  display: none !important;
}
.video-player video::-webkit-media-controls-play-button,
.video-player video::-webkit-media-controls-start-playback-button,
.video-player video::-webkit-media-controls-timeline,
.video-player video::-webkit-media-controls-current-time-display,
.video-player video::-webkit-media-controls-time-remaining-display,
.video-player video::-webkit-media-controls-mute-button,
.video-player video::-webkit-media-controls-volume-slider,
.video-player video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Hide native controls in fullscreen as well */
.video-player video:fullscreen::-webkit-media-controls,
.video-player video:fullscreen::-webkit-media-controls-enclosure,
.video-player video:fullscreen::-webkit-media-controls-panel {
  display: none !important;
}

.video-player video:fullscreen {
  background: #000;
}

/* Hide controls for Firefox */
.video-player video::-moz-media-controls {
  display: none !important;
}

.video-player video::-ms-media-controls {
  display: none !important;
}

.video-player video::-media-controls {
  display: none !important;
}

/* Hide controls for fullscreen in all browsers */
.video-player video:fullscreen::-webkit-media-controls,
.video-player video:fullscreen::-webkit-media-controls-enclosure,
.video-player video:fullscreen::-webkit-media-controls-panel,
.video-player video:fullscreen::-webkit-media-controls-play-button,
.video-player video:fullscreen::-webkit-media-controls-timeline,
.video-player video:fullscreen::-webkit-media-controls-current-time-display,
.video-player video:fullscreen::-webkit-media-controls-time-remaining-display,
.video-player video:fullscreen::-webkit-media-controls-mute-button,
.video-player video:fullscreen::-webkit-media-controls-volume-slider,
.video-player video:fullscreen::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Hide controls for fullscreen in Firefox */
.video-player video:-moz-full-screen::-moz-media-controls {
  display: none !important;
}

/* Hide controls for fullscreen in Edge/IE */
.video-player video:-ms-fullscreen::-ms-media-controls {
  display: none !important;
}

/* Hide controls for fullscreen in standard */
.video-player video:fullscreen::-media-controls {
  display: none !important;
}

/* Show only our custom bar in fullscreen */
.video-player video:fullscreen + #customControls,
.video-player video:-webkit-full-screen + #customControls,
.video-player video:-moz-full-screen + #customControls,
.video-player video:-ms-fullscreen + #customControls {
  display: flex !important;
}

.video-player video:fullscreen ~ .player-overlay,
.video-player video:-webkit-full-screen ~ .player-overlay,
.video-player video:-moz-full-screen ~ .player-overlay,
.video-player video:-ms-fullscreen ~ .player-overlay {
  display: none !important;
}