html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ========================================
   RADYO FM - PREMIUM LAYOUT
   Professional & Aesthetic Design
======================================== */

/* Ana Wrapper */
.app-layout {
    display: flex;
    min-height: 100vh;
    background: #FAFAFA;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Hide Mobile Components on Desktop */
.sticky-mobile-player {
    display: none;
}

/* ========================================
   SOL SIDEBAR - PREMIUM
======================================== */
.sidebar-left {
    width: 280px;
    min-width: 280px;
    background: #FFFFFF;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.03);
    padding-bottom: 120px;
}

@media (max-width: 1100px) {
    .sidebar-left {
        transform: translateX(-105%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.2);
        width: 300px;
        display: flex !important;
        /* Always flex, but moved off-screen */
    }

    .sidebar-left.open {
        transform: translateX(0);
    }

    /* Hide Player in Mobile Menu */
    .sidebar-left .mini-player-container {
        display: none !important;
    }
}

/* ========================================
   SIDEBAR BRANDING - PREMIUM LUXURY
======================================== */
.sidebar-brand-wrapper {
    position: relative;
    padding: 40px 20px;
    background: #FFFFFF;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Glow */
.brand-glow-effect {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

/* Logo Inner Wrapper */
.brand-logo-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* Luxury Icon Box */
.brand-icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-icon-box:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Pulse Ring Effect */
.live-pulse-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(225, 29, 72, 0.3);
    border-radius: 20px;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Brand Text Typography */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: .9;
    align-items: center;
}

.brand-word-1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.brand-word-2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #E11D48;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 4px;
}

/* Logo Image Styles - Premium */
.brand-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

.sidebar-main-logo {
    width: 160px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo-link:hover .sidebar-main-logo {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    pointer-events: none;
}

/* Minimized Live Status */
.minimized-live-status {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEF2F2;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #E11D48;
    border-radius: 50%;
    animation: live-blink 1.5s infinite ease-in-out;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9F1239;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes live-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Sidebar Navigation - Premium */
.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    color: #6B7280;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.sidebar-nav-link:hover {
    background: #F9FAFB;
    color: #374151;
}

.sidebar-nav-link.active {
    background: linear-gradient(135deg, #FEF2F2, #FFFFFF);
    color: #E11D48;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.sidebar-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-request-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.25);
}

.sidebar-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.sidebar-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.sidebar-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #6B7280;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.sidebar-social a:hover {
    transform: translateY(-4px) scale(1.1);
    color: #fff;
    border-color: transparent;
}

/* Brand Colors */
.sidebar-social a:hover .fa-facebook-f {
    background: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.sidebar-social a:has(.fa-facebook-f):hover {
    background: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.sidebar-social a:has(.fa-instagram):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 8px 20px rgba(214, 36, 159, 0.3);
}

.sidebar-social a:has(.fa-x-twitter):hover {
    background: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sidebar-social a:has(.fa-youtube):hover {
    background: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* ========================================
   ANA İÇERİK - PREMIUM
======================================== */
.main-content {
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FAFAFA;
    overflow-x: hidden;
    width: 100%;
}

@media (min-width: 1101px) {
    .main-content {
        margin-left: 280px;
        margin-right: 300px;
    }
}

@media (max-width: 1100px) {
    .sidebar-right {
        display: none !important;
    }

    .main-content {
        margin: 0 !important;
    }
}

/* ========================================
   HERO PLAYER SECTION - LUXURY REDESIGN
======================================== */
.hero-player-section {
    padding: 60px 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.hero-player-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-player-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Info Side (Right) */
.hero-info-side {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
}

/* Program Info */
.program-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E11D48;
    background: rgba(225, 29, 72, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #E11D48;
    border-radius: 50%;
    animation: live-blink 1.5s infinite;
}

.hero-program-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
}

/* Glassmorphic Song Card */
.hero-song-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hero-song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hero-song-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-song-text {
    flex: 1;
}

.hero-song-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.hero-song-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    line-height: 1.3;
}

.hero-artist-name {
    font-size: 0.95rem;
    color: #E11D48;
    font-weight: 500;
}

/* Mini EQ Animation */
.hero-eq-bars-mini {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
    opacity: 0.5;
}

.hero-eq-bars-mini span {
    width: 3px;
    background: #E11D48;
    border-radius: 2px;
    animation: hero-bounce 1s infinite ease-in-out;
}

.hero-eq-bars-mini span:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.hero-eq-bars-mini span:nth-child(2) {
    height: 80%;
    animation-delay: 0.3s;
}

.hero-eq-bars-mini span:nth-child(3) {
    height: 50%;
    animation-delay: 0.5s;
}

.hero-eq-bars-mini span:nth-child(4) {
    height: 70%;
    animation-delay: 0.2s;
}

@keyframes hero-bounce {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.vinyl-container {
    position: relative;
    width: 260px;
    height: 260px;
}

/* Dış Halka - Glow Effect */
.vinyl-outer-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            rgba(251, 113, 133, 0.4),
            rgba(251, 146, 60, 0.4),
            rgba(250, 204, 21, 0.4),
            rgba(74, 222, 128, 0.4),
            rgba(56, 189, 248, 0.4),
            rgba(167, 139, 250, 0.4),
            rgba(251, 113, 133, 0.4));
    filter: blur(20px);
    opacity: 0.6;
    animation: glow-rotate 10s linear infinite;
}

@keyframes glow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Ana Vinyl Disk */
.vinyl-disc {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #FB7185 0deg,
            #F472B6 45deg,
            #FBBF24 90deg,
            #A3E635 135deg,
            #34D399 180deg,
            #22D3EE 225deg,
            #818CF8 270deg,
            #C084FC 315deg,
            #FB7185 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.8),
        inset 0 0 60px rgba(0, 0, 0, 0.1);
    animation: spin-vinyl 12s linear infinite paused;
}

.vinyl-disc.playing {
    animation-play-state: running;
}

/* İç Siyah Alan */
.vinyl-disc::before {
    content: '';
    position: absolute;
    width: 55%;
    height: 55%;
    background: linear-gradient(145deg, #1F1F1F, #2D2D2D);
    border-radius: 50%;
    box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Groove Lines */
.vinyl-disc::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow:
        inset 0 0 0 10px rgba(0, 0, 0, 0.03),
        inset 0 0 0 20px rgba(0, 0, 0, 0.02),
        inset 0 0 0 30px rgba(0, 0, 0, 0.02);
}

/* Play Button - Center */
.vinyl-center {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    box-shadow:
        0 8px 30px rgba(225, 29, 72, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-center:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 40px rgba(225, 29, 72, 0.6),
        0 0 0 4px rgba(255, 255, 255, 1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.vinyl-center:active {
    transform: scale(0.98);
}

.vinyl-center i {
    margin-left: 4px;
    /* Play icon optical alignment */
}

.vinyl-center.playing i {
    margin-left: 0;
}

@keyframes spin-vinyl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   PLAYER CONTROLS - PREMIUM
======================================== */
.player-controls-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}

.player-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.player-control-btn:hover {
    border-color: #E11D48;
    color: #E11D48;
    background: #FEF2F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
}

.player-control-btn.active {
    background: #E11D48;
    border-color: #E11D48;
    color: #fff;
}

/* Volume Slider */
.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F3F4F6;
    padding: 10px 16px;
    border-radius: 30px;
}

.volume-slider-main {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #D1D5DB;
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider-main::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #E11D48;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
    transition: transform 0.2s ease;
}

.volume-slider-main::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ========================================
   VİTRİN SECTION - PREMIUM
======================================== */
.vitrin-section {
    padding: 30px 50px 50px;
}

.vitrin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vitrin-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
}

.vitrin-nav {
    display: flex;
    gap: 10px;
}

.vitrin-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vitrin-nav-btn:hover {
    border-color: #E11D48;
    color: #E11D48;
    background: #FEF2F2;
}

.vitrin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vitrin-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vitrin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vitrin-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vitrin-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

.vitrin-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #E11D48;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vitrin-card-content {
    padding: 20px;
}

.vitrin-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.vitrin-card-desc {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ========================================
   SAĞ SIDEBAR - PREMIUM
======================================== */
.sidebar-right {
    width: 300px;
    min-width: 300px;
    background: #FFFFFF;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding: 30px 24px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.03);
}

/* Weather Widget */
.weather-widget {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
}

.weather-location {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
}

.weather-condition {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 2px;
}

.weather-temp {
    font-size: 2.2rem;
    font-weight: 300;
    color: #111827;
}

/* Widget Label */
.widget-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E11D48;
    margin-bottom: 14px;
}

/* Next Show Widget */
.next-show-widget {
    margin-bottom: 32px;
}

.next-show-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #FEF2F2, #FFFFFF);
    border-radius: 16px;
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.next-show-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E11D48, #F472B6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.next-show-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.next-show-info p {
    font-size: 0.8rem;
    color: #6B7280;
}

/* Schedule Widget */
.schedule-widget {
    margin-bottom: 32px;
}

.schedule-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    margin-bottom: 16px;
}

.schedule-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.2s ease;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-size: 0.8rem;
    font-weight: 500;
    color: #9CA3AF;
    min-width: 50px;
}

.schedule-item.active .schedule-time {
    color: #E11D48;
    font-weight: 700;
}

.schedule-item.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #E11D48;
    border-radius: 50%;
    margin-top: 6px;
    margin-left: -22px;
    margin-right: 6px;
    animation: pulse 1.5s infinite;
}

.schedule-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.schedule-item.active .schedule-title {
    color: #111827;
    font-weight: 600;
}

.schedule-dj {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 2px;
}

/* App Download Widget */
.app-download-widget {
    background: linear-gradient(135deg, #E11D48, #9F1239);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.app-download-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.app-download-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 10px;
}

.app-download-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.app-download-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ========================================
   MOBILE HEADER - PREMIUM REFINEMENT
======================================== */
.mobile-header-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0 25px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.mobile-logo i {
    color: #E11D48;
    font-size: 28px;
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.3);
}

.mobile-logo span {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.mobile-menu-btn {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:active {
    transform: scale(0.9);
    background: #f1f5f9;
}

/* ========================================
   RESPONSIVE OVERRIDES
======================================== */
@media (max-width: 1200px) {
    .sidebar-right {
        display: none !important;
    }

    .main-content,
    .footer {
        margin-right: 0 !important;
    }
}

@media (max-width: 1100px) {
    .sidebar-left {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        /* Full screen menu */
        max-width: 100%;
        transform: translateY(-100%);
        /* Slide from top */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .sidebar-left.open {
        transform: translateY(0);
    }

    .sidebar-brand-wrapper {
        padding: 40px 20px;
        background: transparent;
        border: none;
    }

    .sidebar-nav {
        padding: 20px;
        flex-grow: 1;
        overflow-y: auto;
    }

    .sidebar-nav-link {
        padding: 16px 20px;
        font-size: 1.1rem;
        margin-bottom: 8px;
        border-radius: 16px;
    }

    .sidebar-footer {
        padding: 30px 20px 40px;
        background: transparent;
        border: none;
    }

    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }

    .mobile-header-bar {
        display: flex;
    }

    /* Hero Player Mobile */
    .hero-player-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-info-side {
        align-items: center;
        text-align: center;
        min-width: auto;
        /* Reset min-width for mobile */
        width: 100%;
    }

    .program-status-badge {
        align-self: center;
    }

    .hero-program-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-song-card {
        width: 100%;
        max-width: 400px;
        /* Prevent it from being too wide on tablets */
        justify-content: flex-start;
        text-align: left;
    }

    .vitrin-section {
        padding: 20px;
    }

    .vitrin-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vinyl-container {
        width: 200px;
        height: 200px;
    }

    .vinyl-center {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .player-controls-main {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Overlay for mobile menu */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   NEWS TICKER WIDGET
======================================== */
.news-ticker-widget {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.ticker-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #E11D48;
    letter-spacing: 0.1em;
}

.ticker-header i {
    color: #E11D48;
    background: rgba(225, 29, 72, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

.ticker-content-wrapper {
    position: relative;
    height: 380px;
    /* Increased height for card layout */
    overflow: hidden;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    /* Slide in from side instead of up */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    gap: 12px;
}

.ticker-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ticker-thumb {
    width: 100%;
    height: 180px;
    /* Larger feature image */
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticker-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticker-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-time::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #E11D48;
    border-radius: 50%;
}

.ticker-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.ticker-desc {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit visual lines if text is still too long */
    -webkit-box-orient: vertical;
    line-clamp: 4;
    /* Standard property */
    overflow: hidden;
}

.ticker-item:hover .ticker-title {
    color: #E11D48;
}

/* ========================================
   WEATHER WIDGET
======================================== */
.weather-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    /* Fresh Sky Blue Gradient */
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.15), 0 8px 10px -6px rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle decoration circle */
.weather-widget::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.weather-location {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c4a6e;
    /* Darker blue used for text */
    letter-spacing: -0.02em;
}

.weather-date {
    font-size: 0.85rem;
    color: #0369a1;
    font-weight: 600;
}

.weather-desc {
    font-size: 0.95rem;
    color: #075985;
    font-weight: 700;
    margin-top: 6px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.weather-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 8px 12px rgba(3, 105, 161, 0.2));
    animation: floatWeather 6s ease-in-out infinite;
}

.weather-temp {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0c4a6e;
    line-height: 1;
    margin-top: -5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

@keyframes floatWeather {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ========================================
   CONDITIONAL LAYOUT OVERRIDES 
======================================== */
/* Sidebar global visibility enabled */





/* ========================================
   GLOBAL FOOTER COMPONENT - LUXURY WHITE
======================================== */
.footer {
    background: #FFFFFF;
    padding: 80px 0 140px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin-left: 260px !important;
    margin-right: 300px !important;
    color: #475569;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.footer-slogan {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    color: #475569;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.footer-social a:hover {
    color: #ffffff;
    background: #E11D48;
    border-color: #E11D48;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.15);
}

.footer-nav-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
    position: relative;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #E11D48;
    border-radius: 2px;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-nav-col ul li a:hover {
    color: #E11D48;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #E11D48;
}

/* ========================================
   HOME PAGE BLOCKS - LUXURY UI
======================================== */
.vitrin-section {
    padding: 60px 40px;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 8px;
}

/* Instagram Block */
.instagram-block {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.5);
}

/* App Banner Block */
.app-banner-card {
    background: #f8fafc;
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.app-banner-content {
    flex: 1.2;
}

.app-tag {
    color: #E11D48;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 15px;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.app-desc {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-links {
    display: flex;
    gap: 15px;
}

.app-btn {
    background: #000;
    color: #fff;
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn i {
    font-size: 28px;
}

.app-btn span {
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    opacity: 0.8;
}

.app-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-banner-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    color: #E11D48;
    font-size: 120px;
}

/* ========================================
   CONDITIONAL LAYOUT OVERRIDES 
======================================== */
.is-subpage .sidebar-right {
    display: none !important;
}

.is-subpage .main-content {
    margin-right: 0 !important;
}

.is-subpage .footer {
    margin-right: 0 !important;
}

@media (max-width: 1024px) {
    .app-banner-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .app-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-title {
        font-size: 2rem;
    }
}

/* Hearing Ways Block */
.hearing-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.hearing-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hearing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hearing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FEF2F2, #FFFFFF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #E11D48;
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.hearing-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.hearing-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.hearing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #E11D48;
    text-decoration: none;
}

/* Reklam CTA Block */
.reklam-cta-card {
    background: #111827;
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.reklam-cta-glow {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.25) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 1;
}

.reklam-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.reklam-tag {
    color: #E11D48;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 15px;
}

.reklam-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.reklam-desc {
    color: #94a3af;
    font-size: 1.15rem;
    line-height: 1.6;
}

.reklam-cta-action {
    position: relative;
    z-index: 2;
}

.reklam-btn {
    background: #E11D48;
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.reklam-btn:hover {
    background: #be123c;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.4);
}

@media (max-width: 1024px) {
    .reklam-cta-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }

    .reklam-title {
        font-size: 1.8rem;
    }
}

.top10-block {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.top10-card {
    background: #FAFAFA;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.top10-badge-crown {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(253, 185, 49, 0.4);
}

.top10-badge-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

.card-img-container {
    height: 160px;
    position: relative;
    overflow: hidden;
}

/* Popular Songs Grid (Desktop) */
.top10-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .top10-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vitrin-section {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Top 10 Mobile Fixes & Slider */
    .top10-slider-container {
        position: relative;
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: hidden;
        width: calc(100% + 40px);
    }

    .top10-grid-wrapper {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 15px 0 35px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .top10-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .top10-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin: 0 !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .top10-card:active {
        transform: scale(0.98);
    }

    /* Instagram Block Fixes */
    .instagram-header {
        text-align: center;
        margin-bottom: 24px;
    }

    .instagram-header i {
        font-size: 2rem;
        color: #E1306C;
        margin-bottom: 12px;
    }

    .instagram-btn {
        width: 100%;
        justify-content: center;
    }

    /* App Banner Block Fixes */
    .app-banner-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 30px;
    }

    .app-title {
        font-size: 1.8rem;
    }

    .app-links {
        flex-direction: column;
        gap: 12px;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }

    .app-mockup {
        width: 180px;
        height: 180px;
        font-size: 80px;
    }

    /* Footer Mobile Overhaul */
    .footer {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 60px 0 120px !important;
        text-align: center;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        margin-bottom: 60px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-slogan {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}