/* Reset and Basic Styling */
/* Zaten :root içerisinde var olanları kaldırıyorum, hata vermesin */

:root {
    --primary-color: #970439; /* Yeni Kurumsal Renk */
    --secondary-color: #2b2b2b; /* Koyu Füme */
    --text-color: #333;
    --bg-color: #f5f5f5;
    --player-bg: #4a5568; /* Görseldeki Koyu Gri/Mavi Tonu */
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding-bottom: 70px; /* Fixed player boşluğu footera taşındı - 70px olarak sabitlendi */
    overflow-x: hidden; /* Sağa sola kaymayı engelle */
    width: 100%;
    
    /* Metin seçimi engeli */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.car-mode-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------------------- */
/* HEADER STYLING                        */
/* ------------------------------------- */
.site-header {
    background-color: transparent; /* Arkaplan saydam (Görseldeki gibi gradient veya beyaz üzerine oturması için) */
    box-shadow: none; /* Gölge tamamen kaldırıldı */
    position: sticky;
    top: 0;
    z-index: 900;
    margin-top: 15px; /* Yukarıdan biraz boşluk eklendi */
}

/* Header - Updated with Flexbox for layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Make sure the logo is absolutely centered on desktop */
@media (min-width: 769px) {
    .header-container {
        position: relative;
    }
    .header-container > div:nth-child(2) { /* Logo container */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ------------------------------------- */
/* MEDIA QUERIES FOR HEADER              */
/* ------------------------------------- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row; /* Her şeyi tek satırda tut */
        padding: 5px 10px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap; /* Asla alt satıra geçme */
        min-height: 60px;
        position: relative;
    }
    
    .weather-widget {
        order: 1;
        flex: 0 0 auto;
        transform: scale(0.95); /* Daha da büyütüldü (0.85 -> 0.95) */
        transform-origin: left center;
        padding: 0px 5px !important; 
        margin-right: auto;
        position: absolute !important; /* Tam sol kenara yapıştır */
        left: 5px;
        z-index: 10;
        max-width: 40%;
    }

    .header-container > div[style*="position: absolute"] {
        /* Mobilde logoyu tam ortala */
        position: absolute !important; 
        left: 50% !important;
        transform: translateX(-50%) !important;
        order: 2;
        z-index: 5;
    }
    
    .header-container > div[style*="position: absolute"] .site-logo-img {
        height: 65px !important; /* Logoyu daha da büyüttük (55'ten 65'e çıktı) */
    }
    
    /* Alt alta alma (480px) kuralını tamamen İPTAL ediyoruz */
    @media (max-width: 480px) {
        .header-container {
            flex-direction: row; /* Tek satırda kal */
            padding-top: 5px;
            padding-bottom: 5px;
            gap: 5px;
        }
        .weather-widget {
            transform: scale(0.80); /* Dar ekranda da büyütüldü (0.60 -> 0.80) */
            margin: 0;
            order: 1;
            width: auto;
            position: absolute !important; /* Dar ekranda da en sola daya */
            left: 2px;
        }
        .header-container > div[style*="position: absolute"] .site-logo-img {
            height: 55px !important; /* 480px altı için 55px */
        }
        .header-container > div[style*="position: absolute"] {
            position: absolute !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            order: 2;
            margin-bottom: 0px;
            width: auto;
        }
    }
    
    /* Mobil Menü Yazısını Gizle, Sadece İkon Kalsın (Yer açmak için) */
    .mobile-menu-btn span {
        display: none;
    }
    .mobile-menu-btn {
        padding: 5px;
        display: flex;
    }
}

.frequency-info {
    justify-self: start;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Preloader (Sayfa Yükleme Ekranı) */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f6fa;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-logo {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none; /* Logo üzerindeki tüm fare etkileşimlerini kapatır */
}

.logo img {
    height: 40px;
    pointer-events: auto; /* Sadece logoya tıklanabilmesini sağlar, efekti engeller */
}

.main-nav {
    justify-self: end;
    padding-right: 0px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px; /* Araları biraz açıldı */
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 800; /* Daha kalın font */
    font-size: 14px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

.main-nav a.active {
    border-bottom: 2px solid var(--primary-color);
    color: #333;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* İkonları kaldırdığımız için bu kısmı yorum satırı yapıyoruz/siliyoruz
.menu-link-icon {
    ...
}
*/

.mobile-nav-brand {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    justify-self: end;
}

.car-mode-launch {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #111, #3a3a3a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1001;
}

.car-mode-launch i {
    font-size: 22px;
}

.car-mode-launch:hover,
.car-mode-launch:focus {
    transform: translateY(-50%) translateX(2px);
    box-shadow: 0 10px 24px rgba(151,4,57,0.28);
    background: linear-gradient(135deg, #970439, #2b2b2b);
}

/* Brand Logo Styling */
.logo-link {
    justify-self: center;
    text-decoration: none;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    user-select: none;
}

.logo-top {
    font-size: 32px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -1px;
}

.logo-top .radyo {
    color: #2b2b2b;
}

.logo-top .m {
    color: #ff3333;
    font-size: 42px;
}

.logo-bottom {
    font-size: 9px;
    color: #ff3333;
    letter-spacing: 4px;
    font-weight: 700;
    margin-top: 2px;
    text-align: center;
    width: 100%;
}

.news-ticker-section {
    background: linear-gradient(90deg, #970439, #6f022a);
    color: #fff;
    overflow: hidden;
    border-top: 2px solid rgba(255,255,255,0.08);
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

.news-ticker-container {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.news-ticker-label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    min-width: 110px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.news-ticker-label span {
    display: inline-block;
    white-space: nowrap;
}

.news-ticker-label.animate-out span {
    animation: tickerLabelOut 0.45s ease forwards;
}

.news-ticker-label.animate-in span {
    animation: tickerLabelIn 0.45s ease forwards;
}

.news-ticker-viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.news-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    min-width: max-content;
    white-space: nowrap;
    animation: newsTicker 72s linear infinite;
}

.news-ticker-item {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.96;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.news-ticker-time {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.5px;
}

.news-ticker-text {
    color: #fff;
}

.news-ticker-item::after {
    content: "•";
    margin-left: 42px;
    color: rgba(255,255,255,0.6);
}

@keyframes newsTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes tickerLabelOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes tickerLabelIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------------- */
/* HERO BANNER OVERLAY (SLIDER ÜSTÜ)     */
/* ------------------------------------- */
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Slider'ın en üst kısmında yer kaplasın */
    background: transparent;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none; /* Tıklamaların altındaki slidera geçmesine izin verir */
}

.hero-banner-inner {
    display: flex;
    justify-content: flex-start; /* Sola yaslamak için güncellendi */
    align-items: center;
    width: 100%;
    margin-top: -80px; /* Görselleri biraz yukarı kaydırmak için */
    padding-left: 5%; /* Ekranın tam kenarına yapışmasın diye biraz boşluk */
}

.hero-right {
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin: 0; /* Ortalamayı kaldır, sola yaslanmasına izin ver */
}

.hero-bracket {
    font-size: 70px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin: 0 25px;
    transition: color 0.3s;
}

.hero-bracket:hover {
    color: #fff;
}

.hero-text-slider {
    height: 180px;
    width: 450px;
    display: flex;
    align-items: center;
    line-height: normal;
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 18px;
    gap: 6px;
    line-height: 1.15;
    text-align: center;
}

.r-text-1,
.r-text-2,
.r-text-3 {
    display: block;
    width: 100%;
    line-height: 1.1;
    text-align: center;
}

.r-text-1 { font-size: 24px; text-transform: uppercase; letter-spacing: 1px; }
.r-text-2 { font-size: 46px; text-transform: uppercase; margin: 0; }
.r-text-3 { font-size: 22px; text-transform: uppercase; letter-spacing: 2px; }

.mobile-hero-ads-container {
    display: none;
}

@media (max-width: 768px) {
    .news-ticker-container {
        gap: 12px;
        min-height: 42px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .news-ticker-label {
        font-size: 11px;
        min-width: 92px;
    }

    .news-ticker-track {
        gap: 26px;
        animation-duration: 54s;
    }

    .news-ticker-item {
        font-size: 13px;
    }

    .news-ticker-item::after {
        margin-left: 26px;
    }

    .slider-section {
        background: #05070d;
    }

    .main-slider {
        height: 240px;
        border-radius: 0;
    }

    .main-slider > .swiper-wrapper > .swiper-slide {
        width: 85%;
        border-radius: 8px;
    }

    .main-slider.has-3d > .swiper-wrapper > .swiper-slide {
        width: 100%;
    }

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev,
    .slide-overlay {
        display: none !important;
    }

    .hero-banner-overlay {
        align-items: flex-end;
        padding: 0 12px 14px;
    }

    .hero-banner-inner {
        flex-direction: column;
        justify-content: flex-end !important;
        align-items: center;
        gap: 0;
        margin-top: 0;
        padding: 0;
    }

    .hero-right {
        margin-right: 0;
        justify-content: center !important;
        width: 100%;
        height: auto;
        padding: 0;
        text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    }

    .hero-bracket { display: none; }
    
    /* Mobil Slider Metinleri */
    .hero-text-slider {
        width: 100%;
        height: auto;
        min-height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-right-content {
        max-width: 100%;
        padding: 10px 14px;
        gap: 4px;
        background: transparent !important;
        backdrop-filter: none;
        text-align: center;
    }

    .r-text-1 { font-size: 18px; letter-spacing: 1px; }
    .r-text-2 { font-size: 38px; line-height: 1.1; text-align: center; font-weight: 900; }
    .r-text-3 { font-size: 16px; letter-spacing: 1.5px; }
    
    /* Mobil Sağ Reklam Slider'ı - İptal, Alta Alındı */
    .hero-ads { display: none !important; }

    /* Mobilde Slider Altındaki Reklam Alanı */
    .mobile-hero-ads-container {
        display: block;
        width: 100%;
        background: #05070d;
        padding: 0 10px; /* Kenarlardan çok hafif boşluk */
        margin: 15px 0 0 0; /* Slider ile arasında boşluk (yukarıdan) */
        line-height: 0;
        box-sizing: border-box;
    }

    .slider-attached-ticker {
        margin-top: 0;
        margin-bottom: 24px;
    }
    
    .hero-ad-slider-mobile {
        width: 100% !important;
        height: auto !important;
        margin: 0 0 24px 0 !important;
        background: #05070d;
        border-radius: 8px;
        overflow: hidden;
    }

    .hero-ad-slider-mobile .swiper-wrapper,
    .hero-ad-slider-mobile .swiper-slide,
    .hero-ad-slider-mobile a {
        background: #05070d;
    }
    
    .hero-ad-slider-mobile img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
}

/* ------------------------------------- */
/* MAIN SLIDER STYLING                   */
/* ------------------------------------- */
.slider-section {
    margin-bottom: 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.slider-attached-ticker {
    position: absolute;
    bottom: 0; /* Sliderın tam alt kenarı ile bitişik olması için 0 yapıldı */
    left: 0;
    width: 100%;
    z-index: 100;
    margin: 0;
    border: none;
    background: rgba(151, 4, 57, 0.85);
    backdrop-filter: blur(5px);
}

.slider-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #970439, #ff1a66, #970439, #ff1a66, #970439); /* Bordo parlak geçiş */
    box-shadow: 0 0 15px 3px rgba(151, 4, 57, 0.7); /* Bordo parlama efekti */
    background-size: 200% auto;
    animation: glowAnimation 3s linear infinite;
    z-index: 100;
}

@keyframes glowAnimation {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.main-slider {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0 !important;
    background: transparent;
    line-height: 0;
}

.main-slider > .swiper-wrapper,
.main-slider > .swiper-wrapper > .swiper-slide {
    height: 100%;
    background: transparent;
    line-height: 0;
}

.main-slider > .swiper-wrapper > .swiper-slide {
    width: 75%; /* Coverflow için dar */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: transparent;
    min-height: 400px;
}

.main-slider.has-3d > .swiper-wrapper > .swiper-slide {
    width: 100%; /* 3D varsa tam ekran kullan */
}

.main-slider .swiper-pagination {
    bottom: 12px !important;
}

.main-slider > .swiper-wrapper > .swiper-slide > img {
    display: block;
}

.hero-text-slider,
.hero-text-slider .swiper-wrapper,
.hero-text-slider .swiper-slide,
.hero-right-content {
    background: transparent !important;
    line-height: normal !important;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: center;
}

.slide-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-overlay p {
    font-size: 18px;
    color: #ddd;
}

.swiper-button-next, .swiper-button-prev {
    color: #ff3333 !important;
}

.swiper-pagination-bullet-active {
    background: #ff3333 !important;
}

/* ------------------------------------- */
/* CONTENT SECTION STYLING               */
/* ------------------------------------- */
.content-section {
    margin-bottom: 60px;
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 8px;
}

.top-lists-container {
    display: flex;
    gap: 30px;
}

.top-lists-container.is-single {
    display: block;
}

.top-lists-container.is-single .top-20-section,
.top-lists-container.is-single .today-schedule-section {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
}

.top-20-section {
    flex: 2;
}

.listen-request-screen {
    margin-bottom: 28px;
}

.listen-only-page {
    min-height: calc(100vh - 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

.listen-only-shell {
    width: 100%;
    min-height: calc(100vh - 360px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.listen-request-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 360px;
    padding: 32px 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top, rgba(151, 4, 57, 0.18), transparent 42%),
        linear-gradient(160deg, #151923 0%, #0a0d14 100%);
    border: 1px solid rgba(151, 4, 57, 0.18);
    box-shadow: 0 18px 42px rgba(0,0,0,0.16);
    text-align: center;
}

.listen-request-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.listen-request-card h3 {
    margin: 0;
    color: #fff;
    font-size: 32px;
}

.listen-request-card p {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.7;
}

.listen-request-mic-btn {
    width: 156px;
    height: 156px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 38%),
        linear-gradient(180deg, #b70849 0%, #76012d 100%);
    box-shadow:
        0 0 0 16px rgba(151, 4, 57, 0.08),
        0 22px 48px rgba(111, 2, 42, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listen-request-mic-btn:hover,
.listen-request-mic-btn:focus {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 0 18px rgba(151, 4, 57, 0.1),
        0 28px 54px rgba(111, 2, 42, 0.46);
}

.listen-request-mic-btn i {
    font-size: 68px;
}

.listen-request-note {
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.voice-request-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 6, 14, 0.76);
    backdrop-filter: blur(10px);
    z-index: 12050;
}

.voice-request-modal.is-open {
    display: flex;
}

.voice-request-dialog {
    position: relative;
    width: min(100%, 620px);
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(151, 4, 57, 0.22), transparent 40%),
        linear-gradient(170deg, #161b26 0%, #0d1017 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* İletişim Formu (Contact Modal) Özel Cam Efekti ve Kurumsal Renk */
#contact-modal .voice-request-dialog {
    background: rgba(151, 4, 57, 0.85); /* Kurumsal renk (#970439) ve saydamlık */
    backdrop-filter: blur(15px); /* Cam efekti */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 15px rgba(255,255,255,0.1);
}

#contact-modal .voice-request-input {
    background: rgba(255,255,255,0.15); /* Girdiler için cam efekti uyumu */
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

#contact-modal .voice-request-input::placeholder {
    color: rgba(255,255,255,0.8);
}

#contact-modal .voice-request-action.primary {
    background: #fff;
    color: #970439; /* Zıtlık için butonu beyaz, yazıyı kurumsal renk yaptık */
    font-weight: 800;
}

#contact-modal .voice-request-action.secondary {
    background: rgba(0,0,0,0.3);
    color: #fff;
}

.voice-request-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
}

.voice-request-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.voice-request-dialog h3 {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 30px;
}

.voice-request-copy {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.7;
}

.voice-request-form {
    display: grid;
    gap: 12px;
}

.voice-request-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.voice-request-input::placeholder {
    color: rgba(255,255,255,0.48);
}

.voice-request-textarea {
    min-height: 90px;
    resize: vertical;
}

.voice-request-recorder {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.voice-request-mic-btn {
    width: 96px;
    height: 96px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #c00f54 0%, #7f032f 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 0 12px rgba(151,4,57,0.12), 0 22px 42px rgba(111, 2, 42, 0.34);
}

.voice-request-mic-btn.is-recording {
    animation: voiceRequestPulse 1.2s ease-in-out infinite;
}

.voice-request-mic-btn i {
    font-size: 40px;
}

.voice-request-recorder-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.voice-request-recorder-meta strong {
    font-size: 38px;
    line-height: 1;
}

.voice-request-recorder-meta span {
    color: rgba(255,255,255,0.74);
    font-size: 14px;
    line-height: 1.6;
}

.voice-request-bars {
    margin-top: 18px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.voice-request-bar {
    width: 5px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.4));
    transform-origin: center bottom;
    transform: scaleY(0.12);
    opacity: 0.3;
}

.voice-request-actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.voice-request-action {
    min-width: 138px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.voice-request-action.primary {
    background: linear-gradient(135deg, #b70849, #6f022a);
    color: #fff;
}

.voice-request-action.secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.voice-request-action:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@keyframes voiceRequestPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(151,4,57,0.12), 0 22px 42px rgba(111, 2, 42, 0.34);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 18px rgba(151,4,57,0.18), 0 28px 48px rgba(111, 2, 42, 0.46);
    }
}

.today-schedule-section {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.section-title {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title.dark-title::after {
    background-color: #2b2b2b;
}

.view-all-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.view-all-link i {
    margin-left: 5px;
    font-size: 18px;
}

.view-all-link:hover {
    color: #ff3333;
}

/* En İyi 20 Grid */
.top-20-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.top-20-item {
    background: linear-gradient(135deg, #4c1a57, #24104f); /* Görseldeki mor degrade arka plan */
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.rank-badge {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 2;
}

.top-20-item .song-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.top-20-item .song-info {
    flex: 1;
    color: #fff;
    overflow: hidden; /* Taşmayı gizlemek için eklendi */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.top-20-item .song-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    display: inline-block;
}

.top-20-item .song-info p {
    font-size: 13px;
    color: #ddd;
    display: inline-block;
}

/* Şarkı isimlerinin kayması (Marquee Efekti) */
.marquee-text.scroll-text {
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(10%); }
    100% { transform: translateX(-100%); }
}

.top-20-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.listen-btn {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 4px 12px 4px 4px; /* Sol boşluk icon için az */
    font-size: 13px;
    font-weight: 800;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.play-icon-circle {
    background: #4c1a57;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.listen-btn:hover {
    transform: scale(1.05);
}

.vote-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.vote-btn i {
    color: #ff3333;
}

.vote-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Radyo 7'de Bugün List */
.schedule-list {
    list-style: none;
    padding: 0;
}

.schedule-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #fcfcfc;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.schedule-list li.active-program {
    transform: scale(1.02);
}

.schedule-list li:hover {
    background-color: #f1f1f1;
}

.schedule-list li:last-child {
    margin-bottom: 0;
}

.schedule-list .time {
    font-size: 16px;
    font-weight: 700;
    color: #ff3333;
    width: 50px;
}

.schedule-list li:nth-child(3) .time,
.schedule-list li:nth-child(4) .time {
    color: #ff3333; 
}

.schedule-list .dj-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 15px;
}

.schedule-list .program-info h4 {
    font-size: 15px;
    color: #2b2b2b;
    margin-bottom: 2px;
}

.schedule-list .program-info h4.green-text {
    color: #2b2b2b;
}

.schedule-list .program-info p {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* ------------------------------------- */
/* FOOTER STYLING                        */
/* ------------------------------------- */
.site-footer {
    background-color: #111;
    color: #fff;
}

.footer-top-bar {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-main {
    padding: 40px 0 0 0;
    overflow: hidden;
}

.footer-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.footer-app-promo {
    flex: 1;
    padding: 0 40px;
}

.footer-app-promo h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-app-promo h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}

.store-btn i {
    font-size: 28px;
    margin-right: 10px;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn span {
    font-size: 10px;
    text-transform: none;
}

.store-btn strong {
    font-size: 14px;
}

.store-btn:hover {
    background: #222;
    border-color: #888;
}

.footer-right-img {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
}

.footer-right-img img {
    height: 250px;
    margin-bottom: -10px;
}

.footer-bottom {
    background-color: #0a0a0a;
    text-align: center;
    padding: 15px 0 85px 0; /* Player yüksekliği kadar alttan siyahlık bırak */
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-bottom: 96px;
    }
}

@media (max-width: 768px) {
    .footer-main-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-app-promo {
        padding: 0;
    }
    .store-buttons {
        justify-content: center;
    }
    .footer-right-img img {
        height: 180px;
    }
}

.hidden {
    display: none !important;
}

.car-mode-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(151,4,57,0.28), transparent 35%),
        linear-gradient(180deg, rgba(18,18,18,0.98), rgba(8,8,8,0.98));
    z-index: 20000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.car-mode-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.car-mode-shell {
    width: min(100%, 1360px);
    min-height: calc(100vh - 20px);
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 34px;
    padding: clamp(18px, 2vw, 30px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 85%, rgba(61,122,255,0.16), transparent 26%),
        radial-gradient(circle at 84% 12%, rgba(151,4,57,0.22), transparent 24%),
        linear-gradient(145deg, rgba(31,31,36,0.98), rgba(13,13,16,0.99));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 26px 90px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.05);
}

.car-mode-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), transparent 28%, transparent 72%, rgba(151,4,57,0.10)),
        linear-gradient(180deg, rgba(255,255,255,0.03), transparent 25%);
    pointer-events: none;
}

.car-mode-ambient {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.45;
    pointer-events: none;
}

.car-mode-ambient-left {
    left: -120px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(66,145,255,0.55), rgba(66,145,255,0));
}

.car-mode-ambient-right {
    right: -90px;
    top: -80px;
    background: radial-gradient(circle, rgba(151,4,57,0.75), rgba(151,4,57,0));
}

.car-mode-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.car-mode-close i {
    font-size: 28px;
}

.car-mode-close:hover,
.car-mode-close:focus {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

.car-mode-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 62px;
}

.car-mode-top-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.car-mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.9px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.car-mode-badge i {
    font-size: 22px;
}

.car-mode-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.car-mode-install-btn {
    border: 1px solid rgba(77,181,255,0.22);
    border-radius: 999px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(26, 64, 123, 0.92), rgba(17, 33, 66, 0.92));
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.9px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 30px rgba(8, 22, 54, 0.28);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.car-mode-install-btn i {
    font-size: 18px;
}

.car-mode-install-btn:hover,
.car-mode-install-btn:focus {
    border-color: rgba(143,216,255,0.36);
    background: linear-gradient(180deg, rgba(37, 88, 168, 0.96), rgba(20, 43, 83, 0.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 30px rgba(9, 33, 78, 0.34);
}

.car-mode-rating-label,
.car-mode-rating-value {
    color: rgba(255,255,255,0.84);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.car-mode-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.car-mode-rating-star {
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.04);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.car-mode-rating-star i {
    font-size: 18px;
}

.car-mode-rating-star:hover,
.car-mode-rating-star:focus,
.car-mode-rating-star.is-active {
    color: #ffd76a;
    background: rgba(255,215,106,0.14);
    box-shadow: 0 8px 18px rgba(255,215,106,0.16);
    transform: translateY(-1px) scale(1.03);
}

.car-mode-content {
    position: relative;
    z-index: 1;
    min-height: calc(100% - 58px);
    height: calc(100% - 58px);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

.car-mode-panel {
    position: relative;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        linear-gradient(145deg, rgba(30,30,36,0.78), rgba(18,18,22,0.72));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 44px rgba(0,0,0,0.26);
    backdrop-filter: blur(18px);
}

.car-mode-dashboard {
    width: min(320px, 28vw);
    min-width: 280px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.car-mode-dashboard-grid {
    display: grid;
    gap: 14px;
}

.car-mode-info-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.07);
    padding: 18px 18px 16px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.car-mode-surface-card {
    cursor: pointer;
    appearance: none;
    text-align: left;
    width: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.car-mode-surface-card:hover,
.car-mode-surface-card:focus {
    transform: translateY(-2px);
    border-color: rgba(120, 190, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 30px rgba(17, 57, 130, 0.18);
}

.car-mode-clock-card {
    cursor: pointer;
    appearance: none;
    width: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.car-mode-clock-card:hover,
.car-mode-clock-card:focus {
    transform: translateY(-2px);
    border-color: rgba(151, 4, 57, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 30px rgba(151, 4, 57, 0.14);
}

.car-mode-card-label {
    color: rgba(255,255,255,0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.car-mode-info-card strong {
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.car-mode-info-card span {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

.car-mode-clock-card strong,
.car-mode-status-card strong {
    font-size: 30px;
}

.car-mode-clock-time {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #ffffff;
}

.car-mode-speedometer {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-mode-speedometer::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
}

.car-mode-speedometer-arc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(from 225deg, rgba(255,255,255,0.06) 0deg, rgba(255,255,255,0.06) 40deg, rgba(78,170,255,0.85) 120deg, rgba(151,4,57,0.95) 210deg, rgba(255,255,255,0.08) 270deg, rgba(255,255,255,0.06) 360deg);
    -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%);
    mask: radial-gradient(circle, transparent 58%, #000 59%);
    opacity: 0.95;
}

.car-mode-speedometer-needle {
    position: absolute;
    width: 92px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), #fff 30%, #ff5a93 100%);
    transform-origin: 14px 50%;
    transform: rotate(-45deg);
    transition: transform 0.45s ease;
    box-shadow: 0 0 14px rgba(255,255,255,0.3);
}

.car-mode-speedometer-needle::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,0.5);
}

.car-mode-speedometer-center {
    position: relative;
    z-index: 1;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(255,255,255,0.12), rgba(20,20,20,0.94));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 28px rgba(0,0,0,0.22);
    color: #fff;
}

.car-mode-speedometer-center strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
}

.car-mode-speedometer-center span:last-child {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.72);
}

.car-mode-main-panel {
    flex: 1;
    padding: 22px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 14px;
    overflow: hidden;
    min-height: 0;
}

.car-mode-main-panel::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.car-mode-ad-stage {
    width: min(100%, 980px);
    max-width: 100%;
    margin: 0 auto;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.car-mode-ad-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 48px rgba(0,0,0,0.28);
    pointer-events: none;
}

.car-mode-ad-logo {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 72px;
    height: 72px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(12, 14, 18, 0.76);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 24px rgba(0,0,0,0.24);
    backdrop-filter: blur(8px);
}

.car-mode-ad-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: #fff;
    padding: 4px;
}

.car-mode-ad-slider,
.car-mode-ad-slider .swiper-wrapper,
.car-mode-ad-slide {
    width: 100%;
    height: 100%;
}

.car-mode-ad-slider {
    overflow: hidden;
    margin: 0 auto;
    pointer-events: none;
}

.car-mode-ad-slider .swiper-wrapper {
    align-items: stretch;
}

.car-mode-ad-slide {
    position: relative;
    background: #0f1117;
    width: 100% !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
}

.car-mode-ad-media {
    display: block;
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    pointer-events: none;
    min-width: 0;
    padding: 0 92px;
    box-sizing: border-box;
}

.car-mode-ad-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #0f1117;
}

.car-mode-side-actions {
    width: 82px;
    max-width: 82px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 16px;
    bottom: 16px;
    transform: none;
    z-index: 4;
    pointer-events: auto;
    box-sizing: border-box;
}

.car-mode-side-actions-left {
    left: 12px;
    padding-top: 48px;
}

.car-mode-side-actions-right {
    right: 12px;
    align-items: stretch;
}

.car-mode-side-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 58px;
    padding: 8px 6px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(23, 29, 42, 0.96), rgba(14, 18, 29, 0.9));
    border: 1px solid rgba(143,216,255,0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 34px rgba(0,0,0,0.26);
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    backdrop-filter: blur(14px);
}

.car-mode-side-action:hover,
.car-mode-side-action:focus {
    border-color: rgba(77,181,255,0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 34px rgba(18, 48, 102, 0.32);
    background: linear-gradient(180deg, rgba(35, 68, 116, 0.92), rgba(14, 18, 29, 0.94));
}

.car-mode-side-action i {
    font-size: 22px;
    color: #8fd8ff;
}

.car-mode-side-letter {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(143,216,255,0.14);
    color: #8fd8ff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.car-mode-side-action span {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.4px;
}

.car-mode-ad-badge {
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 6;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(151, 4, 57, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 24px rgba(151, 4, 57, 0.28);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.car-mode-ad-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12,14,18,0.18), rgba(12,14,18,0.72));
    color: #fff;
}

.car-mode-ad-caption strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.car-mode-ad-caption span {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

.car-mode-ad-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.car-mode-meta {
    width: min(100%, 840px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "kicker kicker"
        "audio logo";
    align-items: center;
    column-gap: 24px;
    row-gap: 12px;
    margin: 0 auto;
    flex: 0 0 auto;
    gap: 0;
    position: relative;
    z-index: 3;
}

.car-mode-brand-logo {
    grid-area: logo;
    width: 84px;
    height: 84px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 30px rgba(0,0,0,0.24);
}

.car-mode-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    background: #fff;
    padding: 5px;
}

.car-mode-visual {
    position: relative;
    width: 246px;
    height: 246px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-mode-album-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,255,255,0.12), rgba(151,4,57,0.55), rgba(255,255,255,0.12));
    animation: carModeGlowSpin 10s linear infinite;
    filter: blur(0.3px);
}

.car-mode-art {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0,0,0,0.42), 0 0 34px rgba(151,4,57,0.24);
    border: 5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

.car-mode-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-mode-kicker {
    grid-area: kicker;
    width: min(100%, 500px);
    display: flex;
    overflow: hidden;
    gap: 40px;
    padding: 10px 0;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.car-mode-kicker span {
    flex: 0 0 auto;
    animation: carModeTicker 14s linear infinite;
}

@keyframes carModeTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 40px));
    }
}

.car-mode-meta h2 {
    color: #fff;
    font-size: clamp(36px, 4.6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    margin-top: 12px;
    letter-spacing: -1px;
}

.car-mode-meta p {
    color: rgba(255,255,255,0.82);
    font-size: clamp(19px, 2vw, 26px);
    margin-top: 8px;
}

.car-mode-audio-reactive {
    grid-area: audio;
    position: relative;
    width: 100%;
    margin-top: 0;
    min-height: 126px;
    padding: 10px 14px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(14, 24, 42, 0.88), rgba(8, 12, 22, 0.72)),
        radial-gradient(circle at 50% 50%, rgba(77,181,255,0.16), transparent 62%);
    border: 1px solid rgba(77,181,255,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 30px rgba(0,0,0,0.18);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x;
}

.car-mode-audio-watermark {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -38%);
    width: min(42%, 220px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    filter: drop-shadow(0 0 18px rgba(77,181,255,0.12));
}

.car-mode-audio-watermark img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.car-mode-audio-reactive::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: calc(var(--car-volume-level, 100) * 1%);
    height: 100%;
    background: linear-gradient(90deg, rgba(77,181,255,0.16), rgba(31,98,255,0.06));
    pointer-events: none;
    z-index: 0;
}

.car-mode-audio-reactive:focus {
    outline: none;
    border-color: rgba(77,181,255,0.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 0 1px rgba(77,181,255,0.22), 0 16px 30px rgba(0,0,0,0.18);
}

.car-mode-audio-hint {
    position: absolute;
    top: 10px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

.car-mode-audio-hint strong {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.car-mode-reactive-bars {
    position: relative;
    height: 104px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 18px 4px 0;
    z-index: 1;
}

.car-mode-reactive-bars::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77,181,255,0.28), transparent);
}

.car-mode-reactive-bar {
    width: 5px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #99ebff 0%, #4db5ff 38%, #1f62ff 100%);
    box-shadow: 0 0 12px rgba(77,181,255,0.42), 0 0 22px rgba(31,98,255,0.28);
    transform-origin: bottom center;
    transform: scaleY(0.25);
    transition: transform 0.05s linear, opacity 0.05s linear, box-shadow 0.08s linear;
    opacity: 0.34;
}

.car-mode-reactive-bars.is-playing .car-mode-reactive-bar {
    animation: none;
    opacity: 1;
}

.car-mode-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 10px 14px;
    margin-top: auto;
    width: min(100%, 840px);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 4;
    overflow: visible;
}

@media (min-width: 1100px) and (min-aspect-ratio: 16/9) {
    .car-mode-content {
        display: grid;
        grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
        gap: 22px;
    }

    .car-mode-dashboard {
        width: auto;
        min-width: 0;
        height: 100%;
    }

    .car-mode-main-panel {
        height: 100%;
        justify-content: space-between;
    }

    .car-mode-ad-frame {
        width: 100%;
        max-width: 100%;
        max-height: min(100%, 420px);
        border-radius: 30px;
    }

    .car-mode-controls {
        padding: 10px 14px;
        gap: 12px;
    }
}

@media (max-height: 820px) and (min-width: 980px) {
    .car-mode-shell {
        padding: 18px 22px;
    }

    .car-mode-top {
        margin-bottom: 14px;
    }

    .car-mode-dashboard {
        padding: 16px;
        gap: 14px;
    }

    .car-mode-info-card {
        padding: 16px 16px 14px;
    }

    .car-mode-clock-card strong,
    .car-mode-status-card strong {
        font-size: 26px;
    }

    .car-mode-speedometer {
        max-width: 210px;
    }

    .car-mode-speedometer-center {
        width: 128px;
        height: 128px;
    }

    .car-mode-speedometer-center strong {
        font-size: 34px;
    }

    .car-mode-ad-frame {
        width: 100%;
        max-width: 100%;
        min-height: 180px;
        max-height: min(100%, 300px);
    }

    .car-mode-ad-slide {
        padding: 10px 8px;
    }

    .car-mode-ad-media {
        padding: 0 78px;
    }

    .car-mode-side-actions {
        width: 60px;
        max-width: 60px;
        gap: 6px;
        top: 12px;
        bottom: 12px;
    }

    .car-mode-side-action {
        min-height: 50px;
        padding: 7px 4px;
        border-radius: 16px;
    }

    .car-mode-side-action i {
        font-size: 18px;
    }

    .car-mode-side-action span {
        font-size: 8px;
    }


    .car-mode-brand-logo {
        width: 72px;
        height: 72px;
    }

    .car-mode-audio-reactive {
        min-height: 96px;
        padding: 8px 10px 6px;
    }

    .car-mode-audio-watermark {
        width: min(38%, 170px);
        transform: translate(-50%, -34%);
    }

    .car-mode-audio-hint {
        top: 8px;
        left: 10px;
        right: 10px;
    }

    .car-mode-reactive-bars {
        height: 76px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .car-mode-overlay {
        padding: 12px;
    }

    .car-mode-shell {
        width: min(100%, 860px);
        min-height: calc(100vh - 24px);
        height: calc(100vh - 24px);
        max-height: calc(100vh - 24px);
        padding: 20px 20px 22px;
        border-radius: 34px;
    }

    .car-mode-top {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 16px;
        padding-right: 62px;
    }

    .car-mode-top-actions {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .car-mode-badge,
    .car-mode-install-btn,
    .car-mode-rating {
        min-height: 46px;
    }

    .car-mode-install-btn,
    .car-mode-rating {
        border-radius: 22px;
    }

    .car-mode-rating {
        flex: 1 1 auto;
        justify-content: center;
        padding: 10px 12px;
    }

    .car-mode-rating-stars {
        gap: 4px;
    }

    .car-mode-rating-star {
        width: 30px;
        height: 30px;
    }

    .car-mode-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        gap: 16px;
        min-height: calc(100% - 68px);
        height: calc(100% - 68px);
        overflow: hidden;
    }

    .car-mode-dashboard {
        width: 100%;
        min-width: 0;
        padding: 18px;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) 220px;
        align-items: stretch;
        gap: 16px;
        min-height: 0;
        overflow: hidden;
    }

    .car-mode-dashboard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        min-height: 0;
        max-height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 6px;
        align-content: start;
        scrollbar-width: thin;
        scrollbar-color: rgba(77,181,255,0.45) transparent;
    }

    .car-mode-dashboard-grid::-webkit-scrollbar {
        width: 6px;
    }

    .car-mode-dashboard-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .car-mode-dashboard-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(77,181,255,0.72), rgba(31,98,255,0.42));
        border-radius: 999px;
    }

    .car-mode-info-card {
        min-height: 128px;
        padding: 16px 16px 14px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(86, 165, 255, 0.18), rgba(36, 86, 158, 0.16)),
            linear-gradient(145deg, rgba(18, 40, 78, 0.98), rgba(9, 19, 40, 0.98));
        border: 1px solid rgba(104, 191, 255, 0.2);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.08),
            0 14px 28px rgba(8, 26, 58, 0.34),
            0 0 0 1px rgba(77,181,255,0.06);
    }

    .car-mode-clock-card strong,
    .car-mode-status-card strong {
        font-size: 26px;
    }

    .car-mode-clock-time {
        font-size: 24px;
    }

    .car-mode-speedometer {
        max-width: 220px;
        align-self: center;
    }

    .car-mode-speedometer-center {
        width: 132px;
        height: 132px;
    }

    .car-mode-speedometer-center strong {
        font-size: 34px;
    }

    .car-mode-main-panel {
        padding: 20px 18px 18px;
        gap: 14px;
        min-height: 0;
    }

    .car-mode-ad-stage {
        width: min(100%, 100%);
        max-width: 100%;
        flex: 0 0 auto;
        min-height: 0;
    }

    .car-mode-ad-frame {
        min-height: clamp(300px, 38vh, 420px);
        height: clamp(300px, 38vh, 420px);
        max-height: 42vh;
        border-radius: 28px;
    }

    .car-mode-ad-slide {
        padding: 12px 10px;
    }

    .car-mode-ad-media {
        padding: 0 86px;
    }

    .car-mode-side-actions {
        width: 70px;
        max-width: 70px;
        top: 12px;
        bottom: 12px;
        gap: 6px;
    }

    .car-mode-side-actions-left {
        left: 10px;
        padding-top: 52px;
    }

    .car-mode-side-actions-right {
        right: 10px;
    }

    .car-mode-side-action {
        min-height: 54px;
        padding: 7px 4px;
        border-radius: 18px;
        gap: 4px;
    }

    .car-mode-side-action i {
        font-size: 18px;
    }

    .car-mode-side-letter {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }

    .car-mode-side-action span {
        font-size: 8px;
        line-height: 1.1;
    }

    .car-mode-ad-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .car-mode-ad-caption strong {
        font-size: 15px;
    }

    .car-mode-ad-caption span {
        font-size: 12px;
    }

    .car-mode-meta {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) 72px;
        column-gap: 14px;
        row-gap: 10px;
    }

    .car-mode-brand-logo {
        width: 72px;
        height: 72px;
        border-radius: 24px;
    }

    .car-mode-audio-reactive {
        min-height: 124px;
        padding: 10px 12px 8px;
        border-radius: 24px;
    }

    .car-mode-audio-watermark {
        width: min(34%, 190px);
        transform: translate(-50%, -36%);
    }

    .car-mode-audio-hint {
        top: 10px;
        left: 12px;
        right: 12px;
    }

    .car-mode-reactive-bars {
        height: 106px;
        gap: 2px;
        padding-top: 20px;
    }

    .car-mode-reactive-bar {
        width: 4px;
    }

    .car-mode-surface-card:hover,
    .car-mode-surface-card:focus,
    .car-mode-clock-card:hover,
    .car-mode-clock-card:focus {
        transform: none;
        border-color: rgba(132, 205, 255, 0.34);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.08),
            0 18px 34px rgba(10, 38, 87, 0.38),
            0 0 0 1px rgba(77,181,255,0.14);
        background:
            linear-gradient(180deg, rgba(104, 191, 255, 0.22), rgba(46, 102, 181, 0.18)),
            linear-gradient(145deg, rgba(20, 47, 92, 0.98), rgba(10, 21, 45, 0.98));
    }

    .car-mode-card-label {
        color: rgba(186, 224, 255, 0.8);
    }

    .car-mode-info-card span {
        color: rgba(224, 241, 255, 0.84);
    }


    .car-mode-controls {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 24px;
    }

    .car-mode-secondary {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .car-mode-secondary i {
        font-size: 28px;
    }

    .car-mode-sound-toggle {
        min-width: 120px;
        padding: 0 14px;
    }

    .car-mode-play {
        width: 88px;
        height: 88px;
        border-radius: 28px;
    }

    .car-mode-play i {
        font-size: 40px;
    }
}

.car-mode-btn {
    border: none;
    border-radius: 26px;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    z-index: 5;
}

.car-mode-btn:hover,
.car-mode-btn:focus {
    transform: translateY(-2px);
}

.car-mode-secondary {
    width: 74px;
    height: 74px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.car-mode-secondary i {
    font-size: 34px;
}

.car-mode-sound-toggle {
    width: auto;
    min-width: 136px;
    padding: 0 16px;
    gap: 8px;
}

.car-mode-sound-toggle i {
    font-size: 30px;
}

#car-mode-sound-state-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.car-mode-play {
    width: 110px;
    height: 110px;
    border-radius: 38px;
    background: linear-gradient(180deg, #fff, #f0eef3);
    color: var(--primary-color, #970439);
    box-shadow: 0 18px 34px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.85);
}

.car-mode-play i {
    font-size: 52px;
}

.car-mode-play.is-playing {
    background: linear-gradient(180deg, #f7d9e7, #fff);
}

.car-mode-rss-popup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 10, 18, 0.42);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 5;
}

.car-mode-rss-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.car-mode-rss-popup-card {
    width: min(100%, 620px);
    max-height: min(78vh, 640px);
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(26, 28, 36, 0.96), rgba(17, 18, 24, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.38);
    display: flex;
    flex-direction: column;
}

.car-mode-rss-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.car-mode-rss-popup-header h3 {
    color: #fff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.car-mode-rss-popup-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.car-mode-rss-popup-close i {
    font-size: 26px;
}

.car-mode-rss-popup-body {
    padding: 10px 16px 16px;
    overflow-y: auto;
}

.car-mode-rss-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.car-mode-rss-item:last-child {
    border-bottom: none;
}

.car-mode-rss-time {
    min-width: 48px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(77,181,255,0.12);
    color: #8ed3ff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.car-mode-rss-item p,
.car-mode-rss-empty {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.5;
}

.car-mode-rss-empty {
    padding: 20px 8px 10px;
}

.car-mode-shell.day-mode {
    background:
        radial-gradient(circle at 15% 88%, rgba(76,149,255,0.16), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(255,183,77,0.18), transparent 22%),
        linear-gradient(145deg, rgba(249,251,255,0.98), rgba(232,238,248,0.99));
    border-color: rgba(80, 120, 180, 0.18);
    box-shadow: 0 26px 90px rgba(19, 42, 79, 0.22), inset 0 1px 0 rgba(255,255,255,0.55);
}

.car-mode-shell.day-mode::before {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.52), transparent 28%, transparent 72%, rgba(76,149,255,0.08)),
        linear-gradient(180deg, rgba(255,255,255,0.18), transparent 25%);
}

.car-mode-shell.day-mode .car-mode-close,
.car-mode-shell.day-mode .car-mode-badge,
.car-mode-shell.day-mode .car-mode-panel,
.car-mode-shell.day-mode .car-mode-info-card,
.car-mode-shell.day-mode .car-mode-controls,
.car-mode-shell.day-mode .car-mode-secondary {
    border-color: rgba(72, 112, 170, 0.16);
}

.car-mode-shell.day-mode .car-mode-close,
.car-mode-shell.day-mode .car-mode-badge {
    background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(241,245,252,0.9));
    color: #223047;
}

.car-mode-shell.day-mode .car-mode-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,248,252,0.72)),
        linear-gradient(145deg, rgba(246,249,255,0.9), rgba(228,234,244,0.62));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 14px 34px rgba(40, 76, 126, 0.12);
}

.car-mode-shell.day-mode .car-mode-info-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,245,250,0.84));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
}

.car-mode-shell.day-mode .car-mode-card-label,
.car-mode-shell.day-mode .car-mode-rating-label,
.car-mode-shell.day-mode .car-mode-info-card span,
.car-mode-shell.day-mode .car-mode-speedometer-center span:last-child,
.car-mode-shell.day-mode .car-mode-reactive-header,
.car-mode-shell.day-mode .car-mode-rating-value {
    color: rgba(41, 57, 84, 0.72);
}

.car-mode-shell.day-mode .car-mode-rating {
    background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(241,245,252,0.9));
    border-color: rgba(72, 112, 170, 0.16);
}

.car-mode-shell.day-mode .car-mode-install-btn {
    color: #fff;
    border-color: rgba(72, 112, 170, 0.14);
    background: linear-gradient(180deg, rgba(53, 115, 212, 0.94), rgba(36, 85, 165, 0.94));
}

.car-mode-shell.day-mode .car-mode-rating-star {
    color: rgba(41, 57, 84, 0.22);
    background: rgba(72, 112, 170, 0.06);
}

.car-mode-shell.day-mode .car-mode-rating-star:hover,
.car-mode-shell.day-mode .car-mode-rating-star:focus,
.car-mode-shell.day-mode .car-mode-rating-star.is-active {
    color: #d29a00;
    background: rgba(255,215,106,0.22);
}

.car-mode-shell.day-mode .car-mode-side-action {
    color: #223047;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(241,245,252,0.92));
    border-color: rgba(72, 112, 170, 0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 14px 28px rgba(40, 76, 126, 0.12);
}

.car-mode-shell.day-mode .car-mode-side-action i {
    color: #2f74df;
}

.car-mode-shell.day-mode .car-mode-badge span,
.car-mode-shell.day-mode .car-mode-info-card strong,
.car-mode-shell.day-mode .car-mode-meta h2,
.car-mode-shell.day-mode .car-mode-meta p,
.car-mode-shell.day-mode .car-mode-volume,
.car-mode-shell.day-mode .car-mode-speedometer-center,
.car-mode-shell.day-mode .car-mode-close {
    color: #213048;
}

.car-mode-shell.day-mode .car-mode-kicker {
    color: rgba(34, 56, 90, 0.72);
    border-top-color: rgba(72,112,170,0.14);
    border-bottom-color: rgba(72,112,170,0.14);
}

.car-mode-shell.day-mode .car-mode-main-panel::before {
    background: linear-gradient(90deg, transparent, rgba(60, 108, 180, 0.14), transparent);
}

.car-mode-shell.day-mode .car-mode-ad-frame {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,244,251,0.88));
    border-color: rgba(72,112,170,0.14);
    box-shadow: 0 18px 40px rgba(78, 108, 150, 0.18);
}

.car-mode-shell.day-mode .car-mode-ad-logo {
    background: rgba(255,255,255,0.92);
    border-color: rgba(72,112,170,0.16);
}

.car-mode-shell.day-mode .car-mode-ad-badge {
    background: rgba(151, 4, 57, 0.9);
    color: #fff;
}

.car-mode-shell.day-mode .car-mode-ad-caption {
    background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(234,240,248,0.92));
    color: #213048;
}

.car-mode-shell.day-mode .car-mode-ad-caption span,
.car-mode-shell.day-mode .car-mode-ad-empty {
    color: rgba(34, 56, 90, 0.8);
}

.car-mode-shell.day-mode .car-mode-brand-logo {
    background: rgba(255,255,255,0.92);
    border-color: rgba(72,112,170,0.16);
    box-shadow: 0 14px 28px rgba(78, 108, 150, 0.16);
}

.car-mode-shell.day-mode .car-mode-art {
    box-shadow: 0 18px 40px rgba(78, 108, 150, 0.20), 0 0 34px rgba(76,149,255,0.18);
    border-color: rgba(255,255,255,0.44);
}

.car-mode-shell.day-mode .car-mode-play {
    background: linear-gradient(180deg, #2f7dff, #1d5de0);
    color: #fff;
    box-shadow: 0 18px 30px rgba(47, 125, 255, 0.28);
}

.car-mode-shell.day-mode .car-mode-play.is-playing {
    background: linear-gradient(180deg, #4f93ff, #2f7dff);
}

.car-mode-shell.day-mode .car-mode-secondary {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241,245,252,0.92));
    color: #28406b;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.car-mode-shell.day-mode .car-mode-volume input[type="range"] {
    background: rgba(45, 93, 176, 0.18);
}

.car-mode-shell.day-mode .car-mode-volume input[type="range"]::-webkit-slider-thumb {
    background: #2f7dff;
    box-shadow: 0 0 0 6px rgba(47,125,255,0.12);
}

.car-mode-shell.day-mode .car-mode-rss-popup {
    background: rgba(233, 239, 247, 0.56);
}

.car-mode-shell.day-mode .car-mode-rss-popup-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,245,252,0.98));
    border-color: rgba(72,112,170,0.14);
    box-shadow: 0 24px 60px rgba(44, 72, 114, 0.18);
}

.car-mode-shell.day-mode .car-mode-rss-popup-header,
.car-mode-shell.day-mode .car-mode-rss-item {
    border-color: rgba(72,112,170,0.10);
}

.car-mode-shell.day-mode .car-mode-rss-popup-header h3,
.car-mode-shell.day-mode .car-mode-rss-item p,
.car-mode-shell.day-mode .car-mode-rss-empty,
.car-mode-shell.day-mode .car-mode-rss-popup-close {
    color: #223047;
}

.car-mode-shell.day-mode .car-mode-rss-popup-close {
    background: rgba(47,125,255,0.08);
    border-color: rgba(72,112,170,0.14);
}

.car-mode-shell.day-mode .car-mode-rss-time {
    background: rgba(47,125,255,0.12);
    color: #2f7dff;
}

@keyframes carModePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: 0.86; }
}

@keyframes carModePulseBlue {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.22); opacity: 0.82; }
}


@keyframes carModeGlowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ------------------------------------- */
/* FIXED PLAYER STYLING (Radyo7 Style)   */
/* ------------------------------------- */
/* Fixed Player (Radyo7 Style) */
.fixed-player {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-height: 70px !important;
    background: #970439 !important; /* Fallback color */
    background: linear-gradient(90deg, var(--player-color-1, #970439), var(--player-color-2, #2b2b2b)) !important;
    color: #fff !important;
    z-index: 999999 !important; /* Arttırıldı */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5) !important;
    display: flex !important;
    align-items: center !important;
    transform: translateZ(0); /* Donanım hızlandırması ile sabitlemeyi iyileştirir */
    will-change: transform;
}

body.car-mode-open .fixed-player {
    display: none !important;
}

.player-container {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.player-info {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 260px;
    justify-content: center;
    text-align: center;
}

.player-album-art {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.player-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.song-title-wrapper,
.artist-name-wrapper {
    width: 100%;
    overflow: hidden;
}

.fixed-player .player-album-art {
    display: none;
}

.fixed-player .artist-name-wrapper {
    display: none;
}

.fixed-player .player-info {
    align-items: center !important;
}

.fixed-player .player-text {
    width: 100%;
}

.player-spectrum {
    flex: 1 1 220px;
    min-width: 140px;
    height: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin: 0 18px;
    overflow: hidden;
}

.player-spectrum-bar {
    width: 4px;
    min-height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.98);
    transform-origin: center bottom;
    transform: scaleY(0.16);
    opacity: 0.26;
    box-shadow: 0 0 8px rgba(255,255,255,0.12);
    transition: opacity 0.18s ease;
}

.player-spectrum.is-playing .player-spectrum-bar {
    background: rgba(255,255,255,1);
}

.player-text #song-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 200px;
}

.player-text #song-artist {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 200px;
}

.fixed-player.is-playing .player-album-art img {
    animation: mobileAlbumSpin 9s linear infinite;
}

@keyframes mobileAlbumSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.player-controls {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    flex: 0 0 auto;
    justify-content: center !important;
}

.player-btn {
    background: #fff !important;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #333 !important;
    transition: all 0.3s ease;
    padding: 0;
}

.player-btn:hover {
    transform: scale(1.1);
    background: #f8f8f8 !important;
}

.player-btn.play-pause-btn {
    width: 55px;
    height: 55px;
    color: var(--primary-color, #970439) !important;
}

.player-btn i {
    font-size: 20px !important;
}

.player-btn.play-pause-btn i {
    font-size: 28px !important;
}

.player-volume {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    flex: 0 0 auto;
    justify-content: flex-end !important;
}

.volume-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.volume-text {
    font-size: 13px;
    min-width: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .car-mode-launch {
        display: none !important;
    }

    .car-mode-overlay {
        padding: 10px;
    }

    .car-mode-shell {
        width: 100%;
        min-height: calc(100vh - 20px);
        height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 24px;
        padding: 16px 16px 18px;
    }

    .car-mode-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-right: 58px;
    }

    .car-mode-top-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .car-mode-rating {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 12px;
    }

    .car-mode-install-btn {
        padding: 10px 14px;
    }

    .car-mode-rating-star {
        width: 30px;
        height: 30px;
    }

    .car-mode-content {
        flex-direction: column;
    }

    .car-mode-ad-slide {
        gap: 10px;
        padding: 10px;
    }

    .car-mode-side-actions {
        position: static;
        transform: none;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .car-mode-side-action {
        min-height: 68px;
        min-width: 120px;
        flex: 1 1 120px;
    }

    .car-mode-controls {
        flex-wrap: wrap;
        width: 100%;
    }

    .car-mode-dashboard {
        width: 100%;
        padding: 18px;
    }

    .car-mode-speedometer {
        max-width: 210px;
    }

    .car-mode-speedometer-center {
        width: 124px;
        height: 124px;
    }

    .car-mode-speedometer-center strong {
        font-size: 34px;
    }

    .car-mode-main-panel {
        padding: 18px 16px 12px;
    }

    .car-mode-ad-stage {
        width: 100%;
    }

    .car-mode-ad-frame {
        width: min(100%, 440px);
        max-width: 440px;
        aspect-ratio: 16 / 9.2;
        border-radius: 22px;
    }

    .car-mode-ad-logo {
        top: 10px;
        right: 10px;
        width: 58px;
        height: 58px;
        padding: 6px;
        border-radius: 18px;
    }

    .car-mode-ad-badge {
        top: 12px;
        left: 12px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .car-mode-ad-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .car-mode-ad-caption strong {
        font-size: 15px;
    }

    .car-mode-ad-caption span {
        font-size: 12px;
    }

    .car-mode-meta {
        width: 100%;
    }

    .car-mode-brand-logo {
        width: 70px;
        height: 70px;
        margin-top: 6px;
        border-radius: 22px;
    }

    .car-mode-visual {
        width: 180px;
        height: 180px;
    }

    .car-mode-art {
        width: 142px;
        height: 142px;
    }

    .car-mode-controls {
        gap: 10px;
        width: 100%;
        padding: 10px 12px;
    }

    .car-mode-secondary {
        width: 58px;
        height: 58px;
    }

    .car-mode-secondary i {
        font-size: 26px;
    }

    .car-mode-play {
        width: 82px;
        height: 82px;
        border-radius: 24px;
    }

    .car-mode-play i {
        font-size: 38px;
    }

    .car-mode-sound-toggle {
        min-width: 124px;
        padding: 0 14px;
        gap: 8px;
    }

    .car-mode-sound-toggle i {
        font-size: 24px;
    }

    #car-mode-sound-state-text {
        font-size: 11px;
    }


    .fixed-player {
        height: auto !important;
        min-height: 74px !important;
        padding: 8px 0 !important;
    }
    .player-container {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 0 12px;
    }
    .player-spectrum {
        flex: 0 0 92px;
        width: 92px;
        min-width: 92px;
        height: 16px;
        margin: 0;
        gap: 2px;
    }
    .player-spectrum-bar {
        width: 2px;
    }
    .player-volume {
        display: none !important;
    }
    .player-info {
        justify-content: flex-start;
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        gap: 8px;
    }
    .player-album-art {
        display: none;
        margin-right: 0;
        width: 48px;
        height: 48px;
    }
    .player-text {
        display: flex !important;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        gap: 2px;
    }
    .song-title-wrapper {
        position: relative;
        min-width: 0;
        overflow: hidden;
    }
    .song-title-wrapper.is-scrolling #song-title {
        display: inline-block;
        max-width: none;
        padding-right: 28px;
        animation: mobileSongTicker 9s linear infinite;
        will-change: transform;
    }
    .player-text #song-title {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.1;
        text-overflow: clip;
    }
    .player-text #song-artist {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.1;
        color: rgba(255,255,255,0.72);
    }
    .artist-name-wrapper {
        display: none !important;
    }
    .fixed-player.is-playing .player-album-art {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.28), 0 0 14px rgba(255,255,255,0.18);
    }
    .player-controls {
        width: auto;
        justify-content: center !important;
        gap: 8px;
        flex-shrink: 0;
    }
    .player-btn {
        width: 42px;
        height: 42px;
    }
    .play-pause-btn {
        width: 50px;
        height: 50px;
    }
}

@keyframes mobileSongTicker {
    0%, 12% {
        transform: translateX(0);
    }
    88%, 100% {
        transform: translateX(calc(-100% + 170px));
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .player-info-title.next {
        display: none;
    }
    
    .top-lists-container {
        flex-direction: column;
    }
}

@media (orientation: portrait) and (max-width: 1024px) {
    .car-mode-overlay {
        padding: 8px;
    }

    .car-mode-shell {
        width: min(100%, 760px);
        min-height: calc(100vh - 16px);
        height: calc(100vh - 16px);
        max-height: calc(100vh - 16px);
        padding: 14px 14px 16px;
        border-radius: 28px;
        overflow: hidden;
    }

    .car-mode-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        margin-bottom: 12px;
        padding-right: 54px;
    }

    .car-mode-top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
        gap: 10px;
    }

    .car-mode-badge,
    .car-mode-rating,
    .car-mode-install-btn {
        min-height: 48px;
        border-radius: 20px;
    }

    .car-mode-rating {
        min-width: 0;
        width: 100%;
        justify-content: space-between;
        padding: 8px 12px;
        gap: 8px;
    }

    .car-mode-rating-stars {
        gap: 4px;
    }

    .car-mode-rating-star {
        width: 30px;
        height: 30px;
    }

    .car-mode-install-btn {
        justify-content: center;
        padding: 10px 16px;
    }

    .car-mode-content {
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: calc(100% - 82px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 4px;
        gap: 12px;
        align-items: stretch;
    }

    .car-mode-content::-webkit-scrollbar {
        width: 6px;
    }

    .car-mode-content::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(77,181,255,0.7), rgba(31,98,255,0.32));
    }

    .car-mode-main-panel {
        order: 1;
        padding: 14px;
        gap: 12px;
        border-radius: 24px;
        flex: 0 0 auto;
        overflow: visible;
    }

    .car-mode-main-panel::before {
        left: 14px;
        right: 14px;
        top: 14px;
    }

    .car-mode-ad-stage {
        width: 100%;
        flex: 0 0 auto;
        min-height: 0;
    }

    .car-mode-ad-frame {
        min-height: clamp(246px, 34vh, 360px);
        height: clamp(246px, 34vh, 360px);
        max-height: none;
        border-radius: 22px;
    }

    .car-mode-ad-slider,
    .car-mode-ad-slider .swiper-wrapper,
    .car-mode-ad-slide {
        height: 100%;
    }

    .car-mode-ad-slide {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "media media"
            "left right"
            "caption caption";
        gap: 8px;
        padding: 10px;
        align-content: start;
    }

    .car-mode-ad-media {
        grid-area: media;
        min-height: 132px;
        height: 100%;
        padding: 0;
    }

    .car-mode-ad-media img {
        border-radius: 16px;
        object-fit: cover;
    }

    .car-mode-side-actions {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        transform: none;
        padding-top: 0;
    }

    .car-mode-side-actions-left {
        grid-area: left;
    }

    .car-mode-side-actions-right {
        grid-area: right;
    }

    .car-mode-side-action {
        min-height: 56px;
        padding: 8px 10px;
        border-radius: 16px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        text-align: left;
    }

    .car-mode-side-action i {
        font-size: 17px;
    }

    .car-mode-side-letter {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .car-mode-side-action span {
        font-size: 10px;
        line-height: 1.2;
    }

    .car-mode-ad-caption {
        grid-area: caption;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 0;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .car-mode-ad-caption strong {
        font-size: 14px;
    }

    .car-mode-ad-caption span {
        font-size: 11px;
    }

    .car-mode-meta {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) 64px;
        column-gap: 10px;
        row-gap: 8px;
    }

    .car-mode-kicker {
        width: 100%;
        padding: 8px 0;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .car-mode-brand-logo {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .car-mode-brand-logo img {
        border-radius: 14px;
        padding: 4px;
    }

    .car-mode-audio-reactive {
        min-height: 98px;
        padding: 10px 12px 8px;
        border-radius: 18px;
    }

    .car-mode-audio-watermark {
        width: min(38%, 130px);
        transform: translate(-50%, -34%);
    }

    .car-mode-audio-hint {
        left: 12px;
        right: 12px;
    }

    .car-mode-reactive-bars {
        height: 72px;
        gap: 2px;
        padding-top: 14px;
    }

    .car-mode-reactive-bar {
        width: 4px;
    }

    .car-mode-controls {
        width: 100%;
        margin-top: 0;
        display: grid;
        grid-template-columns: 60px minmax(0, 1fr) 84px 60px;
        gap: 8px;
        padding: 10px;
        border-radius: 22px;
        position: sticky;
        bottom: 0;
        backdrop-filter: blur(18px);
    }

    .car-mode-secondary {
        width: 100%;
        height: 60px;
        border-radius: 18px;
    }

    .car-mode-secondary i {
        font-size: 26px;
    }

    .car-mode-sound-toggle {
        min-width: 0;
        padding: 0 10px;
        gap: 6px;
    }

    #car-mode-sound-state-text {
        font-size: 11px;
    }

    .car-mode-play {
        width: 100%;
        height: 72px;
        border-radius: 22px;
    }

    .car-mode-play i {
        font-size: 34px;
    }

    .car-mode-dashboard {
        order: 2;
        width: 100%;
        min-width: 0;
        padding: 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 24px;
    }

    .car-mode-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        max-height: none;
        padding-right: 0;
    }

    .car-mode-info-card {
        min-height: 0;
        padding: 14px;
        border-radius: 18px;
    }

    .car-mode-clock-card strong,
    .car-mode-status-card strong {
        font-size: 24px;
    }

    .car-mode-clock-time {
        font-size: 18px;
    }

    .car-mode-speedometer {
        grid-column: 1 / -1;
        max-width: 220px;
    }

    .car-mode-speedometer-center {
        width: 128px;
        height: 128px;
    }

    .car-mode-speedometer-center strong {
        font-size: 34px;
    }

    .car-mode-surface-card:hover,
    .car-mode-surface-card:focus,
    .car-mode-clock-card:hover,
    .car-mode-clock-card:focus,
    .car-mode-btn:hover,
    .car-mode-btn:focus {
        transform: none;
    }
}

@media (orientation: portrait) and (max-width: 640px) {
    .car-mode-shell {
        padding: 12px 12px 14px;
        border-radius: 24px;
    }

    .car-mode-top {
        padding-right: 46px;
    }

    .car-mode-top-actions {
        grid-template-columns: 1fr;
    }

    .car-mode-install-btn {
        width: 100%;
    }

    .car-mode-rating {
        padding: 8px 10px;
    }

    .car-mode-rating-label,
    .car-mode-rating-value {
        font-size: 10px;
    }

    .car-mode-rating-star {
        width: 28px;
        height: 28px;
    }

    .car-mode-content {
        height: calc(100% - 88px);
        gap: 10px;
    }

    .car-mode-ad-frame {
        min-height: clamp(268px, 36vh, 330px);
        height: clamp(268px, 36vh, 330px);
    }

    .car-mode-ad-slide {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "left"
            "right"
            "caption";
    }

    .car-mode-side-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .car-mode-side-action {
        min-height: 52px;
        padding: 8px;
        gap: 6px;
    }

    .car-mode-side-action span {
        font-size: 9px;
    }

    .car-mode-main-panel,
    .car-mode-dashboard {
        padding: 12px;
        border-radius: 22px;
    }

    .car-mode-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .car-mode-info-card strong {
        font-size: 20px;
    }

    .car-mode-clock-card strong,
    .car-mode-status-card strong {
        font-size: 22px;
    }

    .car-mode-clock-time {
        font-size: 17px;
    }

    .car-mode-speedometer {
        max-width: 196px;
    }

    .car-mode-speedometer-center {
        width: 116px;
        height: 116px;
    }

    .car-mode-speedometer-center strong {
        font-size: 30px;
    }

    .car-mode-controls {
        grid-template-columns: 54px minmax(0, 1fr) 78px 54px;
        padding: 8px;
    }

    .car-mode-secondary {
        height: 54px;
    }

    .car-mode-play {
        height: 66px;
    }

    .car-mode-play i {
        font-size: 30px;
    }

    .car-mode-sound-toggle {
        padding: 0 8px;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        align-items: center;
        min-height: 72px;
        position: relative;
        /* justify-content: center; was breaking absolute positioning layout */
        padding: 0 12px;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #333;
        z-index: 1000;
    }

    .frequency-info {
        display: flex;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        width: 74px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-link img {
        max-height: 50px !important;
    }
}

@media (orientation: portrait) and (max-width: 1400px), (max-aspect-ratio: 3/4) and (max-width: 1400px) {
    .car-mode-shell {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 26px;
    }

    .car-mode-top {
        margin-bottom: 0;
        gap: 10px;
        align-items: start;
    }

    .car-mode-top-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .car-mode-rating,
    .car-mode-install-btn,
    .car-mode-badge {
        min-height: 40px;
    }

    .car-mode-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-content: start;
        gap: 12px;
        min-height: 0;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 2px;
    }

    .car-mode-content::-webkit-scrollbar {
        width: 6px;
    }

    .car-mode-content::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(77,181,255,0.78), rgba(151,4,57,0.32));
    }

    .car-mode-panel {
        border-radius: 22px;
    }

    .car-mode-main-panel,
    .car-mode-dashboard {
        width: 100%;
        min-width: 0;
        flex: 0 0 auto;
        overflow: hidden;
    }

    .car-mode-main-panel {
        order: 1;
        padding: 14px;
        gap: 12px;
    }

    .car-mode-main-panel::before {
        left: 14px;
        right: 14px;
        top: 14px;
    }

    .car-mode-ad-stage {
        width: 100%;
        flex: 0 0 auto;
        min-height: 0;
        justify-content: stretch;
    }

    .car-mode-ad-frame {
        width: 100%;
        min-height: clamp(280px, 35vh, 410px);
        height: auto;
        max-height: none;
        border-radius: 20px;
    }

    .car-mode-ad-slider,
    .car-mode-ad-slider .swiper-wrapper {
        height: 100%;
    }

    .car-mode-ad-slide {
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr) 68px;
        grid-template-areas:
            "badge badge badge"
            "left media right"
            "caption caption caption";
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }

    .car-mode-ad-badge {
        position: relative;
        top: auto;
        left: auto;
        grid-area: badge;
        justify-self: start;
        margin: 0;
        padding: 5px 10px;
        font-size: 10px;
    }

    .car-mode-side-actions {
        position: static;
        width: 68px;
        max-width: 68px;
        height: auto;
        top: auto;
        bottom: auto;
        gap: 6px;
        padding-top: 0;
    }

    .car-mode-side-actions-left {
        grid-area: left;
    }

    .car-mode-side-actions-right {
        grid-area: right;
    }

    .car-mode-side-action {
        min-height: 56px;
        padding: 7px 4px;
        border-radius: 16px;
        gap: 4px;
    }

    .car-mode-side-action i {
        font-size: 17px;
    }

    .car-mode-side-letter {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .car-mode-side-action span {
        font-size: 8px;
        line-height: 1.1;
    }

    .car-mode-ad-media {
        grid-area: media;
        height: 100%;
        min-height: 176px;
        padding: 0;
    }

    .car-mode-ad-media img {
        width: 100%;
        height: 100%;
        border-radius: 14px;
        object-fit: contain;
    }

    .car-mode-ad-caption {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-area: caption;
        margin-top: 0;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .car-mode-ad-caption strong {
        font-size: 14px;
    }

    .car-mode-ad-caption span {
        font-size: 11px;
    }

    .car-mode-meta {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) 58px;
        grid-template-areas:
            "kicker kicker"
            "audio logo";
        column-gap: 10px;
        row-gap: 8px;
    }

    .car-mode-kicker {
        width: 100%;
        padding: 8px 0;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .car-mode-brand-logo {
        width: 58px;
        height: 58px;
        padding: 6px;
        border-radius: 18px;
    }

    .car-mode-brand-logo img {
        border-radius: 12px;
        padding: 4px;
    }

    .car-mode-audio-reactive {
        min-height: 88px;
        padding: 8px 10px;
        border-radius: 16px;
    }

    .car-mode-audio-watermark {
        width: min(34%, 120px);
        transform: translate(-50%, -34%);
    }

    .car-mode-audio-hint {
        top: 8px;
        left: 10px;
        right: 10px;
        font-size: 10px;
    }

    .car-mode-audio-hint strong {
        font-size: 11px;
    }

    .car-mode-reactive-bars {
        height: 62px;
        gap: 2px;
        padding: 14px 2px 0;
    }

    .car-mode-reactive-bar {
        width: 4px;
    }

    .car-mode-controls {
        width: 100%;
        margin-top: 0;
        padding: 8px;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) 52px 78px 52px;
        gap: 8px;
        border-radius: 18px;
    }

    .car-mode-secondary {
        width: 100%;
        height: 52px;
        border-radius: 16px;
    }

    .car-mode-secondary i {
        font-size: 22px;
    }

    .car-mode-sound-toggle {
        min-width: 0;
        padding: 0 10px;
        gap: 6px;
        justify-content: center;
    }

    .car-mode-play {
        width: 100%;
        height: 60px;
        border-radius: 18px;
    }

    .car-mode-play i {
        font-size: 30px;
    }

    #car-mode-sound-state-text {
        font-size: 10px;
    }

    .car-mode-dashboard {
        order: 2;
        padding: 14px;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .car-mode-dashboard-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .car-mode-info-card {
        min-height: 92px;
        padding: 12px;
        border-radius: 16px;
    }

    .car-mode-info-card strong {
        font-size: 22px;
    }

    .car-mode-info-card span {
        font-size: 12px;
    }

    .car-mode-clock-card strong,
    .car-mode-status-card strong {
        font-size: 24px;
    }

    .car-mode-clock-time {
        font-size: 18px;
    }

    .car-mode-speedometer {
        max-width: 180px;
    }

    .car-mode-speedometer-center {
        width: 112px;
        height: 112px;
    }

    .car-mode-speedometer-center strong {
        font-size: 30px;
    }
}

@media (orientation: portrait) and (max-width: 820px), (max-aspect-ratio: 3/4) and (max-width: 820px) {
    .car-mode-top {
        padding-right: 46px;
    }

    .car-mode-top-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .car-mode-rating {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .car-mode-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .car-mode-speedometer {
        max-width: 168px;
    }

    .car-mode-ad-slide {
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        padding: 8px;
    }

    .car-mode-side-actions {
        width: 56px;
        max-width: 56px;
    }

    .car-mode-side-action {
        min-height: 52px;
    }
}

@media (max-width: 768px) {
    .logo-link {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        justify-self: auto;
        z-index: 1001;
        width: max-content;
    }
    
    .brand-logo .logo-top {
        font-size: 30px;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        max-width: calc(100vw - 40px);
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 24px rgba(0,0,0,0.18);
        z-index: 1200;
        padding-top: 18px;
        padding-right: 0;
        transition: right 0.3s ease;
    }
    
    .main-nav.mobile-open {
        right: 0;
    }

    .mobile-nav-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 24px 10px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    .mobile-nav-brand::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 45%, rgba(151,4,57,0) 72%);
        filter: blur(4px);
        z-index: 0;
    }

    .mobile-nav-brand img {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(151, 4, 57, 0.18);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.45), 0 0 18px rgba(151, 4, 57, 0.45), 0 6px 16px rgba(0,0,0,0.14);
        background: #fff;
        position: relative;
        z-index: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 6px 0 30px;
    }
    
    .main-nav ul li {
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
    }

    .mobile-menu-btn i {
        font-size: 24px;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
    
    .main-slider {
        height: 450px;
    }

    .top-20-grid {
        grid-template-columns: 1fr;
    }

    .listen-request-card {
        min-height: 300px;
        padding: 26px 18px;
    }

    .listen-only-page {
        min-height: calc(100vh - 280px);
        padding: 20px 15px;
    }

    .listen-only-shell {
        min-height: calc(100vh - 320px);
    }

    .listen-request-card h3 {
        font-size: 26px;
    }

    .listen-request-card p {
        font-size: 15px;
    }

    .listen-request-mic-btn {
        width: 124px;
        height: 124px;
    }

    .listen-request-mic-btn i {
        font-size: 54px;
    }

    .content-section {
        padding: 15px;
    }

    .top-20-item .song-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .player-info-title .title,
    .player-info-title .name {
        max-width: 150px;
    }

    .top-20-item {
        padding: 8px 10px;
        margin-left: 5px; /* Sola yapışmasın diye */
    }

    .rank-badge {
        width: 26px;
        height: 26px;
        font-size: 13px;
        left: -10px;
    }

    .top-20-item .song-img {
        width: 45px;
        height: 45px;
        margin-left: 8px;
        margin-right: 10px;
    }

    .listen-btn {
        padding: 3px 8px 3px 3px;
        font-size: 11px;
    }
    
    .play-icon-circle {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .listen-btn .zmdi-play, .listen-btn .zmdi-pause {
        font-size: 14px;
    }

    .top-20-item .song-info h4 {
        font-size: 14px;
    }
    
    .top-20-item .song-info p {
        font-size: 11px;
    }
}

/* ------------------------------------- */
/* WHATSAPP FLOAT BUTTON                 */
/* ------------------------------------- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 90px; /* Fixed player'ın üzerinde dursun */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.sonic-data-proxy {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.car-mode-track-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        linear-gradient(135deg, rgba(19, 31, 58, 0.9), rgba(12, 14, 20, 0.86));
    border: 1px solid rgba(77,181,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.car-mode-track-label {
    color: rgba(186, 224, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

#car-mode-song-title {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.3px;
}

#car-mode-song-artist {
    width: 100%;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.25;
}

.car-mode-shell.layout-landscape .car-mode-track-panel {
    padding: 12px 14px;
}

.car-mode-shell.layout-landscape #car-mode-song-title {
    font-size: 21px;
}

.car-mode-shell.layout-portrait .car-mode-track-panel {
    padding: 10px 12px;
    border-radius: 16px;
    order: 2;
}

.car-mode-shell.layout-portrait #car-mode-song-title {
    font-size: 18px;
}

.car-mode-shell.layout-portrait #car-mode-song-artist {
    font-size: 12px;
}

.car-mode-shell.layout-landscape {
    display: block;
}

.car-mode-shell.layout-landscape .car-mode-content {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 18px;
    min-height: calc(100% - 58px);
    height: calc(100% - 58px);
    overflow: hidden;
}

.car-mode-shell.layout-landscape .car-mode-dashboard {
    width: auto;
    min-width: 0;
    height: 100%;
    padding: 18px;
    gap: 16px;
}

.car-mode-shell.layout-landscape .car-mode-main-panel {
    height: 100%;
    justify-content: space-between;
    padding: 18px 20px 16px;
}

.car-mode-shell.layout-landscape .car-mode-ad-stage {
    flex: 1 1 auto;
}

.car-mode-shell.layout-landscape .car-mode-ad-frame {
    width: 100%;
    min-height: 220px;
    max-height: min(100%, 430px);
}

.car-mode-shell.layout-landscape .car-mode-ad-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-mode-shell.layout-landscape .car-mode-ad-media {
    padding: 0 82px;
}

.car-mode-shell.layout-landscape .car-mode-side-actions {
    position: absolute;
    width: 74px;
    max-width: 74px;
    top: 12px;
    bottom: 12px;
    gap: 6px;
}

.car-mode-shell.layout-landscape .car-mode-side-actions-left {
    left: 10px;
    padding-top: 44px;
}

.car-mode-shell.layout-landscape .car-mode-side-actions-right {
    right: 10px;
}

.car-mode-shell.layout-landscape .car-mode-side-action {
    min-height: 54px;
    padding: 7px 4px;
    border-radius: 18px;
    gap: 4px;
}

.car-mode-shell.layout-landscape .car-mode-side-action i {
    font-size: 18px;
}

.car-mode-shell.layout-landscape .car-mode-side-action span {
    font-size: 8px;
}

.car-mode-shell.layout-landscape .car-mode-meta {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) 72px;
    column-gap: 14px;
    row-gap: 10px;
}

.car-mode-shell.layout-landscape .car-mode-brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 24px;
}

.car-mode-shell.layout-landscape .car-mode-audio-reactive {
    min-height: 110px;
}

.car-mode-shell.layout-landscape .car-mode-reactive-bars {
    height: 88px;
}

.car-mode-shell.layout-landscape .car-mode-controls {
    width: 100%;
    max-width: 100%;
}

.car-mode-shell.layout-portrait {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
}

.car-mode-shell.layout-portrait .car-mode-top {
    margin-bottom: 0;
    gap: 10px;
    align-items: start;
}

.car-mode-shell.layout-portrait .car-mode-top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.car-mode-shell.layout-portrait .car-mode-rating,
.car-mode-shell.layout-portrait .car-mode-install-btn,
.car-mode-shell.layout-portrait .car-mode-badge {
    min-height: 40px;
}

.car-mode-shell.layout-portrait .car-mode-rating {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
}

.car-mode-shell.layout-portrait .car-mode-rating-stars {
    gap: 4px;
}

.car-mode-shell.layout-portrait .car-mode-rating-star {
    width: 28px;
    height: 28px;
}

.car-mode-shell.layout-portrait .car-mode-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: start;
    gap: 12px;
    min-height: 0;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2px;
}

.car-mode-shell.layout-portrait .car-mode-content::-webkit-scrollbar {
    width: 6px;
}

.car-mode-shell.layout-portrait .car-mode-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(77,181,255,0.78), rgba(151,4,57,0.32));
}

.car-mode-shell.layout-portrait .car-mode-panel {
    border-radius: 22px;
}

.car-mode-shell.layout-portrait .car-mode-main-panel,
.car-mode-shell.layout-portrait .car-mode-dashboard {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    overflow: hidden;
}

.car-mode-shell.layout-portrait .car-mode-main-panel {
    order: 1;
    padding: 14px;
    gap: 12px;
    overflow: visible;
}

.car-mode-shell.layout-portrait .car-mode-main-panel::before {
    left: 14px;
    right: 14px;
    top: 14px;
}

.car-mode-shell.layout-portrait .car-mode-ad-stage {
    width: 100%;
    flex: 0 0 auto;
    min-height: 0;
    justify-content: stretch;
    order: 1;
}

.car-mode-shell.layout-portrait .car-mode-ad-frame {
    width: 100%;
    min-height: clamp(280px, 35vh, 410px);
    height: auto;
    max-height: none;
    border-radius: 20px;
}

.car-mode-shell.layout-portrait .car-mode-ad-slider,
.car-mode-shell.layout-portrait .car-mode-ad-slider .swiper-wrapper {
    height: 100%;
}

.car-mode-shell.layout-portrait .car-mode-ad-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "badge"
        "media"
        "left"
        "right"
        "caption";
    align-items: stretch;
    gap: 8px;
    padding: 10px;
}

.car-mode-shell.layout-portrait .car-mode-ad-badge {
    position: relative;
    top: auto;
    left: auto;
    grid-area: badge;
    justify-self: start;
    margin: 0;
    padding: 5px 10px;
    font-size: 10px;
}

.car-mode-shell.layout-portrait .car-mode-side-actions {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    top: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 0;
}

.car-mode-shell.layout-portrait .car-mode-side-actions-left {
    grid-area: left;
}

.car-mode-shell.layout-portrait .car-mode-side-actions-right {
    grid-area: right;
}

.car-mode-shell.layout-portrait .car-mode-side-action {
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 16px;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.car-mode-shell.layout-portrait .car-mode-side-action i {
    font-size: 17px;
}

.car-mode-shell.layout-portrait .car-mode-side-letter {
    width: 22px;
    height: 22px;
    font-size: 12px;
}

.car-mode-shell.layout-portrait .car-mode-side-action span {
    font-size: 10px;
    line-height: 1.15;
}

.car-mode-shell.layout-portrait .car-mode-ad-media {
    grid-area: media;
    height: 100%;
    min-height: 200px;
    padding: 0;
}

.car-mode-shell.layout-portrait .car-mode-ad-media img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: contain;
}

.car-mode-shell.layout-portrait .car-mode-ad-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-area: caption;
    margin-top: 0;
    padding: 10px 12px;
    border-radius: 14px;
}

.car-mode-shell.layout-portrait .car-mode-ad-caption strong {
    font-size: 14px;
}

.car-mode-shell.layout-portrait .car-mode-ad-caption span {
    font-size: 11px;
}

.car-mode-shell.layout-portrait .car-mode-meta {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 58px;
    grid-template-areas:
        "kicker kicker"
        "audio logo";
    column-gap: 10px;
    row-gap: 8px;
    order: 3;
}

.car-mode-shell.layout-portrait .car-mode-kicker {
    width: 100%;
    padding: 8px 0;
    font-size: 9px;
    letter-spacing: 1px;
}

.car-mode-shell.layout-portrait .car-mode-brand-logo {
    width: 58px;
    height: 58px;
    padding: 6px;
    border-radius: 18px;
}

.car-mode-shell.layout-portrait .car-mode-brand-logo img {
    border-radius: 12px;
    padding: 4px;
}

.car-mode-shell.layout-portrait .car-mode-audio-reactive {
    min-height: 88px;
    padding: 8px 10px;
    border-radius: 16px;
}

.car-mode-shell.layout-portrait .car-mode-audio-watermark {
    width: min(34%, 120px);
    transform: translate(-50%, -34%);
}

.car-mode-shell.layout-portrait .car-mode-audio-hint {
    top: 8px;
    left: 10px;
    right: 10px;
    font-size: 10px;
}

.car-mode-shell.layout-portrait .car-mode-audio-hint strong {
    font-size: 11px;
}

.car-mode-shell.layout-portrait .car-mode-reactive-bars {
    height: 62px;
    gap: 2px;
    padding: 14px 2px 0;
}

.car-mode-shell.layout-portrait .car-mode-reactive-bar {
    width: 4px;
}

.car-mode-shell.layout-portrait .car-mode-controls {
    width: 100%;
    margin-top: 0;
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 56px 84px 56px;
    gap: 8px;
    border-radius: 18px;
    position: static;
    bottom: auto;
    backdrop-filter: none;
    order: 4;
    z-index: 1;
}

.car-mode-shell.layout-portrait .car-mode-secondary {
    width: 100%;
    height: 52px;
    border-radius: 16px;
}

.car-mode-shell.layout-portrait .car-mode-secondary i {
    font-size: 22px;
}

.car-mode-shell.layout-portrait .car-mode-sound-toggle {
    min-width: 0;
    padding: 0 10px;
    gap: 6px;
    justify-content: center;
}

.car-mode-shell.layout-portrait .car-mode-play {
    width: 100%;
    height: 60px;
    border-radius: 18px;
}

.car-mode-shell.layout-portrait .car-mode-play i {
    font-size: 30px;
}

.car-mode-shell.layout-portrait #car-mode-sound-state-text {
    font-size: 10px;
}

.car-mode-shell.layout-portrait .car-mode-dashboard {
    order: 2;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.car-mode-shell.layout-portrait .car-mode-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.car-mode-shell.layout-portrait .car-mode-info-card {
    min-height: 92px;
    padding: 12px;
    border-radius: 16px;
}

.car-mode-shell.layout-portrait .car-mode-info-card strong {
    font-size: 22px;
}

.car-mode-shell.layout-portrait .car-mode-info-card span {
    font-size: 12px;
}

.car-mode-shell.layout-portrait .car-mode-clock-card strong,
.car-mode-shell.layout-portrait .car-mode-status-card strong {
    font-size: 24px;
}

.car-mode-shell.layout-portrait .car-mode-clock-time {
    font-size: 18px;
}

.car-mode-shell.layout-portrait .car-mode-speedometer {
    max-width: 180px;
}

.car-mode-shell.layout-portrait .car-mode-speedometer-center {
    width: 112px;
    height: 112px;
}

.car-mode-shell.layout-portrait .car-mode-speedometer-center strong {
    font-size: 30px;
}

@media (max-width: 820px) {
    .car-mode-shell.layout-portrait .car-mode-top {
        padding-right: 46px;
    }

    .car-mode-shell.layout-portrait .car-mode-top-actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .car-mode-shell.layout-portrait .car-mode-rating {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .car-mode-shell.layout-portrait .car-mode-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .car-mode-shell.layout-portrait .car-mode-speedometer {
        max-width: 168px;
    }

    .car-mode-shell.layout-portrait .car-mode-ad-slide {
        padding: 8px;
    }

    .car-mode-shell.layout-portrait .car-mode-side-actions {
        grid-template-columns: 1fr;
    }

    .car-mode-shell.layout-portrait .car-mode-side-action {
        min-height: 52px;
        padding: 8px 9px;
        gap: 7px;
    }

    .car-mode-shell.layout-portrait .car-mode-side-action span {
        font-size: 9px;
    }

    .car-mode-shell.layout-portrait .car-mode-controls {
        grid-template-columns: minmax(0, 1fr) 52px 78px 52px;
    }
}

/* ------------------------------------- */
/* 360 PANORAMA (PANNELLUM) HACKS        */
/* ------------------------------------- */
/* Sağ tıklayınca çıkan "Pannellum 2.5.6" yazısını ve diğer logoları gizle */
.pnlm-about-msg,
.pnlm-logo,
.pnlm-sprite {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
