* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
    color: #e0e0e0;
    background: #05070b;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, #32333f 0, transparent 66.66%);
    z-index: -2;
    pointer-events: none;
}

/* Pageskin - Arka Plan Reklam (link tıklanabilir; içerik z-index:1 ile üstte) */
a.pageskin-link {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    cursor: pointer;
}
.pageskin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    pointer-events: none;
}

/* Header Top */
.header-top {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(229, 60, 51, 0.3);
}

.header-text {
    color: #e0e0e0;
    font-size: 13px;
}

.header-text a {
    color: #e53c33;
    text-decoration: none;
}

.social-area {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-area a {
    color: #e0e0e0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.social-area a:hover {
    color: #e53c33;
}

.social-area svg {
    width: 24px;
    height: 24px;
}

/* Navigation Menu */
.main-nav {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(229, 60, 51, 0.3);
    padding: 15px 0;
    margin-bottom: 1em;
    position: relative;
    z-index: 1000;
}

.container-grid.player-grid > .main-nav {
    grid-column: 1 / -1;
}

.nav-inner {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    position: relative;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.brand img {
    height: 40px;
    width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e53c33;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    display: block;
}

.nav-menu a:hover {
    color: #e53c33;
}

/* Alt menü (dropdown) */
.nav-menu .nav-item-dropdown {
    position: relative;
}

.nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(229, 60, 51, 0.3);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
}

.nav-item-dropdown:hover .nav-submenu {
    display: block;
}

.nav-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-submenu li:last-child {
    border-bottom: none;
}

.nav-submenu a {
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 14px;
}

.search {
    display: flex;
    gap: 10px;
}

.search input {
    padding: 10px 16px;
    border: 1px solid rgba(229, 60, 51, 0.3);
    border-radius: 4px;
    font-size: 14px;
    background: rgba(50, 51, 63, 0.8);
    color: #e0e0e0;
    min-width: 250px;
}

.search input:focus {
    outline: none;
    border-color: #e53c33;
}

.search button {
    padding: 10px 20px;
    background: #e53c33;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search button:hover {
    background: #c53030;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a:hover {
    color: #e53c33;
    background: rgba(229, 60, 51, 0.1);
}

.nav a.blink {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Channel Area */
.channel-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(229, 60, 51, 0.3);
    overflow: hidden;
}

.channel-left,
.channel-right {
    cursor: pointer;
    color: #b0b0b0;
    transition: color 0.3s;
    flex-shrink: 0;
}

.channel-left:hover,
.channel-right:hover {
    color: #e53c33;
}

.channel-left svg,
.channel-right svg {
    width: 24px;
    height: 24px;
}

.channel-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.channel-list::-webkit-scrollbar {
    display: none;
}

.single-channel {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.single-channel:hover {
    transform: scale(1.05);
}

.single-channel img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(50, 51, 63, 0.5);
}

.channel-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(50, 51, 63, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-align: center;
    color: #b0b0b0;
}

/* Container Grid - Player + Match List */
.container-grid.player-grid {
    display: grid;
    grid-template-columns: calc(625px - 0.5em) calc(375px - 0.5em);
    gap: 1em;
    align-items: flex-start;
    max-width: 1020px;
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transition: all 200ms ease;
}

/* Sol Sütun Wrapper: Player + Player Altı İçerik */
.left-column-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sol Sütun: Player Altı İçerik (Paylaş → Açıklama → Maçlar) */
.left-column-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sağ Sütun: TV Kanalları ve Canlı */
.right-column-sidebar {
    display: flex;
    flex-direction: column;
}


/* ========== Player Area (justintv.co tarzı iframe) ========== */
.video-section {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-section .video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 345px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-section .video-player::-webkit-scrollbar,
.video-section .video-player iframe::-webkit-scrollbar {
    display: none;
}

.video-section .video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Eski live-player (embed) ile uyumluluk */
.live-player {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Player container içinde overflow hidden olmalı */
.live-player #player-container {
    overflow: hidden;
}

.videoalani {
    width: 100%;
    position: relative;
}

.player-attributes {
    position: relative;
    width: 100%;
}

/* Channel Description Area (SEO-friendly, always visible) */
.channel-description {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important; /* Google için her zaman görünür */
    visibility: visible !important;
    opacity: 1 !important;
}

.description-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 14px;
}

.description-text h1,
.description-text h2,
.description-text h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.description-text h1 {
    font-size: 24px;
}

.description-text h2 {
    font-size: 20px;
}

.description-text h3 {
    font-size: 18px;
}

.description-text p {
    margin-bottom: 12px;
}

.description-text a {
    color: #4CAF50;
    text-decoration: none;
}

.description-text a:hover {
    text-decoration: underline;
}

.description-text ul,
.description-text ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.description-text li {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .channel-description {
        padding: 15px;
        margin-top: 15px;
    }
    
    .description-text {
        font-size: 13px;
    }
    
    .description-text h1 {
        font-size: 20px;
    }
    
    .description-text h2 {
        font-size: 18px;
    }
    
    .description-text h3 {
        font-size: 16px;
    }
}

.live-video-player {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    background: #000;
}

/* Clappr Player Container */
#player-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 380px !important;
    background: #000;
    z-index: 1;
    border-radius: 6px;
    overflow: visible;
}

/* Player container içinde video için overflow hidden */
#player-container .clappr-container {
    overflow: hidden;
}

/* Clappr'ın tüm video elementlerini görünür yap */
#player-container * {
    box-sizing: border-box;
}

#player-container .clappr-container,
#player-container .clappr-container video,
#player-container .playback,
#player-container .playback video {
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Media control'ler her zaman görünür olmalı - Clappr'ın varsayılan davranışını override et */
#player-container .media-control[data-media-control] {
    z-index: 10000 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    min-height: 50px !important;
}

/* Clappr HTML5 video elementi - yüksekliği kısıtlama */
[data-html5-video] {
    width: 100% !important;
    height: auto !important; /* height verme dedin, orantıyı bozmadan bırakıyoruz */
    max-height: 100%;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Clappr video container */
#player-container video {
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Clappr playback container */
#player-container .playback {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Clappr poster tam ekranı kaplasın */
#player-container .player-poster[data-poster] {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    pointer-events: none !important;
}

/* Video oynatılırken poster ve clickable play tamamen gizlensin */
#player-container .clappr-container.playing .player-poster[data-poster],
#player-container .clappr-container[data-state="playing"] .player-poster[data-poster],
#player-container[data-playing="true"] .player-poster[data-poster],
#player-container[data-playing="true"] .player-poster[data-poster].clickable,
#player-container[data-playing="true"] .player-poster[data-poster] .play-wrapper[data-poster] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Poster içindeki play butonu (oynatılmıyorken) tıklanabilir olmalı */
#player-container .player-poster[data-poster].clickable,
#player-container .player-poster[data-poster] .play-wrapper[data-poster] {
    pointer-events: auto !important;
}

/* Clappr container içindeki tüm elementler tam yükseklik */
#player-container .clappr-container {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    position: relative !important;
}

/* Video oynatıldığında poster gizlenmeli */
#player-container .clappr-container.playing .player-poster[data-poster],
#player-container .clappr-container[data-state="playing"] .player-poster[data-poster] {
    display: none !important;
}

/* Clappr container - position absolute'ı kaldır */
.container[data-container] {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

/* Clappr Player Overrides - Daha iyi görünüm - En spesifik selector */
#player-container .media-control[data-media-control] {
    z-index: 10000 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    min-height: 50px !important;
}

#player-container .media-control-layer {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 10001 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#player-container .media-control .media-control-layer[data-controls] {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

#player-container .media-control-seekbar {
    background: rgba(255, 255, 255, 0.2) !important;
    z-index: 1001 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#player-container .media-control-seekbar .media-control-seekbar-current {
    background: #e53c33 !important;
    z-index: 1002 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#player-container .media-control-button {
    color: #fff !important;
    opacity: 0.9 !important;
    z-index: 1001 !important;
    position: relative !important;
    pointer-events: auto !important;
    visibility: visible !important;
    display: block !important;
}

#player-container .media-control-button:hover {
    opacity: 1;
}

/* Tüm media control elementleri görünür olmalı */
#player-container .media-control * {
    pointer-events: auto !important;
    visibility: visible !important;
}

#player-container .media-control-center,
#player-container .media-control-right,
#player-container .media-control-left {
    z-index: 10002 !important;
    position: relative !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Clappr'ın hideMediaControl davranışını override et */
#player-container .media-control[data-media-control].hide,
#player-container .media-control[data-media-control][style*="display: none"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Preroll Container - Player içinde */
#preroll-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;
    display: none; /* Varsayılan olarak gizli, sadece preroll gösterilirken görünür */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
}

#preroll-container[style*="display: flex"],
#preroll-container[style*="display:block"] {
    display: flex !important;
}

#preroll-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    display: none;
}

#ad-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

#ad-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(0, 0, 0, 0.85);
}

#ad-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}

#ad-countdown {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    padding: 10px 20px;
    font: 14px/1 sans-serif;
    z-index: 1002;
    user-select: none;
}

#skip-ad-btn {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    padding: 10px 20px;
    font: 14px/1 sans-serif;
    cursor: pointer;
    z-index: 1002;
    display: none;
    transition: background 0.2s;
}

#skip-ad-btn:hover {
    background: rgba(50,50,50,0.9);
}

#skip-ad-btn.show {
    display: block;
}

#ad-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: none;
    gap: 10px;
    align-items: center;
    z-index: 1002;
}

#ad-controls.show {
    display: flex;
}

.ad-ctrl-btn {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.ad-ctrl-btn:hover {
    background: rgba(0,0,0,0.9);
}

.ad-ctrl-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

#ad-volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

#ad-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#ad-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#ad-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Top Buttons - Player içinde */
.top-buttons {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 1001;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    align-items: center;
}

.refresh-btn {
    background: rgba(0,0,0,.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 8px 11px;
    cursor: pointer;
    font: 12px/1 sans-serif;
    backdrop-filter: blur(2px);
    height: 33px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.refresh-btn:hover {
    background: rgba(0,0,0,.75);
}

/* Splash Banner - Player içinde */
#splash-banner {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

#splash-banner .close-btn {
    width: 24px;
    height: 24px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: -4px;
    text-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#splash-banner .close-btn:hover {
    background: #cc0000;
    color: #fff;
}

#splash-banner-img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

#splash-banner-link:hover #splash-banner-img {
    transform: scale(1.02);
}

#splash-banner .banner-img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    #splash-banner {
        bottom: 5px;
    }
    
    #splash-banner-img,
    #splash-banner .banner-img {
        max-width: calc(100% - 20px);
        max-height: 50px;
    }
}

/* Player Logo - Player içinde */
#player-logo {
    position: absolute !important;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

#player-logo.player-logo-top-left {
    top: 50px !important;
    left: 50px !important;
}

#player-logo.player-logo-top-right {
    top: 50px !important;
    right: 50px !important;
}

#player-logo.player-logo-bottom-left {
    bottom: 50px !important;
    left: 50px !important;
}

#player-logo.player-logo-bottom-right {
    bottom: 50px !important;
    right: 50px !important;
}

#player-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#player-logo-img {
    width: 180px;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 15vw;
    max-height: 15vh;
    object-fit: contain;
}

/* Fullscreen'de daha büyük */
:fullscreen #player-logo-img,
:-webkit-full-screen #player-logo-img,
:-moz-full-screen #player-logo-img,
:-ms-fullscreen #player-logo-img {
    width: auto;
    max-width: 25vw;
    max-height: 25vh;
    min-width: 200px;
}

@media (max-width: 768px) {
    #player-logo-img {
        width: 100px;
        max-width: 20vw;
        max-height: 15vh;
    }
    
    :fullscreen #player-logo-img,
    :-webkit-full-screen #player-logo-img,
    :-moz-full-screen #player-logo-img,
    :-ms-fullscreen #player-logo-img {
        max-width: 30vw;
        max-height: 20vh;
        min-width: 150px;
    }
    
    .top-buttons {
        top: 10px !important;
        right: 10px !important;
    }
    
    #player-logo.player-logo-top-left {
        top: 50px !important;
        left: 50px !important;
    }
    
    #player-logo.player-logo-top-right {
        top: 50px !important;
        right: 50px !important;
    }
    
    #player-logo.player-logo-bottom-left {
        bottom: 50px !important;
        left: 50px !important;
    }
    
    #player-logo.player-logo-bottom-right {
        bottom: 50px !important;
        right: 50px !important;
    }
    
    #splash-banner {
        bottom: 5px;
    }
}

.reklamalani {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: none;
    z-index: 10;
}

#playerReklam {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gec {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(0, 255, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: none;
    z-index: 11;
}

.gec:hover {
    background: rgba(0, 255, 0, 0.8);
}

#gerisayim {
    position: absolute;
    top: 10px;
    left: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    z-index: 11;
}

/* Odds Container */
.odds-container {
    background: rgba(50, 51, 63, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    border: 1px solid rgba(229, 60, 51, 0.3);
}

.odds-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/img/football-stad.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    border-radius: 8px;
}

.list-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.list-head svg {
    width: 24px;
    height: 24px;
    color: #e53c33;
}

.odds-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.single-odds {
    text-align: center;
    flex-shrink: 0;
}

.single-odds img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-top: 8px;
}

.single-odds div {
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.odds-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-bet {
    display: grid;
    grid-template-columns: 1fr repeat(3, 50px);
    gap: 8px;
    align-items: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    font-size: 12px;
}

.single-bet > div:first-child {
    text-align: left;
    color: #b0b0b0;
}

.single-bet > div:not(:first-child) {
    background: #4AAF4F;
    color: #000;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.single-bet > div:not(:first-child):hover {
    background: #3d8f40;
}

/* Match List Sidebar */
.player-channel-area {
    background: rgba(50, 51, 63, 0.6);
    border-radius: 8px;
    overflow: visible;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.live-list {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.head-grid {
    display: flex;
    border-bottom: 1px solid rgba(229, 60, 51, 0.3);
}

.head-grid > div {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    color: #b0b0b0;
    position: relative;
    transition: all 0.3s;
}

.head-grid > div.active {
    color: #e53c33;
    background: rgba(229, 60, 51, 0.1);
}

.head-grid > div.active .list-blink {
    animation: blink 2s infinite;
}

.list-blink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e53c33;
    display: none;
}

.head-grid > div.active .list-blink {
    display: block;
}

.vertical-line {
    width: 1px;
    background: rgba(229, 60, 51, 0.3);
}

[data-tabbed] {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

[data-tabbed].active {
    display: flex;
    flex-direction: column;
}

.match-search {
    margin-bottom: 15px;
}

.match-search input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(229, 60, 51, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    font-size: 13px;
}

.match-search input:focus {
    outline: none;
    border-color: #e53c33;
}

.live-list-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-tabbed {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 60, 51, 0.2);
}

.list-tabbed > div {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 12px;
    position: relative;
    transition: all 0.3s;
}

.list-tabbed > div:hover,
.list-tabbed > div.active {
    background: rgba(229, 60, 51, 0.2);
    color: #e53c33;
}

.list-tabbed .icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.list-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    line-height: 1;
    color: #fff;
    background: #e53c33;
    font-size: 0.75em;
    white-space: nowrap;
    animation: listblink 1000ms linear infinite;
    padding: 0.5em 0;
    text-align: center;
    border-radius: 4px 4px 0 0;
}

.list-tabbed > div.active .list-count {
    display: block;
}

@keyframes listblink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.list-area {
    flex: 1;
    overflow-y: auto;
}

.real-matches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-match {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.single-match:not(.show) {
    display: none;
}

.single-match:hover,
.single-match.active {
    background: rgba(229, 60, 51, 0.2);
    border-left-color: #e53c33;
    transform: translateX(4px);
}

/* real-matches tek satır: ikon + saat + takımlar */
.single-match-row {
    flex-wrap: nowrap;
}

.single-match-icon {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.single-match-icon-live {
    background: #e53c33;
    box-shadow: 0 0 6px rgba(229, 60, 51, 0.6);
}

.single-match-icon-channel {
    background: #b0b0b0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.single-match-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.single-match-saat {
    flex-shrink: 0;
    min-width: 38px;
    font-size: 12px;
    font-weight: 600;
    color: #b0b0b0;
}

.single-match-teams {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-match-channel-name {
    color: #e0e0e0;
}

.single-match-live-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    color: #e53c33;
    text-transform: uppercase;
}

/* Reklam Alanları */
.ad-container {
    margin: 20px auto;
    text-align: center;
    max-width: 1000px;
}

.ad-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.reklam-3 {
    margin: 20px auto;
    text-align: center;
}

.reklam-3 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(229, 60, 51, 0.3);
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links a {
    text-align: center;
    padding: 12px;
    background: rgba(50, 51, 63, 0.5);
    border-radius: 6px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    background: rgba(229, 60, 51, 0.2);
    color: #e53c33;
}

/* Home ultimate Styles */
.home-ultimate {
    position: relative;
    z-index: 1;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Channel Slider Improvements */
.channel-list {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Match List Improvements */
.list-area {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e53c33 rgba(0, 0, 0, 0.3);
}

.list-area::-webkit-scrollbar {
    width: 6px;
}

.list-area::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.list-area::-webkit-scrollbar-thumb {
    background: #e53c33;
    border-radius: 3px;
}

/* Player Improvements */
.videoalani {
    aspect-ratio: 16/9;
    background: #000;
}

.live-video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */

@media (max-width: 1024px) {
    .container-grid.player-grid {
        grid-template-columns: 1fr;
        gap: 1em;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .player-channel-area {
        order: -1;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .home-ultimate {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container-grid.player-grid {
        grid-template-columns: 1fr;
        gap: 1em;
        margin: 15px auto;
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .left-column-wrapper {
        max-width: 100%;
        overflow-x: hidden;
        min-width: 0;
    }
    
    /* Mobilde player (justintv.co tarzı) */
    .video-section {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .video-section .video-player {
        position: relative;
        width: 100%;
        min-height: 220px;
    }
    
    .live-player {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 56.25vw;
        max-height: 56.25vw;
        overflow: hidden;
    }
    
    .live-player .video-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .live-player #preroll-container,
    .live-player #player-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    #player-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    #player-container .clappr-container,
    #player-container .container[data-container] {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        overflow: hidden !important;
    }
    
    /* Mobilde video player kutusunu doldursun */
    #player-container [data-html5-video] {
        object-fit: contain;
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
    }
    
    /* Mobilde poster tam player kutusuna otursun - Clappr stillerini override et */
    #player-container .container[data-container],
    #player-container .clappr-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        overflow: hidden !important;
    }
    
    #player-container .player-poster[data-poster],
    #player-container .player-poster[data-poster].clickable {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        box-sizing: border-box !important;
    }
    
    #player-container .player-poster[data-poster] .play-wrapper[data-poster] {
        width: 100%;
        height: 25%;
        max-width: 100%;
        max-height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
    }
    
    #player-container .player-poster[data-poster] .play-wrapper[data-poster] svg {
        height: 100%;
        width: auto;
        max-height: 80px;
    }
    
    .player-channel-area {
        order: -1;
        max-height: 400px;
    }
    .main-nav {
        padding: 10px 0;
        margin-bottom: 1em;
        z-index: 1000;
    }
    
    .nav-inner {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(229, 60, 51, 0.3);
        z-index: 1001;
    }
    
    .nav-menu.active {
        max-height: 500px;
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(229, 60, 51, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .nav-item-dropdown .nav-submenu {
        position: static;
        min-width: auto;
        border: none;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 4px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 4px;
    }
    
    .nav-menu.active .nav-item-dropdown .nav-submenu {
        display: block;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .search {
        width: 100%;
    }
    
    .search input {
        flex: 1;
        min-width: auto;
    }
    
    .channel-area {
        padding: 10px;
    }
    
    .single-channel img {
        width: 60px;
        height: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .odds-container {
        padding: 15px;
    }
    
    .single-bet {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .single-bet > div:first-child {
        text-align: center;
    }
    
    .odds-area {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .video-section .video-player {
        min-height: 220px;
    }
}

/* Match List Styles (Ana Sayfa, Kanal, Maç sayfaları için) */
.matches-below-share {
    background: rgba(50, 51, 63, 0.6);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.matches-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.match-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.match-item:hover {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: #e53c33;
}

.match-item:visited {
    color: inherit;
}

/* Tek satır: ikon + saat + takımlar */
.match-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.match-icon {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.match-icon-live {
    background: #e53c33;
    box-shadow: 0 0 6px rgba(229, 60, 51, 0.6);
}

.match-icon-upcoming {
    background: #b0b0b0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.match-item-row .match-saat {
    flex-shrink: 0;
    min-width: 38px;
    font-size: 13px;
    font-weight: 600;
    color: #b0b0b0;
}

.match-item-row .match-takimlar {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-takimlar {
    display: inline;
    font-weight: 600;
    color: #fff;
}

.match-saat {
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .matches-below-share {
        padding: 15px;
    }
    
    .match-item-row {
        gap: 10px;
    }
    
    .match-item-row .match-saat {
        min-width: 34px;
        font-size: 12px;
    }
    
    .match-item-row .match-takimlar {
        font-size: 13px;
    }
}

/* ========== Category Tabs & Matches Section (Premium) ========== */
.controls-section {
    margin-top: 25px;
    background: rgba(20, 21, 26, 0.7);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(40, 41, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.category-tab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.category-tab .tab-text {
    font-size: 12px;
    font-weight: 600;
}

.category-tab:hover {
    background: rgba(50, 51, 63, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

.category-tab.active {
    background: #e53c33;
    border-color: #ff4d42;
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 60, 51, 0.4);
}

.search-container {
    margin-bottom: 25px;
}

#macArama {
    width: 100%;
    padding: 14px 20px;
    background: rgba(10, 11, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

#macArama:focus {
    outline: none;
    border-color: #e53c33;
    box-shadow: 0 0 0 3px rgba(229, 60, 51, 0.15);
}

.matches-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.match-item {
    background: linear-gradient(145deg, rgba(30, 31, 38, 0.9), rgba(20, 21, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    text-decoration: none;
}

.match-item:hover {
    transform: translateX(5px);
    border-color: rgba(229, 60, 51, 0.3);
    background: linear-gradient(145deg, rgba(40, 41, 50, 0.9), rgba(30, 31, 38, 0.9));
}

.match-takimlar {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.canli-badge {
    background: #e53c33;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    animation: pulse-red 2s infinite;
}

.match-alt {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.match-saat {
    font-weight: 700;
    color: #fbbf24;
}

.match-divider {
    opacity: 0.3;
}

.match-lig {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 60, 51, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(229, 60, 51, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 60, 51, 0); }
}


/* --- Premium Match List Styles --- */
#matchesContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-item-premium {
    display: flex;
    align-items: center;
    background: rgba(30, 31, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    gap: 15px;
}

.match-item-premium:hover {
    background: rgba(45, 46, 56, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.match-time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    gap: 4px;
}

.m-time {
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
}

.m-live-pulse {
    font-size: 10px;
    font-weight: 800;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    animation: m-pulse 1.5s infinite;
}

@keyframes m-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.match-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.m-league {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-teams {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-vs {
    font-size: 12px;
    color: #475569;
    font-weight: 400;
}

.match-action-box {
    display: flex;
    align-items: center;
}

.m-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e53c33;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s;
}

.match-item-premium:hover .m-btn {
    background: #f43f5e;
}

.m-btn svg {
    transition: transform 0.2s;
}

.match-item-premium:hover .m-btn svg {
    transform: translateX(3px);
}

/* Search Bar Premium */
.search-container {
    margin-bottom: 20px;
}

#macArama {
    width: 100%;
    background: rgba(30, 31, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#macArama:focus {
    border-color: #e53c33;
    box-shadow: 0 0 0 3px rgba(229, 60, 51, 0.1);
}

/* Mobile Adjustments for Premium matches */
@media (max-width: 600px) {
    .match-item-premium {
        padding: 12px;
        gap: 10px;
    }
    .match-time-box {
        min-width: 60px;
    }
    .m-time {
        font-size: 14px;
    }
    .m-teams {
        font-size: 13px;
    }
    .m-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .m-btn span {
        display: none;
    }
}
