﻿        /* ============================================
           PERFORMANCE & OPTIMIZATION
           ============================================ */
        
        /* Lazy Loading Images */
        img.lazy,
        img[data-src] {
            opacity: 0;
            transition: opacity 0.3s ease;
            background: #f0f0f0;
            min-height: 100px;
        }
        
        img.lazy.loaded,
        img[data-src].loaded {
            opacity: 1;
        }
        
        /* Image Optimization */
        img {
            max-width: 100%;
            height: auto;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        
        /* ============================================
           AÇIK/KOYU TEMA SİSTEMİ
           ============================================ */
        
        /* Açık Tema (Light Mode) - Varsayılan */
        :root {
            /* Ana Renkler - Modern Mor/Mavi Gradient */
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #a855f7;
            --danger-color: #ef4444;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --info-color: #3b82f6;
            
            /* Arka Plan Renkleri */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --bg-card: #ffffff;
            --bg-overlay: rgba(255, 255, 255, 0.95);
            
            /* Metin Renkleri */
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-tertiary: #94a3b8;
            --text-inverse: #ffffff;
            
            /* Border ve Shadow */
            --border-color: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
            
            /* Sohbet Formu */
            --chat-bg-gradient-start: #1e293b;
            --chat-bg-gradient-end: #334155;
            --chat-text-white: #ffffff;
            --chat-button-gradient-start: #6366f1;
            --chat-button-gradient-end: #8b5cf6;
            
            /* DJ KartlarÄ± */
            --dj-card-bg: rgba(255, 255, 255, 0.95);
            --dj-card-border: rgba(255, 255, 255, 0.2);
            --dj-live-gradient-start: #ef4444;
            --dj-live-gradient-end: #dc2626;
            
            /* Player */
            --player-bg: rgba(255, 255, 255, 0.95);
            --player-text: #0f172a;
        }
        
        /* Koyu Tema (Dark Mode) */
        [data-theme="dark"] {
            /* Ana Renkler - AynÄ± kalÄ±r */
            --primary-color: #818cf8;
            --secondary-color: #a78bfa;
            --accent-color: #c084fc;
            
            /* Arka Plan Renkleri */
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --bg-tertiary: #334155;
            --bg-card: #1e293b;
            --bg-overlay: rgba(30, 41, 59, 0.95);
            
            /* Metin Renkleri */
            --text-primary: #f1f5f9;
            --text-secondary: #cbd5e1;
            --text-tertiary: #94a3b8;
            --text-inverse: #0f172a;
            
            /* Border ve Shadow */
            --border-color: #334155;
            --border-light: #475569;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
            
            /* Sohbet Formu */
            --chat-bg-gradient-start: #0f172a;
            --chat-bg-gradient-end: #1e293b;
            
            /* DJ KartlarÄ± */
            --dj-card-bg: rgba(30, 41, 59, 0.95);
            --dj-card-border: rgba(255, 255, 255, 0.1);
            
            /* Player */
            --player-bg: rgba(30, 41, 59, 0.95);
            --player-text: #f1f5f9;
        }
        
        /* Tema GeÃ§iÅŸ Animasyonu */
        * {
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }
        
        /* Modern Navbar - Tema DesteÄŸi */
        .rd-navbar-wrap {
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            position: relative;
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        }
        
        .rd-navbar {
            background: transparent !important;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            min-height: 80px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .rd-navbar.rd-navbar-corporate {
            background: #0f172a !important;
        }
        
        .rd-navbar.rd-navbar-fixed {
            background: #0f172a !important;
        }
        
        .rd-navbar.rd-navbar-fixed.rd-navbar-fixed-element-1 {
            background: #0f172a !important;
        }
        
        .rd-navbar-panel {
            background: #0f172a !important;
            display: flex;
            align-items: center;
            min-height: 70px;
        }
        
        .rd-navbar-main {
            background: #0f172a !important;
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .rd-navbar-main-outer {
            width: 100%;
            background: #0f172a !important;
        }
        
        .rd-navbar-main-element {
            background: #0f172a !important;
        }
        
        .rd-navbar-nav-wrap {
            background: #0f172a !important;
        }
        
        .rd-navbar-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .rd-nav-item {
            position: relative;
        }
        
        .rd-nav-link {
            color: #cbd5e1 !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
            padding: 12px 20px !important;
            display: block;
            border-radius: 8px;
            position: relative;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
        }
        
        .rd-nav-link::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        
        .rd-nav-link:hover {
            color: #ffffff !important;
            background: rgba(99, 102, 241, 0.1);
            transform: translateY(-2px);
        }
        
        .rd-nav-link:hover::before {
            transform: translateX(-50%) scaleX(1);
        }
        
        .rd-nav-item.active .rd-nav-link,
        .rd-nav-item.rd-nav-item-active .rd-nav-link {
            color: #ffffff !important;
            background: rgba(99, 102, 241, 0.15);
        }
        
        .rd-nav-item.active .rd-nav-link::before,
        .rd-nav-item.rd-nav-item-active .rd-nav-link::before {
            transform: translateX(-50%) scaleX(1);
        }
        
        .rd-navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .rd-navbar-brand .brand {
            filter: none;
            display: flex;
            align-items: center;
        }
        
        /* Logo - Her zaman aÃ§Ä±k renkli logo gÃ¶ster */
        .rd-navbar-brand .brand-logo-dark {
            display: none !important;
        }
        
        .rd-navbar-brand .brand-logo-light {
            display: block !important;
        }
        
        [data-theme="dark"] .rd-navbar-brand .brand-logo-dark {
            display: none !important;
        }
        
        [data-theme="dark"] .rd-navbar-brand .brand-logo-light {
            display: block !important;
        }
        
        /* Modern Navbar Butonları */
        .rd-navbar-collapse .button.button-secondary.button-nuka {
            background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--secondary-color) 50%,
                var(--accent-color) 100%) !important;
            background-size: 300% 100% !important;
            color: white !important;
            border: none !important;
            box-shadow: 
                0 6px 20px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
            padding: 14px 32px !important;
            border-radius: 12px !important;
            font-weight: 700 !important;
            font-size: 15px !important;
            white-space: nowrap;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            position: relative !important;
            overflow: hidden !important;
            font-family: 'Poppins', sans-serif !important;
            letter-spacing: 0.5px !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 14px;
            background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--secondary-color) 50%,
                var(--accent-color) 100%);
            background-size: 300% 100%;
            z-index: -1;
            filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:hover {
            transform: translateY(-4px) scale(1.02) !important;
            box-shadow: 
                0 12px 35px rgba(99, 102, 241, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
            background-position: 100% 50% !important;
            color: white !important;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:hover::after {
            opacity: 0.6;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:active {
            transform: translateY(-2px) scale(0.98) !important;
            box-shadow: 
                0 6px 20px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15) !important;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka i {
            position: relative;
            z-index: 1;
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:hover i {
            transform: scale(1.15) rotate(5deg);
        }
        
        /* DJ Giriş Butonu - Modern Pembe/Kırmızı Gradient */
        .rd-navbar-collapse .button.button-dj-login {
            background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%) !important;
            background-size: 200% 100% !important;
            color: white !important;
            border: none !important;
            box-shadow: 
                0 6px 20px rgba(236, 72, 153, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
            padding: 14px 32px !important;
            border-radius: 12px !important;
            font-weight: 700 !important;
            font-size: 15px !important;
            white-space: nowrap;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            position: relative !important;
            overflow: hidden !important;
            font-family: 'Poppins', sans-serif !important;
            letter-spacing: 0.5px !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }
        
        .rd-navbar-collapse .button.button-dj-login::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .rd-navbar-collapse .button.button-dj-login::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 14px;
            background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
            background-size: 200% 100%;
            z-index: -1;
            filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .rd-navbar-collapse .button.button-dj-login:hover {
            transform: translateY(-4px) scale(1.02) !important;
            box-shadow: 
                0 12px 35px rgba(236, 72, 153, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
            background-position: 100% 50% !important;
            color: white !important;
        }
        
        .rd-navbar-collapse .button.button-dj-login:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .rd-navbar-collapse .button.button-dj-login:hover::after {
            opacity: 0.6;
        }
        
        .rd-navbar-collapse .button.button-dj-login:active {
            transform: translateY(-2px) scale(0.98) !important;
            box-shadow: 
                0 6px 20px rgba(236, 72, 153, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15) !important;
        }
        
        .rd-navbar-collapse .button.button-dj-login i {
            position: relative;
            z-index: 1;
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .rd-navbar-collapse .button.button-dj-login:hover i {
            transform: scale(1.15) rotate(5deg);
        }
        
        .rd-navbar-collapse .button.button-dj-login span {
            position: relative;
            z-index: 1;
        }
        
        .rd-navbar-collapse .button-overlay {
            display: none !important;
        }
        
        /* Navbar butonları arası boşluk */
        .rd-navbar-collapse {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
        }
        
        .rd-navbar-collapse .button.button-secondary.button-nuka:first-child {
            margin-right: 0 !important;
        }
        
        /* Responsive Navbar Butonları */
        @media (max-width: 991px) {
            .rd-navbar-collapse .button.button-secondary.button-nuka {
                padding: 12px 24px !important;
                font-size: 14px !important;
            }
        }
        
        @media (max-width: 768px) {
            .rd-navbar-collapse {
                flex-direction: column !important;
                width: 100% !important;
            }
            
            .rd-navbar-collapse .button.button-secondary.button-nuka {
                width: 100% !important;
                justify-content: center !important;
                padding: 14px 24px !important;
            }
        }
        
        /* Page Header */
        .page-header {
            background: #0f172a !important;
            position: relative;
        }
        
        .page-header .section {
            background: #0f172a !important;
        }
        
        /* Navbar Toggle Butonu */
        .rd-navbar-toggle {
            color: #f1f5f9 !important;
            background: transparent !important;
            border: none !important;
            padding: 10px !important;
        }
        
        .rd-navbar-toggle span,
        .rd-navbar-toggle span::before,
        .rd-navbar-toggle span::after {
            background-color: #f1f5f9 !important;
        }
        
        .rd-navbar-collapse-toggle span,
        .rd-navbar-collapse-toggle span::before,
        .rd-navbar-collapse-toggle span::after {
            background-color: #f1f5f9 !important;
        }
        
        /* Navbar Collapse AlanÄ± */
        .rd-navbar-collapse {
            display: flex !important;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        
        .rd-navbar-collapse .button {
            white-space: nowrap;
            font-size: 14px;
            padding: 10px 20px !important;
        }
        
        @media (max-width: 991px) {
            .rd-navbar-collapse {
                width: 100%;
                justify-content: center;
                padding: 15px 0;
                flex-direction: column;
            }
            
            .rd-navbar-collapse .button {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Navbar Main Element */
        .rd-navbar-main-element {
            display: flex !important;
            align-items: center;
            gap: 20px;
            flex: 1;
            justify-content: space-between;
        }
        
        /* Navbar Nav Wrap */
        .rd-navbar-nav-wrap {
            flex: 1;
            display: flex !important;
            align-items: center;
            position: relative !important;
            transform: none !important;
            width: auto !important;
            padding: 0 !important;
            overflow: visible !important;
        }
        
        /* Navbar Nav */
        .rd-navbar-nav {
            display: flex !important;
            align-items: center;
            gap: 5px;
            margin: 0;
            padding: 0;
            list-style: none;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .rd-nav-item {
            list-style: none;
            margin: 0;
        }
        
        /* Navbar Responsive */
        @media (max-width: 991px) {
            .rd-navbar-main-element {
                flex-direction: column;
                align-items: stretch;
            }
            
            .rd-navbar-nav-wrap {
                width: 100%;
            }
            
            .rd-navbar-collapse {
                width: 100%;
                justify-content: center;
                padding: 15px 0;
            }
            
            .rd-navbar-nav {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            
            .rd-nav-item {
                width: 100%;
            }
            
            .rd-nav-link {
                width: 100%;
                padding: 15px !important;
            }
        }
        
        /* Navbar Fixed State */
        .rd-navbar.rd-navbar-fixed-element-1 {
            background: #0f172a !important;
        }
        
        /* Navbar Dropdown MenÃ¼ler */
        .rd-navbar-dropdown {
            background: #1e293b !important;
            border: 1px solid #334155 !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
        }
        
        .rd-dropdown-link {
            color: #f1f5f9 !important;
        }
        
        .rd-dropdown-link:hover {
            color: #818cf8 !important;
            background: #334155 !important;
        }
        
        /* Navbar Collapse Toggle */
        .rd-navbar-collapse-toggle {
            display: none;
            background: #0f172a !important;
        }
        
        @media (max-width: 991px) {
            .rd-navbar-toggle {
                display: block !important;
                position: relative;
                z-index: 1081;
                cursor: pointer;
            }
            
            .rd-navbar-collapse-toggle {
                display: block;
                cursor: pointer;
            }
            
            .rd-navbar-nav-wrap {
                background: #0f172a !important;
                position: fixed !important;
                left: 0;
                top: 56px;
                width: 270px !important;
                max-width: 80vw !important;
                height: calc(100vh - 56px) !important;
                transform: translateX(-110%) !important;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
                z-index: 1079;
                padding: 20px 0 !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                box-shadow: 2px 0 15px rgba(0, 0, 0, 0.4) !important;
            }
            
            .rd-navbar-nav-wrap.active,
            .rd-navbar-nav-wrap.opened,
            .rd-navbar-nav-wrap.mobile-menu-open {
                transform: translateX(0) !important;
            }
            
            .rd-navbar-nav {
                background: #0f172a !important;
                flex-direction: column !important;
                width: 100% !important;
                gap: 0 !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            
            .rd-nav-item {
                width: 100% !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                margin: 0 !important;
            }
            
            .rd-nav-link {
                width: 100% !important;
                padding: 15px 20px !important;
                display: block !important;
                border-radius: 0 !important;
                color: #cbd5e1 !important;
                transition: all 0.2s ease !important;
            }
            
            .rd-nav-link:hover {
                background: rgba(99, 102, 241, 0.1) !important;
                color: #ffffff !important;
                padding-left: 25px !important;
            }
            
            /* Overlay - Menü açıkken arka planı karart */
            .rd-navbar-nav-wrap.mobile-menu-open::after {
                content: '';
                position: fixed;
                top: 56px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 1078;
                pointer-events: auto;
                animation: fadeIn 0.3s ease;
            }
            
            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }
        }
        
        /* Desktop görünümde menü her zaman görünür */
        @media (min-width: 992px) {
            .rd-navbar-nav-wrap {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                transform: none !important;
                position: relative !important;
                width: auto !important;
                height: auto !important;
                padding: 0 !important;
                overflow: visible !important;
            }
            
            .rd-navbar-nav {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }
        
        /* Navbar iÃ§indeki tÃ¼m beyaz alanlarÄ± kaldÄ±r */
        .rd-navbar,
        .rd-navbar-wrap,
        .rd-navbar-main-outer,
        .rd-navbar-main,
        .rd-navbar-panel,
        .rd-navbar-main-element,
        .rd-navbar-nav-wrap,
        .rd-navbar-collapse {
            background: #0f172a !important;
        }
        
        /* Navbar iÃ§indeki link ve text elementleri */
        .rd-navbar a:not(.button),
        .rd-navbar li {
            background: transparent !important;
        }
        
        /* Butonlar hariÃ§ tut */
        .rd-navbar .button {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
        }
        
        /* Tema Toggle Butonu */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            transform: scale(1.1) rotate(180deg);
            box-shadow: var(--shadow-xl);
        }
        
        .theme-toggle:active {
            transform: scale(0.95);
        }
        
        /* Body Arka Plan */
        body {
            background-color: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        /* Modern DJ KartlarÄ± */
        .dj-card-modern {
            margin-bottom: 30px;
            padding: 0 15px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* DJ Grid Container - Tam Ekran */
        #djs .container-fluid {
            width: 100%;
            max-width: 100%;
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #djs .section-title-modern.dj-section {
            width: 100%;
            max-width: 100%;
            text-align: center !important;
            margin: 0 auto 40px auto !important;
            margin-bottom: 40px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        #djs .section-title-modern.dj-section h2 {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 1000px !important;
            display: block !important;
        }
        
        #djs .section-title-modern.dj-section .big {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 900px !important;
            display: block !important;
        }
        
        /* DJ Wrapper - 2 Sütunlu Yapı */
        .djs-wrapper {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 25px;
            width: 100%;
            align-items: start;
        }
        
        .djs-left {
            width: 100%;
        }
        
        .djs-slider-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .djs-slider-container {
            overflow: hidden;
            width: 100%;
            position: relative;
        }
        
        .djs-slider-wrapper {
            overflow: hidden;
        }
        
        /* Ana sayfa için slider (index.php) */
        body.home #djs #djsGrid {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            display: flex !important;
            flex-wrap: nowrap !important;
            margin: 0 !important;
        }
        
        /* Bootstrap grid genişliklerini koru, sadece flex ile kaydır */
        body.home #djs #djsGrid .dj-card-modern {
            flex-shrink: 0;
            /* Bootstrap class'ları genişliği zaten belirliyor */
        }
        
        #djs #djsGrid.row {
            display: flex !important;
        }
        
        .djs-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }
        
        .djs-slider-wrapper:hover .djs-nav-btn {
            opacity: 1;
            pointer-events: all;
        }
        
        .djs-nav-btn:hover {
            background: linear-gradient(135deg, rgba(99, 102, 241, 1) 0%, rgba(139, 92, 246, 1) 100%);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
        }
        
        .djs-nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .djs-prev {
            left: 15px;
        }
        
        .djs-next {
            right: 15px;
        }
        
        .djs-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        .djs-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
        }
        
        .djs-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        
        .djs-dot:hover {
            background: rgba(99, 102, 241, 0.5);
            transform: scale(1.2);
        }
        
        .djs-dot.active {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            width: 30px;
            border-radius: 5px;
        }
        
        .djs-right {
            width: 100%;
            position: sticky;
            top: 20px;
            align-self: start;
        }
        
        .djs-right .section-title-modern.weekly-top-djs-section {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .djs-right .section-title-modern.weekly-top-djs-section h2 {
            font-size: 28px;
            margin-bottom: 12px;
        }
        
        .djs-right .section-title-modern.weekly-top-djs-section .big {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        /* Articles ve Songs bölümleri için de aynı ortalamalar */
        #articles .container-fluid,
        #songs .container-fluid {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            overflow: visible;
            min-height: auto;
        }
        
        #articles .section-title-modern {
            width: 100%;
            max-width: 100%;
            text-align: center !important;
            margin: 0 auto 40px auto !important;
            margin-bottom: 40px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        #songs .section-title-modern,
        #popularRadiosSection .section-title-modern {
            width: 100%;
            max-width: 100%;
            text-align: left !important;
            margin: 0 0 30px 0 !important;
            margin-bottom: 30px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
            padding: 0 !important;
        }
        
        #articles .section-title-modern h2 {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 1000px !important;
            display: block !important;
        }
        
        #songs .section-title-modern h2,
        #popularRadiosSection .section-title-modern h2 {
            text-align: left !important;
            margin-left: 0 !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 100% !important;
            display: block !important;
            margin-top: 0 !important;
        }
        
        #articles .section-title-modern .big {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 900px !important;
            display: block !important;
        }
        
        #songs .section-title-modern .big,
        #popularRadiosSection .section-title-modern .big {
            text-align: left !important;
            margin-left: 0 !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 100% !important;
            display: block !important;
            margin-top: 15px !important;
        }
        
        /* FAQ bölümü için de aynı ortalamalar */
        #faq .container-fluid {
            width: 100%;
            max-width: 100%;
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #faq .container {
            width: 100%;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #faq .section-title-modern {
            width: 100%;
            max-width: 100%;
            text-align: center !important;
            margin: 0 auto 40px auto !important;
            margin-bottom: 40px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        #faq .section-title-modern h2 {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 1000px !important;
            display: block !important;
        }
        
        #faq .section-title-modern .big {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            width: 100% !important;
            max-width: 900px !important;
            display: block !important;
        }
        
        /* Contact bölümü için modern tasarım */
        #contact {
            position: relative;
        }
        
        #contact h6 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        #contact h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        #contact .big {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            font-weight: 400;
        }
        
        #djs .row {
            width: 100%;
            margin: 0;
            max-width: 100%;
            display: flex;
            flex-wrap: wrap;
        }
        
        #djs .row .col-md-6,
        #djs .row .col-lg-4,
        #djs .row .col-xl-3 {
            padding: 0 15px;
        }
        
        .dj-schedule {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 12px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            margin: 12px 0;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 600;
            border: 1px solid var(--border-color);
        }
        
        .dj-schedule i {
            color: var(--primary-color);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dj-card-modern-inner {
            background: var(--dj-card-bg);
            cursor: pointer;
            border-radius: 16px;
            padding: 25px 20px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
            color: var(--text-primary);
        }
        
        .dj-card-modern-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .dj-card-modern-inner:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .dj-card-modern-inner:hover::before {
            transform: scaleX(1);
        }
        
        .dj-live-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--dj-live-gradient-start) 0%, var(--dj-live-gradient-end) 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 10;
            box-shadow: 0 3px 12px rgba(255, 65, 108, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }
        
        .live-pulse {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
            }
            50% {
                box-shadow: 0 4px 25px rgba(255, 65, 108, 0.7);
            }
        }
        
        @keyframes pulse-dot {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }
        
        .dj-card-modern-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            overflow: hidden;
        }
        
        .dj-card-modern-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .dj-card-modern-avatar i {
            position: relative;
            z-index: 0;
        }
        
        .dj-card-modern-inner:hover .dj-card-modern-avatar {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .dj-avatar-overlay {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            animation: rotate 3s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .dj-card-modern-content {
            text-align: center;
            padding: 0 10px;
        }
        
        .dj-card-modern-name {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            padding: 0;
        }
        
        .dj-card-modern-bio {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0 0 15px 0;
            min-height: 36px;
            padding: 0;
        }
        
        .dj-card-modern-stats {
            display: flex;
            justify-content: space-around;
            margin: 0 0 18px 0;
            padding: 18px 10px;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .dj-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .dj-stat-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .dj-card-modern-inner:hover .dj-stat-icon {
            transform: translateY(-5px) scale(1.1);
        }
        
        .dj-stat-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .dj-stat-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        
        .dj-stat-label {
            font-size: 10px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }
        
        .dj-card-modern-btn {
            width: 100%;
            margin: 0;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .dj-card-modern-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .dj-card-modern-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .dj-card-modern-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .dj-card-modern-btn:active {
            transform: translateY(-1px);
        }
        
        .dj-card-modern-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        .dj-card-modern-btn span {
            position: relative;
            z-index: 1;
        }
        
        .dj-card-modern-btn i {
            position: relative;
            z-index: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .dj-card-modern {
                padding: 0 10px;
            }
            
            .dj-card-modern-inner {
                padding: 30px 25px;
            }
            
            .dj-card-modern-avatar {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }
            
            .dj-card-modern-name {
                font-size: 20px;
            }
            
            .dj-card-modern-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .dj-stat-item {
                flex-direction: row;
                justify-content: center;
            }
        }
        
        /* Modern BÃ¶lÃ¼m BaÅŸlÄ±klarÄ± */
        .section-title-modern {
            text-align: center;
            margin: 0 auto 60px auto;
            position: relative;
            padding: 40px 20px;
            width: 100%;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .section-title-modern h6 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin: 0 auto 15px auto;
            position: relative;
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 25px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            text-align: center;
        }
        
        .section-title-modern h6::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -8px;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title-modern h2 {
            font-size: 42px;
            font-weight: 800;
            margin: 25px auto 20px auto;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            position: relative;
            display: block;
            width: 100%;
            max-width: 1000px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title-modern h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
            border-radius: 2px;
            animation: expandLine 1s ease-out;
        }
        
        @keyframes expandLine {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 80px;
                opacity: 1;
            }
        }
        
        .section-title-modern .big {
            font-size: 18px;
            color: #718096;
            line-height: 1.7;
            max-width: 900px;
            width: 100%;
            margin: 30px auto 0 auto;
            font-weight: 400;
            text-align: center;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Ä°konlu BaÅŸlÄ±klar */
        .section-title-modern.with-icon h6 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .section-title-modern.with-icon h6 i {
            font-size: 18px;
            animation: floatIcon 3s ease-in-out infinite;
        }
        
        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        /* Ã–zel Gradient Efektler */
        .section-title-modern.dj-section h2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title-modern.article-section h2 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title-modern.song-section h2 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Responsive BaÅŸlÄ±klar */
        @media (max-width: 768px) {
            .section-title-modern h2 {
                font-size: 32px;
            }
            
            .section-title-modern .big {
                font-size: 16px;
            }
            
            .section-title-modern {
                padding: 30px 15px;
            }
        }
        
        /* Modern Makale KartlarÄ± - Ana sayfa için */
        body.home .article-card-modern {
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .article-card-link {
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .article-card-link:hover {
            text-decoration: none;
            color: inherit;
        }
        
        .article-card-modern-inner {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .article-card-modern-inner:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .article-card-modern-image {
            width: 100%;
            height: 220px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 64px;
            overflow: hidden;
        }
        
        .article-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
            transition: background 0.4s ease;
        }
        
        .article-card-modern-inner:hover .article-image-overlay {
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        }
        
        .article-category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px 16px;
            border-radius: 25px;
            color: white;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .article-category-badge i {
            font-size: 11px;
        }
        
        .article-card-modern-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: var(--bg-card);
            color: var(--text-primary);
        }
        
        .article-card-modern-title {
            color: var(--text-primary);
        }
        
        .article-card-modern-excerpt {
            color: var(--text-secondary);
        }
        
        .article-card-modern-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-primary);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 56px;
        }
        
        .article-card-modern-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 20px 0;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-card-modern-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }
        
        .article-date-modern,
        .article-views {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        
        .article-date-modern i,
        .article-views i {
            color: var(--primary-color);
        }
        
        /* Responsive Makaleler */
        @media (max-width: 768px) {
            body.home .article-card-modern {
                padding: 0 10px;
            }
            
            .article-card-modern-content {
                padding: 20px;
            }
            
            .article-card-modern-title {
                font-size: 18px;
                min-height: 50px;
            }
            
            .article-card-modern-image {
                height: 180px;
            }
        }
        
        /* Section Arka PlanlarÄ± - Tema DesteÄŸi */
        .section.bg-default {
            background-color: var(--bg-secondary) !important;
        }
        
        .section-title-modern {
            color: var(--text-primary);
        }
        
        .section-title-modern h2 {
            color: var(--text-primary);
        }
        
        .section-title-modern h6 {
            color: var(--text-secondary);
        }
        
        .section-title-modern .big {
            color: var(--text-secondary);
        }
        
        /* Font DeÄŸiÅŸikliÄŸi - Sadece belirli bÃ¶lÃ¼mler iÃ§in */
        .section-title-modern,
        /* Articles Grid - 5 Columns (Sadece articles.php için) */
        .articles-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            grid-auto-rows: auto;
            overflow: visible;
            min-height: auto;
        }
        
        .article-card-col {
            width: 100%;
            min-width: 0;
        }
        
        @media (max-width: 1200px) {
            .articles-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .articles-grid-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Ana sayfa için 4 sütunlu grid */
        .home #articles .articles-grid-container,
        body.home #articles .articles-grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            width: 100%;
            grid-auto-rows: auto;
            overflow: visible;
            min-height: auto;
        }
        
        .home #articles .article-card-col,
        body.home #articles .article-card-col {
            width: 100%;
            min-width: 0;
        }
        
        @media (max-width: 1399.98px) {
            .home #articles .articles-grid-container,
            body.home #articles .articles-grid-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1200px) {
            .home #articles .articles-grid-container,
            body.home #articles .articles-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .home #articles .articles-grid-container,
            body.home #articles .articles-grid-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Diğer sayfalar için varsayılan 3 sütunlu grid (ana sayfa değilse) */
        body:not(.home) #articles .articles-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            grid-auto-rows: auto;
            overflow: visible;
            min-height: auto;
        }
        
        body:not(.home) #articles .article-card-col {
            width: 100%;
            min-width: 0;
        }
        
        @media (max-width: 1200px) {
            body:not(.home) #articles .articles-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            body:not(.home) #articles .articles-grid-container {
                grid-template-columns: 1fr;
            }
        }
        
        .article-card-modern,
        .song-list-item {
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        
        /* Popüler Radyolar Listesi */
        .popular-radios-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .popular-radio-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            background: var(--bg-card);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .popular-radio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .popular-radio-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
            border-color: var(--primary-color);
        }
        
        .popular-radio-item:hover::before {
            transform: scaleY(1);
        }
        
        .popular-radio-avatar {
            width: 70px;
            height: 70px;
            border-radius: 14px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
        }
        
        .popular-radio-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-radio-item:hover .popular-radio-avatar {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }
        
        .popular-radio-info {
            flex: 1;
            min-width: 0;
        }
        
        .popular-radio-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .popular-radio-stats {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        
        .popular-radio-stats span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .popular-radio-stats i {
            color: var(--primary-color);
            font-size: 12px;
        }
        
        .popular-radio-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: 8px;
        }
        
        .popular-radio-live-badge .live-dot {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        
        .popular-radio-listen-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
            flex-shrink: 0;
            text-decoration: none;
        }
        
        .popular-radio-listen-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .popular-radio-listen-btn i {
            font-size: 14px;
        }
        
        @media (max-width: 991px) {
            .popular-radio-item {
                flex-wrap: wrap;
            }
            
            .popular-radio-listen-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Şarkı Listesi - Modern YouTube Entegrasyonu */
        .song-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 24px;
            background: var(--bg-card);
            border-radius: 18px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        
        .song-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .song-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
            border-color: var(--primary-color);
        }
        
        .song-item:hover::before {
            transform: scaleY(1);
        }
        
        .song-number {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }
        
        .song-item:hover .song-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }
        
        .song-thumbnail {
            width: 90px;
            height: 90px;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .song-thumbnail:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .song-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .song-thumbnail:hover img {
            transform: scale(1.1);
        }
        
        .song-play-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(2px);
        }
        
        .song-thumbnail:hover .song-play-overlay {
            opacity: 1;
        }
        
        .song-play-overlay i {
            color: white;
            font-size: 32px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            animation: pulseIcon 1.5s ease infinite;
        }
        
        @keyframes pulseIcon {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        .song-info {
            flex: 1;
            min-width: 0;
        }
        
        .song-title {
            font-size: 19px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }
        
        .song-artist {
            font-size: 15px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .song-stats {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
            min-width: 80px;
        }
        
        .song-stats span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        
        .song-stats i {
            color: var(--primary-color);
            font-size: 14px;
        }
        
        .song-download-btn {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            border: none;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .song-download-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .song-download-btn:hover {
            transform: scale(1.12) rotate(-5deg);
            box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
            color: white;
            text-decoration: none;
        }
        
        .song-download-btn:hover::before {
            opacity: 1;
        }
        
        .song-download-btn:active {
            transform: scale(1.05) rotate(-2deg);
        }
        
        .song-download-btn i {
            position: relative;
            z-index: 1;
        }
        
        .song-play-btn {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            border: none;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .song-play-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .song-play-btn:hover {
            transform: scale(1.12) rotate(5deg);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
        }
        
        .song-play-btn:hover::before {
            opacity: 1;
        }
        
        .song-play-btn:active {
            transform: scale(1.05) rotate(2deg);
        }
        
        .song-play-btn i {
            position: relative;
            z-index: 1;
        }
        
        /* YouTube Modal */
        .youtube-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .youtube-modal-content {
            position: relative;
            width: 100%;
            max-width: 1200px;
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .youtube-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .youtube-modal-close:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }
        
        .youtube-player-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        
        .youtube-player-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        @media (max-width: 768px) {
            .song-item {
                flex-wrap: wrap;
                padding: 15px;
            }
            
            .song-thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .song-number {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .song-title {
                font-size: 16px;
            }
            
            .song-play-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .youtube-modal-content {
                border-radius: 15px;
            }
        }
        
        .section-title-modern h2,
        .dj-card-modern-name,
        .article-card-modern-title {
            font-family: 'Poppins', sans-serif;
        }
        
        /* Modern Sohbet GiriÅŸ Formu - Hero AlanÄ± DÃ¼zeltmeleri */
        #chat-login.bg-wave-dark-wrap {
            position: relative;
            overflow: hidden;
            background: #0f172a !important;
        }
        
        #chat-login .bg-wave-dark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: #0f172a !important;
        }
        
        #chat-login .bg-wave-dark-1.bg-gray-800 {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
            min-height: 100%;
        }
        
        /* Wave SVG'yi koyu yap */
        #chat-login .wave-dark path {
            fill: #0f172a !important;
        }
        
        #chat-login .wave-dark {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: auto;
            z-index: 1;
            display: block;
        }
        
        #chat-login .container {
            position: relative;
            z-index: 2;
            padding-top: 100px;
            padding-bottom: 60px;
        }
        
        /* Player alanÄ±nÄ± hero'ya yapÄ±ÅŸtÄ±r - Full Ekran */
        #player {
            margin-top: 0 !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            background: var(--bg-secondary);
            width: 100%;
            max-width: 100%;
        }
        
        #player .section {
            padding-top: 60px;
            padding-bottom: 60px;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }
        
        #player .container-fluid {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100%;
            max-width: 100%;
        }
        
        #player .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        #player .col-12,
        #player .col-xl-10,
        #player [class*="col-"] {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        #player .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .modern-player-container {
            border-radius: 0 0 20px 20px;
            margin: 0;
            width: 100%;
            padding: 50px 40px;
        }
        
        @media (max-width: 768px) {
            #player .section {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            
            .modern-player-container {
                padding: 30px 20px;
            }
        }
        
        /* Modern Player Container */
        .modern-player-container {
            background: var(--player-bg);
            backdrop-filter: blur(20px);
            border-radius: 0;
            color: var(--player-text);
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .modern-player-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        /* DJ Info Modern */
        .current-dj-modern {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .dj-avatar-modern {
            width: 120px;
            height: 120px;
            border-radius: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .dj-avatar-modern img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }
        
        .dj-avatar-modern:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
        }
        
        .dj-avatar-pulse {
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 3px solid rgba(99, 102, 241, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
        
        .dj-info-modern {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        
        .dj-actions-modern {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .dj-action-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 0;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
        }
        
        .dj-action-btn i {
            font-size: 16px;
        }
        
        .request-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
            border-radius: 12px !important;
        }
        
        .request-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }
        
        .vote-btn {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
            border-radius: 12px !important;
        }
        
        .vote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
        }
        
        .about-btn {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
            border-radius: 12px !important;
        }
        
        .about-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
        }
        
        /* Popup Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal-content {
            background: var(--bg-card);
            border-radius: 0 0 20px 20px;
            padding: 40px;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .modal-header h3 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--text-primary);
        }
        
        .modal-form-group {
            margin-bottom: 20px;
        }
        
        .modal-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
        }
        
        .modal-form-group input,
        .modal-form-group textarea,
        .modal-form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 0;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
            background: var(--bg-card);
            color: var(--text-primary);
        }
        
        .modal-form-group input:focus,
        .modal-form-group textarea:focus,
        .modal-form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .modal-form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .modal-submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 0;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .modal-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }
        
        /* YayÄ±nlanan Ä°stekler Slider */
        .requests-slider {
            margin-top: 30px;
            padding: 20px 0;
            background: var(--bg-tertiary);
            border-radius: 0;
            overflow: hidden;
        }
        
        .requests-slider-title {
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }
        
        .requests-slider-container {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 10px 20px;
            scroll-behavior: smooth;
        }
        
        .requests-slider-container::-webkit-scrollbar {
            height: 4px;
        }
        
        .requests-slider-container::-webkit-scrollbar-track {
            background: var(--border-color);
        }
        
        .requests-slider-container::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .request-item {
            min-width: 250px;
            background: var(--bg-card);
            padding: 15px;
            border-radius: 0;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary-color);
            border: 1px solid var(--border-color);
        }
        
        .request-item-song {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
            font-size: 15px;
        }
        
        .request-item-artist {
            color: var(--text-secondary);
            font-size: 13px;
            margin-bottom: 8px;
        }
        
        .request-item-requester {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
        .dj-name-modern {
            font-size: 32px;
            font-weight: 800;
            color: var(--player-text);
            margin-bottom: 12px;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .dj-status-actions-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .dj-status-modern {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border-radius: 0;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }
        
        .dj-status-modern.hidden {
            display: none;
        }
        
        .dj-actions-inline {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .dj-action-btn-inline {
            padding: 10px 20px;
            border: none;
            border-radius: 12px !important;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Poppins', sans-serif;
        }
        
        .dj-action-btn-inline i {
            font-size: 14px;
        }
        
        .dj-action-btn-inline.request-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        .dj-action-btn-inline.request-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        .dj-action-btn-inline.vote-btn {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
        }
        
        .dj-action-btn-inline.vote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
        }
        
        .dj-action-btn-inline.about-btn {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
        }
        
        .dj-action-btn-inline.about-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
        }
        
        .live-dot {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: livePulse 1.5s ease-in-out infinite;
        }
        
        @keyframes livePulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }
        
        /* Modern Audio Player */
        .modern-audio-player {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 0 0 15px 15px;
            padding: 25px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .player-btn {
            width: 50px;
            height: 50px;
            border-radius: 12px !important;
            border: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            flex-shrink: 0;
        }
        
        .player-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        .player-btn:active {
            transform: scale(0.95);
        }
        
        .play-pause-btn {
            width: 60px;
            height: 60px;
            font-size: 22px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .player-info {
            flex: 1;
            min-width: 200px;
        }
        
        .player-time {
            font-size: 14px;
            font-weight: 600;
            color: #718096;
            margin-bottom: 10px;
            font-family: 'Inter', monospace;
        }
        
        .player-progress-container {
            width: 100%;
        }
        
        .player-progress-bar {
            width: 100%;
            height: 6px;
            background: #e2e8f0;
            border-radius: 0;
            position: relative;
            cursor: pointer;
            overflow: visible;
        }
        
        .player-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 0;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .player-progress-handle {
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: white;
            border: 3px solid #667eea;
            border-radius: 0;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .player-progress-bar:hover .player-progress-handle {
            opacity: 1;
        }
        
        .player-volume-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .player-volume-slider {
            width: 80px;
            display: none;
        }
        
        .player-volume-container:hover .player-volume-slider {
            display: block;
        }
        
        .player-volume-bar {
            width: 100%;
            height: 4px;
            background: #e2e8f0;
            border-radius: 0;
            position: relative;
            cursor: pointer;
        }
        
        .player-volume-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 0;
            width: 100%;
        }
        
        .player-volume-handle {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translate(50%, -50%);
            width: 12px;
            height: 12px;
            background: white;
            border: 2px solid #667eea;
            border-radius: 0;
            box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
        }
        
        /* Responsive Player */
        @media (max-width: 768px) {
            .modern-player-container {
                padding: 30px 20px;
            }
            
            .current-dj-modern {
                flex-direction: column;
                gap: 20px;
            }
            
            .dj-avatar-modern {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }
            
            .dj-name-modern {
                font-size: 24px;
            }
            
            .player-controls {
                gap: 15px;
            }
            
            .player-info {
                min-width: 100%;
            }
        }
        
        /* Hero alanÄ± metin renkleri - Modernize edilmiÅŸ fontlar */
        #chat-login.text-gray-600,
        #chat-login.text-gray-600 h1,
        #chat-login.text-gray-600 h6,
        #chat-login.text-gray-600 .big {
            color: #ffffff !important;
        }
        
        /* Modern Font Stilleri */
        #chat-login h1 {
            font-family: 'Poppins', sans-serif !important;
            font-size: 42px !important;
            font-weight: 800 !important;
            line-height: 1.2 !important;
            color: #ffffff !important;
            margin-bottom: 20px !important;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
            letter-spacing: -0.5px !important;
        }
        
        #chat-login .big {
            font-family: 'Inter', sans-serif !important;
            font-size: 18px !important;
            font-weight: 400 !important;
            line-height: 1.8 !important;
            color: #cbd5e1 !important;
            margin-bottom: 40px !important;
            letter-spacing: 0.3px !important;
        }
        
        @media (max-width: 768px) {
            #chat-login h1 {
                font-size: 32px !important;
            }
            
            #chat-login .big {
                font-size: 16px !important;
            }
            
            #chat-login h6 {
                font-size: 14px !important;
            }
        }
        
        #chatLoginForm {
            margin-top: 40px !important;
            margin-bottom: 20px !important;
        }
        
        #chatLoginForm .form-wrap {
            margin-bottom: 25px;
        }
        
        #chatLoginForm .form-input {
            width: 100%;
            padding: 18px 20px 18px 55px !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            background: rgba(255, 255, 255, 0.95) !important;
            border: 2px solid rgba(255, 255, 255, 0.3) !important;
            border-radius: 12px !important;
            color: #2d3748 !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
            font-family: 'Inter', sans-serif !important;
        }
        
        /* Input Icon Container */
        #chatLoginForm .form-wrap {
            position: relative;
        }
        
        #chatLoginForm .form-wrap::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 18px;
            color: #6366f1;
            z-index: 10;
            pointer-events: none;
            margin-top: 12px;
        }
        
        #chatLoginForm .form-wrap:has(#chatUsername)::before {
            content: '\f007'; /* user icon */
        }
        
        #chatLoginForm .form-wrap:has(#chatPassword)::before {
            content: '\f023'; /* lock icon */
        }
        
        #chatLoginForm .form-input:focus {
            outline: none !important;
            border-color: var(--primary-color) !important;
            box-shadow: 0 6px 25px rgba(99, 102, 241, 0.3) !important;
            transform: translateY(-2px);
            background: #ffffff !important;
        }
        
        #chatLoginForm .form-input::placeholder {
            color: #a0aec0 !important;
            font-weight: 400 !important;
        }
        
        #chatLoginForm .form-label {
            font-size: 16px !important;
            font-weight: 600 !important;
            color: #1e293b !important;
            margin-bottom: 10px !important;
            display: block !important;
            font-family: 'Poppins', sans-serif !important;
            letter-spacing: 0.3px;
        }
        
        #chatLoginForm .col-12 {
            margin-top: 0 !important;
            padding-top: 5px !important;
        }
        
        #chatLoginForm .button.button-secondary.button-nuka {
            padding: 20px 60px !important;
            font-size: 19px !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, var(--chat-button-gradient-start) 0%, var(--chat-button-gradient-end) 100%) !important;
            border: none !important;
            border-radius: 15px !important;
            color: #ffffff !important;
            box-shadow: 0 10px 35px rgba(99, 102, 241, 0.5) !important;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            position: relative !important;
            overflow: hidden !important;
            text-transform: none !important;
            letter-spacing: 0.8px !important;
            font-family: 'Poppins', sans-serif !important;
            margin-top: 10px !important;
            display: inline-block !important;
        }
        
        #chatLoginForm .button.button-secondary.button-nuka:hover {
            transform: translateY(-3px) scale(1.02) !important;
            box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5) !important;
        }
        
        #chatLoginForm .button.button-secondary.button-nuka:active {
            transform: translateY(-1px) scale(0.98) !important;
        }
        
        #chatLoginForm .button-overlay {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
        }
        
        /* Responsive Sohbet Formu */
        @media (max-width: 768px) {
            #chatLoginForm .form-input {
                padding: 16px 18px !important;
                font-size: 16px !important;
            }
            
            #chatLoginForm .form-label {
                font-size: 14px !important;
            }
            
            #chatLoginForm .button.button-secondary.button-nuka {
                padding: 16px 40px !important;
                font-size: 16px !important;
            }
        }

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 0;
}

.footer-modern-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-modern-main {
    text-align: center;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.footer-modern-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-links-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-links-column ul li a i {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-modern-bottom {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-links-column h4 i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 16px;
}

@media (max-width: 991px) {
    .footer-modern-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-modern-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-modern-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Modern Page Hero Section */
.page-hero-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content-modern {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle-modern {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
    shape-rendering: geometricPrecision;
}

.hero-wave-bottom path {
    fill: var(--bg-secondary);
    stroke: none;
}

/* Hero Animations */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .page-hero-modern {
        padding: 80px 0 60px !important;
    }
    
    .hero-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-title-modern {
        font-size: 36px;
    }
    
    .hero-subtitle-modern {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-wave-bottom {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 28px;
    }
    
    .hero-subtitle-modern {
        font-size: 14px;
    }
}

/* Modern FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    gap: 20px;
}

.faq-question::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::after {
    opacity: 1;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-bottom: 1px solid var(--border-color);
}

.faq-question.active::after {
    opacity: 1;
}

.faq-question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-question.active .faq-question-text {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.faq-question.active .faq-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-answer.active {
    max-height: 2000px;
    padding: 0 30px 30px 30px;
}

.faq-answer.active::before {
    opacity: 1;
}

.faq-answer-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    padding-top: 25px;
    position: relative;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-secondary);
}

.faq-answer-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.faq-answer-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-answer-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* FAQ Section Title */
#faq .section-title-modern h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .faq-accordion {
        gap: 15px;
        padding: 15px 0;
    }
    
    .faq-item {
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-content {
        font-size: 14px;
        padding-top: 20px;
        line-height: 1.7;
    }
    
    .faq-answer-content ul,
    .faq-answer-content ol {
        padding-left: 20px;
    }
}

/* Modern Contact Form - Premium */
#contactForm {
    background: transparent;
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#contactForm > * {
    position: relative;
    z-index: 1;
}

#contactForm .form-wrap {
    position: relative;
    margin-bottom: 32px;
}

#contactForm .form-wrap:last-of-type {
    margin-bottom: 0;
}

#contactForm .row > [class*="col-"] {
    margin-bottom: 0;
}

#contactForm .row > [class*="col-md-6"] {
    margin-bottom: 32px;
}

#contactForm .row > [class*="col-12"] {
    margin-bottom: 0;
}

#contactForm .row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

#contactForm .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 0;
}

#contactForm .row.row-narrow {
    margin-left: -12px;
    margin-right: -12px;
}

#contactForm .row.row-narrow > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

#contactForm .form-label,
#contactForm .premium-label {
    position: absolute;
    top: 22px;
    left: 55px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    z-index: 4;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 50%, 
        transparent 50%);
    padding: 0 10px;
    margin-left: -10px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

[data-theme="dark"] #contactForm .form-label,
[data-theme="dark"] #contactForm .premium-label {
    background: linear-gradient(to bottom, 
        rgba(30, 41, 59, 0.95) 50%, 
        transparent 50%);
}

/* Radio Group Styling */
#contactForm .form-wrap-radio {
    margin-bottom: 40px;
}

#contactForm .form-label-radio {
    position: static;
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    margin-left: 0;
    pointer-events: auto;
}

#contactForm .radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 0;
}

#contactForm .radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 26px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 140px;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

#contactForm .radio-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#contactForm .radio-option:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#contactForm .radio-option:hover::before {
    opacity: 1;
}

[data-theme="dark"] #contactForm .radio-option {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#contactForm .radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#contactForm .radio-custom {
    width: 26px;
    height: 26px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--bg-card);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#contactForm .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 
        0 0 0 5px rgba(99, 102, 241, 0.25),
        0 4px 12px rgba(99, 102, 241, 0.4);
    transform: scale(1.15);
    border-width: 3px;
}

#contactForm .radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#contactForm .radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--primary-color);
    font-weight: 600;
}

#contactForm .radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.12) 0%, 
        rgba(139, 92, 246, 0.08) 100%);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.15),
        0 8px 24px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
}

#contactForm .radio-option:has(input[type="radio"]:checked)::before {
    opacity: 1;
}

#contactForm .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

#contactForm .radio-label i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

#contactForm .radio-option input[type="radio"]:checked ~ .radio-label i {
    color: var(--primary-color);
}

[data-theme="dark"] #contactForm .radio-option {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

[data-theme="dark"] #contactForm .radio-option:hover {
    background: var(--bg-card);
}

/* Premium Input Wrapper */
.premium-input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.premium-input-wrap:focus-within .input-icon,
.premium-input-wrap:has(.premium-input:not(:placeholder-shown)) .input-icon {
    opacity: 1;
    color: var(--primary-color);
}

.textarea-icon {
    top: 24px;
    transform: translateY(0);
}

.premium-input-wrap:focus-within .input-icon,
.premium-input-wrap:has(.premium-input:not(:placeholder-shown)) .input-icon {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.textarea-icon:has(+ .premium-input:focus),
.textarea-icon:has(+ .premium-input:not(:placeholder-shown)) {
    transform: translateY(0) scale(1.1);
}

.input-glow {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(8px);
}

.premium-input-wrap:focus-within .input-glow {
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

#contactForm .form-input,
#contactForm .premium-input {
    width: 100%;
    padding: 22px 20px 22px 55px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 0;
    line-height: 1.5;
}

[data-theme="dark"] #contactForm .form-input,
[data-theme="dark"] #contactForm .premium-input {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#contactForm .form-input:hover,
#contactForm .premium-input:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

#contactForm .form-input:focus,
#contactForm .premium-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.15),
        0 8px 24px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%);
    transform: translateY(-2px) scale(1.01);
}

[data-theme="dark"] #contactForm .form-input:focus,
[data-theme="dark"] #contactForm .premium-input:focus {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 1) 0%, 
        rgba(15, 23, 42, 1) 100%);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.25),
        0 8px 24px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Label animation - improved */
#contactForm .form-input:focus + .form-label,
#contactForm .form-input:not(:placeholder-shown) + .form-label,
#contactForm .form-input:valid + .form-label,
#contactForm .premium-input:focus + .premium-label,
#contactForm .premium-input:not(:placeholder-shown) + .premium-label,
#contactForm .premium-input:valid + .premium-label {
    top: -14px;
    left: 50px;
    font-size: 12px;
    color: var(--primary-color);
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.98) 50%, 
        transparent 50%);
    font-weight: 700;
    transform: scale(0.95);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

[data-theme="dark"] #contactForm .form-input:focus + .form-label,
[data-theme="dark"] #contactForm .form-input:not(:placeholder-shown) + .form-label,
[data-theme="dark"] #contactForm .form-input:valid + .form-label,
[data-theme="dark"] #contactForm .premium-input:focus + .premium-label,
[data-theme="dark"] #contactForm .premium-input:not(:placeholder-shown) + .premium-label,
[data-theme="dark"] #contactForm .premium-input:valid + .premium-label {
    background: linear-gradient(to bottom, 
        rgba(30, 41, 59, 0.98) 50%, 
        transparent 50%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#contactForm .form-input::placeholder {
    color: transparent;
    opacity: 0;
}

/* Error states */
#contactForm .form-input.error,
#contactForm .form-input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    animation: shake 0.3s ease;
}

#contactForm .form-input.error + .form-label,
#contactForm .form-input:invalid:not(:placeholder-shown):not(:focus) + .form-label {
    color: #ef4444;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success state */
#contactForm .form-input:valid:not(:placeholder-shown):not(:focus) {
    border-color: #10b981;
}

#contactForm textarea.form-input,
#contactForm textarea.premium-input {
    min-height: 180px;
    resize: vertical;
    padding-top: 22px;
    padding-left: 55px;
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#contactForm textarea.form-input:focus + .form-label,
#contactForm textarea.form-input:not(:placeholder-shown) + .form-label,
#contactForm textarea.premium-input:focus + .premium-label,
#contactForm textarea.premium-input:not(:placeholder-shown) + .premium-label {
    top: -14px;
    left: 50px;
    font-size: 12px;
    color: var(--primary-color);
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.98) 50%, 
        transparent 50%);
    font-weight: 700;
    transform: scale(0.95);
}

#contactForm textarea.form-input:focus + .form-label,
#contactForm textarea.form-input:not(:placeholder-shown) + .form-label {
    top: -12px;
    left: 16px;
    font-size: 13px;
    color: var(--primary-color);
    background: var(--bg-card);
    font-weight: 600;
    transform: scale(0.95);
}

#contactForm .text-primary {
    color: var(--primary-color);
    font-weight: 700;
}

/* Contact Submit Button - Premium */
.contact-submit-btn,
#contactForm .button.button-secondary.button-nuka {
    width: 100%;
    padding: 20px 36px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    background-size: 300% 100%;
    border: none;
    border-radius: 16px;
    color: white !important;
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.contact-submit-btn::before,
#contactForm .button.button-secondary.button-nuka::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-submit-btn::after,
#contactForm .button.button-secondary.button-nuka::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        opacity: 0.5;
        background-position: 0% 50%;
    }
    50% { 
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

.contact-submit-btn:hover,
#contactForm .button.button-secondary.button-nuka:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 50%;
    color: white !important;
}

.contact-submit-btn:hover::before,
#contactForm .button.button-secondary.button-nuka:hover::before {
    opacity: 1;
}

.contact-submit-btn:hover::after,
#contactForm .button.button-secondary.button-nuka:hover::after {
    opacity: 0.6;
}

.contact-submit-btn:active,
#contactForm .button.button-secondary.button-nuka:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.contact-submit-btn:disabled,
#contactForm .button.button-secondary.button-nuka:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn.loading,
#contactForm .button.button-secondary.button-nuka.loading {
    pointer-events: none;
}

.contact-submit-btn.loading i,
#contactForm .button.button-secondary.button-nuka.loading i {
    animation: spin 1s linear infinite;
}

.contact-submit-btn i,
#contactForm .button.button-secondary.button-nuka i {
    position: relative;
    z-index: 1;
}

.contact-submit-btn span,
#contactForm .button.button-secondary.button-nuka span {
    position: relative;
    z-index: 1;
}

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

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#contactForm .button.button-secondary.button-nuka::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#contactForm .button.button-secondary.button-nuka::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#contactForm .button.button-secondary.button-nuka:hover::before {
    width: 400px;
    height: 400px;
}

#contactForm .button.button-secondary.button-nuka:hover::after {
    opacity: 1;
}

#contactForm .button.button-secondary.button-nuka:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.55),
        0 0 0 6px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 50%;
}

#contactForm .button.button-secondary.button-nuka:active {
    transform: translateY(-3px) scale(0.99);
    box-shadow: 
        0 10px 35px rgba(99, 102, 241, 0.45),
        0 0 0 3px rgba(99, 102, 241, 0.2);
}

#contactForm .button.button-secondary.button-nuka i {
    position: relative;
    z-index: 1;
}

#contactForm .button.button-secondary.button-nuka span {
    position: relative;
    z-index: 1;
}

/* Contact Section Modern Layout */
.contact-container-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Başlık Container (Mor/Lavanta) */
.contact-title-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.contact-title-container:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 70px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-title-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.contact-title-container .section-title-modern {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    text-align: center;
}

.contact-title-container .section-title-modern h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    letter-spacing: -1px;
}

.contact-title-container .title-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.contact-title-container .section-title-modern .big {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Container (Beyaz) - Premium */
.contact-form-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(139, 92, 246, 0.05) 30%,
        transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        transparent 50%,
        rgba(139, 92, 246, 0.03) 100%);
    pointer-events: none;
    border-radius: 32px;
}

[data-theme="dark"] .contact-form-container {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.95) 0%, 
        rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .contact-container-wrapper {
        gap: 25px;
    }
    
    .contact-title-container {
        padding: 50px 40px;
        border-radius: 20px;
    }
    
    .contact-title-container .section-title-modern h2 {
        font-size: 36px;
    }
    
    .contact-form-container {
        padding: 45px 35px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
    
    .contact-container-wrapper {
        gap: 20px;
    }
    
    .contact-title-container {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .contact-title-container .section-title-modern h2 {
        font-size: 32px !important;
    }
    
    .contact-title-container .section-title-modern .big {
        font-size: 16px !important;
    }
    
    .contact-form-container {
        padding: 40px 30px;
        border-radius: 24px;
    }
    
    #contactForm .form-wrap {
        margin-bottom: 32px;
    }
    
    #contactForm .form-wrap-radio {
        margin-bottom: 32px;
    }
    
    #contactForm .form-input,
    #contactForm .premium-input {
        padding: 18px 18px 18px 50px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .input-icon {
        left: 18px;
        font-size: 16px;
    }
    
    #contactForm .form-label,
    #contactForm .premium-label {
        font-size: 14px;
        top: 18px;
        left: 50px;
    }
    
    #contactForm .form-input:focus + .form-label,
    #contactForm .form-input:not(:placeholder-shown) + .form-label,
    #contactForm .premium-input:focus + .premium-label,
    #contactForm .premium-input:not(:placeholder-shown) + .premium-label {
        top: -12px;
        left: 48px;
        font-size: 11px;
    }
    
    #contactForm .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    #contactForm .radio-option {
        min-width: 100%;
        padding: 14px 20px;
    }
    
    #contactForm textarea.form-input {
        min-height: 140px;
    }
    
    .contact-submit-btn,
    #contactForm .button.button-secondary.button-nuka {
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    #contactForm {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    #contactForm .form-input {
        padding: 16px 16px;
        font-size: 14px;
    }
    
    #contactForm .form-label {
        font-size: 13px;
        top: 16px;
        left: 16px;
    }
    
    #contactForm .form-input:focus + .form-label,
    #contactForm .form-input:not(:placeholder-shown) + .form-label {
        top: -10px;
        left: 12px;
        font-size: 11px;
    }
    
    #contactForm .button.button-secondary.button-nuka {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ============================================
   MAKALE DETAY SAYFASI STİLLERİ
   ============================================ */

/* Makale Detay Ana Container */
.article-detail {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

/* Makale Başlık ve Meta */
.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.category-badge,
a.category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.category-badge.category-sohbet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.category-badge.category-muzik {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Kategori badge hover efektleri */
a.category-badge {
    transition: all 0.3s ease;
}

a.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

a.article-category-badge {
    transition: all 0.3s ease;
}

a.article-category-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Etiketler */
.article-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 10px !important;
    border-top: 1px solid var(--border-color) !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 40px !important;
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
}

.article-tags i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.tag-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.tag-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

/* Öne Çıkan Resim */
.article-featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Makale İçeriği */
.article-content {
    margin-top: 30px;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.article-content h2 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.article-content h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.article-content h4 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.widget-title i {
    color: var(--primary-color);
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Makale Öğeleri */
.sidebar-article-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-item:hover {
    transform: translateX(5px);
}

.sidebar-article-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-article-item:hover .sidebar-article-image img {
    transform: scale(1.1);
}

.sidebar-article-content {
    flex: 1;
}

.sidebar-article-content h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.sidebar-article-content h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-article-content h4 a:hover {
    color: var(--primary-color);
}

.sidebar-article-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.sidebar-article-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Yorum Bölümü */
.comments-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.comments-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
}

.comments-title i {
    color: var(--primary-color);
}

/* Yorum Formu */
.comment-form-wrapper {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.comment-form-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .button {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.comment-form .button-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.comment-form .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comment-form .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Yorum Listesi */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.no-comments {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-comments i {
    font-size: 48px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    display: block;
}

.no-comments p {
    font-size: 16px;
}

.comment-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.comment-header {
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.comment-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.comment-date {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.comment-date i {
    font-size: 12px;
}

.comment-body {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .article-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-detail,
    .comments-section,
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .comment-form-wrapper {
        padding: 20px;
    }
    
    .comment-item {
        padding: 20px;
    }
}

/* Başlıklar Wrapper */
.weekly-titles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px 15px 20px 15px;
}

/* Haftanın Programları ve DJ'leri Wrapper */
.weekly-schedule-wrapper {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Yeni Modern Layout - Haftanın Programları ve Günlük İstekler */
.weekly-schedule-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.schedule-left-modern {
    flex: 1;
    min-width: 0;
}

.daily-requests-sidebar-modern {
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.daily-requests-card-modern {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.daily-requests-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.daily-requests-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.header-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    flex-shrink: 0;
}

.header-content-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

.daily-requests-date-modern {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.daily-requests-date-modern i {
    color: var(--primary-color);
    font-size: 12px;
}

.daily-requests-list-modern {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 396px; /* 3 kart (yaklaşık 120px) + 2 gap (24px) = 384px, biraz padding için 396px */
    padding-right: 5px;
    overflow-y: auto;
}

.daily-requests-list-modern::-webkit-scrollbar {
    width: 6px;
}

.daily-requests-list-modern::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.daily-requests-list-modern::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.daily-requests-list-modern::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Günlük İstek Kartları - Modern */
.daily-request-item-modern {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 120px;
}

.daily-request-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daily-request-item-modern:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.daily-request-item-modern:hover::before {
    transform: scaleY(1);
}

.request-song-modern {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.request-song-modern::before {
    content: '🎵';
    font-size: 14px;
}

.request-artist-modern {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.request-artist-modern::before {
    content: '👤';
    font-size: 12px;
}

.request-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 10px;
}

.request-requester-modern {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.request-requester-modern i {
    color: var(--accent-color);
    font-size: 11px;
}

.request-dj-modern {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.request-dj-modern i {
    color: var(--primary-color);
    font-size: 11px;
}

.request-time-modern {
    font-size: 11px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', monospace;
}

.request-time-modern i {
    color: var(--secondary-color);
    font-size: 10px;
}

.daily-requests-empty-modern {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.daily-requests-empty-modern i {
    font-size: 48px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    opacity: 0.4;
    display: block;
}

.daily-requests-empty-modern p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Koyu Tema - Daily Requests */
[data-theme="dark"] .daily-requests-card-modern {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .daily-requests-header-modern {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .daily-requests-list-modern::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .daily-requests-list-modern::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

[data-theme="dark"] .daily-requests-list-modern::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

[data-theme="dark"] .daily-request-item-modern {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .daily-request-item-modern:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

[data-theme="dark"] .request-footer-modern {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .daily-requests-empty-modern {
    color: var(--text-secondary);
}

[data-theme="dark"] .daily-requests-empty-modern i {
    color: var(--text-tertiary);
}

/* Koyu Tema - Chat Login */
[data-theme="dark"] #chat-login.bg-wave-dark-wrap {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] #chat-login .bg-wave-dark {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] #chat-login .bg-wave-dark-1.bg-gray-800 {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%) !important;
}

[data-theme="dark"] #chat-login .wave-dark path {
    fill: var(--bg-primary) !important;
}

[data-theme="dark"] #chat-login.text-gray-600,
[data-theme="dark"] #chat-login.text-gray-600 h1,
[data-theme="dark"] #chat-login.text-gray-600 h6,
[data-theme="dark"] #chat-login.text-gray-600 .big {
    color: var(--text-primary) !important;
}

[data-theme="dark"] #chat-login h1 {
    color: var(--text-primary) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] #chat-login .big {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] #chatLoginForm .form-label {
    color: var(--text-primary);
}

[data-theme="dark"] #chatLoginForm .form-input {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] #chatLoginForm .form-input:focus {
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
}

[data-theme="dark"] #chatLoginForm .form-input::placeholder {
    color: var(--text-tertiary);
}

[data-theme="dark"] #chatLoginForm .button-secondary {
    background: var(--primary-color);
    color: var(--text-inverse);
}

[data-theme="dark"] #chatLoginForm .button-secondary:hover {
    background: var(--secondary-color);
}

[data-theme="dark"] #chatLoginForm .form-wrap::before {
    color: var(--primary-color);
}

[data-theme="dark"] #chatLoginForm .button.button-secondary.button-nuka {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    box-shadow: 0 10px 35px rgba(129, 140, 248, 0.4) !important;
}

[data-theme="dark"] #chatLoginForm .button.button-secondary.button-nuka:hover {
    box-shadow: 0 12px 40px rgba(129, 140, 248, 0.5) !important;
}

[data-theme="dark"] #chatLoginForm .button-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .weekly-schedule-wrapper-modern {
        grid-template-columns: 1fr 350px;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .weekly-schedule-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .daily-requests-sidebar-modern {
        position: static;
        max-height: none;
    }
    
    .daily-requests-list-modern {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .daily-requests-card-modern {
        padding: 20px;
    }
    
    .header-icon-modern {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .header-content-modern h3 {
        font-size: 18px;
    }
    
    .daily-request-item-modern {
        padding: 12px;
    }
    
    .request-song-modern {
        font-size: 14px;
    }
    
    .request-artist-modern {
        font-size: 12px;
    }
}

.weekly-schedule-left,
.weekly-top-djs-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.weekly-schedule-left::after {
    content: '';
    position: absolute;
    right: -17.5px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.2) 20%, rgba(99, 102, 241, 0.2) 80%, transparent 100%);
    opacity: 0.6;
}

.weekly-top-djs-right::after {
    content: '';
    position: absolute;
    right: -17.5px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.2) 20%, rgba(99, 102, 241, 0.2) 80%, transparent 100%);
    opacity: 0.6;
}

.weekly-schedule-section,
.weekly-top-djs-section,
.daily-requests-section {
    margin-bottom: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.weekly-schedule-section h2,
#weeklySchedule .weekly-top-djs-section h2 {
    font-size: 42px;
    text-align: center;
    margin: 0 auto 15px auto;
    max-width: 100%;
}

.weekly-schedule-section .big,
#weeklySchedule .weekly-top-djs-section .big {
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    max-width: 900px;
    color: #718096;
    line-height: 1.7;
}

#weeklySchedule .weekly-top-djs-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Haftanın Programları */
.weekly-schedule-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.08), 
                0 0 0 1px rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.weekly-schedule-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #c084fc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.schedule-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
    padding-bottom: 12px;
    position: relative;
    justify-content: center;
}

.schedule-tab {
    padding: 10px 14px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    white-space: nowrap;
}

.schedule-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.schedule-tab:hover::before {
    left: 100%;
}

.schedule-tab:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.schedule-tab.active {
    color: white;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4),
                0 0 0 2px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.schedule-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.tab-day {
    display: block;
}

.schedule-content {
    min-height: 200px;
}

.schedule-programs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-program-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.schedule-program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s;
}

.schedule-program-item:hover::before {
    left: 100%;
}

.schedule-program-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2),
                0 0 0 1px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.schedule-program-time {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Inter', monospace;
}

.schedule-program-time i {
    color: var(--primary-color);
    font-size: 16px;
}

.schedule-program-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.schedule-program-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3),
                0 0 0 3px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.schedule-program-item:hover .schedule-program-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4),
                0 0 0 4px rgba(99, 102, 241, 0.15);
}

.schedule-program-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.schedule-live-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 10;
}

.schedule-live-badge .live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.schedule-program-info {
    flex: 1;
}

.schedule-program-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

.schedule-program-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.schedule-program-actions {
    display: flex;
    gap: 10px;
}

.schedule-listen-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.schedule-listen-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.schedule-listen-btn:hover::before {
    width: 300px;
    height: 300px;
}

.schedule-listen-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.schedule-listen-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.schedule-listen-btn i {
    font-size: 14px;
}

.schedule-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.schedule-empty i {
    font-size: 64px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    display: block;
}

.schedule-empty p {
    font-size: 16px;
    margin: 0;
}

/* ============================================
   GELİŞMİŞ HAFTANIN PROGRAMLARI TABLO STİLLERİ
   ============================================ */

.weekly-schedule-container-modern {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.weekly-schedule-container-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.schedule-tabs-modern {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.schedule-tab-modern {
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.schedule-tab-modern:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.schedule-tab-modern.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.schedule-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: var(--bg-secondary);
    padding: 20px;
}

.schedule-table-modern {
    width: 100%;
    min-width: 800px;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.schedule-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table thead th:last-child {
    border-right: none;
}

.schedule-table thead th i {
    margin-right: 8px;
    font-size: 12px;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--bg-tertiary);
    transform: scale(1.01);
}

.schedule-table tbody tr.row-live {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
    border-left: 4px solid #ef4444;
}

.schedule-table tbody tr.row-active {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    border-left: 4px solid #10b981;
}

.schedule-table tbody td {
    padding: 20px;
    vertical-align: middle;
    color: var(--text-primary);
}

/* Saat Sütunu */
.col-time .time-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', monospace;
    font-weight: 600;
}

.time-start {
    color: var(--primary-color);
    font-size: 15px;
}

.time-separator {
    color: var(--text-tertiary);
    margin: 0 4px;
}

.time-end {
    color: var(--text-secondary);
    font-size: 15px;
}

/* DJ Sütunu */
.col-dj .dj-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dj-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.dj-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.dj-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

/* Program Sütunu */
.col-program .program-cell {
    display: flex;
    align-items: center;
}

.program-name {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Durum Sütunu */
.col-status {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-live {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.status-active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status-upcoming {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* İşlem Sütunu */
.col-action {
    text-align: center;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 4px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.action-btn:active {
    transform: translateY(0) scale(0.95);
}

.profile-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.profile-btn:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.schedule-empty-modern {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.schedule-empty-modern i {
    font-size: 72px;
    color: var(--text-tertiary);
    margin-bottom: 25px;
    opacity: 0.4;
}

.schedule-empty-modern p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Tablo */
@media (max-width: 992px) {
    .schedule-table-wrapper {
        padding: 15px;
    }
    
    .schedule-table-modern {
        min-width: 700px;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 15px 12px;
        font-size: 13px;
    }
    
    .dj-avatar {
        width: 40px;
        height: 40px;
    }
    
    .dj-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .weekly-schedule-container-modern {
        padding: 20px;
    }
    
    .schedule-tabs-modern {
        gap: 6px;
    }
    
    .schedule-tab-modern {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .schedule-table-wrapper {
        padding: 10px;
    }
    
    .schedule-table-modern {
        min-width: 600px;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin: 0 2px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .weekly-titles-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .weekly-schedule-wrapper {
        grid-template-columns: 1fr;
    }
    
    .weekly-top-djs-container {
        position: static;
    }
    
    .daily-requests-sidebar {
        display: none;
    }
}

@media (max-width: 1200px) {
    .weekly-schedule-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .daily-requests-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .weekly-schedule-wrapper {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .weekly-schedule-container {
        padding: 20px;
    }
    
    .weekly-top-djs-container {
        padding: 20px;
    }
    
    .schedule-tabs {
        gap: 8px;
    }
    
    .schedule-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .schedule-program-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .schedule-program-time {
        min-width: auto;
        width: 100%;
    }
    
    .schedule-program-content {
        width: 100%;
    }
    
    .schedule-program-actions {
        width: 100%;
    }
    
    .schedule-listen-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Haftanın Top 3 DJ'i */
.weekly-top-djs-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.08),
                0 0 0 1px rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    overflow: hidden;
    max-width: 100%;
}

.weekly-top-djs-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.weekly-top-djs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.weekly-top-dj-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.weekly-top-dj-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s;
}

.weekly-top-dj-item:hover::before {
    left: 100%;
}

.weekly-top-dj-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2),
                0 0 0 1px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.weekly-top-dj-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3),
                0 0 0 3px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.weekly-top-dj-item:hover .weekly-top-dj-rank {
    transform: scale(1.15) rotate(10deg);
}

@keyframes goldGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5),
                    0 0 0 3px rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7),
                    0 0 0 4px rgba(255, 215, 0, 0.3);
    }
}

/* Rank İkonları - Altın, Gümüş, Bronz, Bakır */
.weekly-top-dj-rank.rank-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-size: 200% 100%;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6),
                0 0 0 3px rgba(255, 215, 0, 0.3);
    animation: goldGlow 2s ease-in-out infinite;
}

.weekly-top-dj-rank.rank-gold i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weekly-top-dj-rank.rank-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
    background-size: 200% 100%;
    color: #000;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.6),
                0 0 0 3px rgba(192, 192, 192, 0.3);
    animation: silverShine 2s ease-in-out infinite;
}

.weekly-top-dj-rank.rank-silver i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.weekly-top-dj-rank.rank-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a85c 50%, #cd7f32 100%);
    background-size: 200% 100%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(205, 127, 50, 0.6),
                0 0 0 3px rgba(205, 127, 50, 0.3);
    animation: bronzeGlow 2s ease-in-out infinite;
}

.weekly-top-dj-rank.rank-bronze i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weekly-top-dj-rank.rank-copper {
    background: linear-gradient(135deg, #b87333 0%, #d4a574 50%, #b87333 100%);
    background-size: 200% 100%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.6),
                0 0 0 3px rgba(184, 115, 51, 0.3);
    animation: copperShine 2s ease-in-out infinite;
}

.weekly-top-dj-rank.rank-copper i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes silverShine {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(192, 192, 192, 0.6),
                    0 0 0 3px rgba(192, 192, 192, 0.3);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(192, 192, 192, 0.8),
                    0 0 0 4px rgba(192, 192, 192, 0.4);
    }
}

@keyframes bronzeGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(205, 127, 50, 0.6),
                    0 0 0 3px rgba(205, 127, 50, 0.3);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(205, 127, 50, 0.8),
                    0 0 0 4px rgba(205, 127, 50, 0.4);
    }
}

@keyframes copperShine {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(184, 115, 51, 0.6),
                    0 0 0 3px rgba(184, 115, 51, 0.3);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(184, 115, 51, 0.8),
                    0 0 0 4px rgba(184, 115, 51, 0.4);
    }
}

.weekly-top-dj-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3),
                0 0 0 2px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.weekly-top-dj-item:hover .weekly-top-dj-avatar {
    transform: scale(1.1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4),
                0 0 0 3px rgba(99, 102, 241, 0.15);
}

.weekly-top-dj-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weekly-top-dj-avatar i {
    font-size: 30px;
    color: #fff;
}

.weekly-top-dj-info {
    flex: 1;
    min-width: 0;
}

.weekly-top-dj-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.weekly-top-dj-program {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.weekly-top-dj-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.weekly-top-dj-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.weekly-top-dj-stat i {
    color: var(--primary-color);
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.weekly-top-dj-votes {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.weekly-top-dj-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.weekly-top-dj-empty i {
    font-size: 48px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    display: block;
}

.weekly-top-dj-empty p {
    font-size: 16px;
    margin: 0;
}

/* Koyu Tema - Haftanın En Çok Oy Alan DJ'leri */
[data-theme="dark"] .weekly-top-djs-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-color: var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px var(--border-color);
}

[data-theme="dark"] .weekly-top-dj-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-color: var(--border-color);
}

[data-theme="dark"] .weekly-top-dj-item:hover {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(129, 140, 248, 0.2),
                0 0 0 1px var(--primary-color);
}

[data-theme="dark"] .weekly-top-dj-name {
    color: var(--text-primary);
}

[data-theme="dark"] .weekly-top-dj-program {
    color: var(--text-secondary);
}

[data-theme="dark"] .weekly-top-dj-stat {
    color: var(--text-secondary);
}

[data-theme="dark"] .weekly-top-dj-votes {
    color: var(--primary-color);
}

[data-theme="dark"] .weekly-top-dj-empty {
    color: var(--text-secondary);
}

[data-theme="dark"] .weekly-top-dj-empty i {
    color: var(--text-tertiary);
}

[data-theme="dark"] .djs-right .section-title-modern.weekly-top-djs-section h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .djs-right .section-title-modern.weekly-top-djs-section .big {
    color: var(--text-secondary);
}

/* Koyu Tema - Rank İkonları */
[data-theme="dark"] .weekly-top-dj-rank.rank-gold {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7),
                0 0 0 3px rgba(255, 215, 0, 0.4);
}

[data-theme="dark"] .weekly-top-dj-rank.rank-silver {
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.7),
                0 0 0 3px rgba(192, 192, 192, 0.4);
}

[data-theme="dark"] .weekly-top-dj-rank.rank-bronze {
    box-shadow: 0 4px 20px rgba(205, 127, 50, 0.7),
                0 0 0 3px rgba(205, 127, 50, 0.4);
}

[data-theme="dark"] .weekly-top-dj-rank.rank-copper {
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.7),
                0 0 0 3px rgba(184, 115, 51, 0.4);
}

@media (max-width: 992px) {
    body.home #djs #djsGrid .dj-card-modern {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .djs-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .djs-prev {
        left: 10px;
    }
    
    .djs-next {
        right: 10px;
    }
    
    body.home #djsGrid .dj-card-modern {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
    
    .weekly-top-dj-item {
        flex-wrap: wrap;
    }
    
    .weekly-top-dj-stats {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 26px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .sidebar-article-item {
        flex-direction: column;
    }
    
    .sidebar-article-image {
        width: 100%;
        height: 150px;
    }
}

/* ============================================
   DJ DETAIL PAGE STYLES
   ============================================ */

.dj-detail-body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* Hero Section */
.dj-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: -60px;
}

.dj-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dj-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.dj-avatar-hero {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.dj-avatar-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dj-avatar-hero::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 4s linear infinite;
}

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

.dj-hero-name {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dj-hero-fullname {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.dj-hero-program {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.live-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ef4444;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 15px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.live-badge-hero::before {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dj-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.dj-hero-stat {
    text-align: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    min-width: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.dj-hero-stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.dj-hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dj-hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Content Section */
.dj-profile-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    position: relative;
    z-index: 1;
}

.dj-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.dj-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.dj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.dj-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.dj-card-title i {
    color: #667eea;
    font-size: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.info-item-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item-content {
    flex: 1;
}

.info-item-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item-value {
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
}

.info-item-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.dj-bio {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    white-space: pre-wrap;
}

.dj-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dj-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.dj-image-item:hover {
    transform: scale(1.05);
    border-color: #667eea;
}

.dj-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dj-image-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .dj-hero {
        padding: 80px 20px 60px;
    }
    
    .dj-avatar-hero {
        width: 160px;
        height: 160px;
        font-size: 70px;
    }
    
    .dj-hero-name {
        font-size: 40px;
    }
    
    .dj-hero-stats {
        gap: 20px;
    }
    
    .dj-hero-stat {
        min-width: 120px;
        padding: 20px 25px;
    }
    
    .dj-content-grid {
        grid-template-columns: 1fr;
    }
    
    .dj-card {
        padding: 25px;
    }
}

/* Tag Page Styles */
.empty-message,
.error-message {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.error-message {
    color: var(--text-danger);
}

/* ============================================
   HOMEPAGE INLINE STYLES
   ============================================ */

/* Hero Section Title */
#chat-login h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

/* Chat Login Form */
#chatLoginForm {
    max-width: 700px;
    margin: 40px auto 0;
}

/* Form Submit Button Icon */
#chatLoginForm button i {
    margin-right: 10px;
}

/* Form Submit Button Container */
#chatLoginForm .col-12.text-center {
    margin-top: 5px;
}

/* Player Section */
#player {
    margin-top: 0;
    padding-top: 0;
}

#player .row {
    margin: 0;
}

#player .col-12 {
    padding: 0;
}

/* DJ Status Actions */
#djStatusActions {
    display: none;
    margin-top: 15px;
}

#djActionsInline {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Weekly Schedule Section */
#weeklySchedule {
    padding: 0;
}

#weeklySchedule .container-fluid {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.weekly-schedule-wrapper {
    width: 100%;
    max-width: 100%;
}

#weeklySchedule .container-fluid:last-child {
    padding: 0 15px;
}

/* Articles Section */
#articles {
    overflow: visible;
}

#articles .container-fluid {
    padding: 0 30px;
    overflow: visible;
}

#articlesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    overflow: visible;
    min-height: auto;
}

/* Songs Section */
#songs .container-fluid {
    padding: 0 30px;
}

#songs .row {
    align-items: flex-start;
}

.song-section {
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.song-section h2 {
    text-align: left;
    margin-top: 0;
    font-size: 32px;
}

.song-section .big {
    text-align: left;
    margin-top: 15px;
    font-size: 16px;
}

/* Popular Radios Section */
#popularRadiosSection .section-title-modern {
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
    align-items: flex-start;
}

#popularRadiosSection h2 {
    text-align: left;
    font-size: 32px;
    margin-top: 0;
}

#popularRadiosSection .big {
    text-align: left;
    margin-top: 15px;
    font-size: 16px;
    margin-left: 0;
    margin-right: auto;
}

/* FAQ Section */
#faq .container-fluid {
    padding: 0 30px;
}

#faq .row {
    margin: 0;
    width: 100%;
}

#faq .col-lg-10 {
    width: 100%;
    max-width: 1200px;
}

/* Request Modal Select */
#requestDjSelect {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

/* Brand Logo */
.brand-logo-custom {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #f1f5f9;
    text-decoration: none;
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SVG Logo Styles */
.rd-navbar-brand img[src*="logo-1001radyo.svg"],
.rd-navbar-brand img[src*="logo-admin-1001radyo.svg"] {
    height: 45px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rd-navbar-brand:hover img[src*="logo-1001radyo.svg"],
.rd-navbar-brand:hover img[src*="logo-admin-1001radyo.svg"] {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

/* Admin Sidebar Logo */
.sidebar-header img[src*="logo-admin-1001radyo.svg"] {
    height: 38px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.sidebar-header:hover img[src*="logo-admin-1001radyo.svg"] {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Responsive Logo */
@media (max-width: 768px) {
    .rd-navbar-brand img[src*="logo-1001radyo.svg"] {
        height: 38px;
        max-width: 200px;
    }
    
    .sidebar-header img[src*="logo-admin-1001radyo.svg"] {
        height: 32px;
        max-width: 150px;
    }
}

/* Tag Page Hero */
.page-hero-modern {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-modern .container {
    position: relative;
    z-index: 2;
}

/* Tag Page Articles Grid */
.tag-page #articlesGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 100%;
}

.tag-page .container-fluid {
    padding: 0 30px;
}

@media (max-width: 1200px) {
    #articlesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tag-page #articlesGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #articlesGrid {
        grid-template-columns: 1fr;
    }
    
    .tag-page #articlesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .song-section,
    #popularRadiosSection .section-title-modern {
        text-align: center;
    }
    
    .song-section h2,
    #popularRadiosSection h2 {
        text-align: center;
    }
    
    .song-section .big,
    #popularRadiosSection .big {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tag-page #articlesGrid {
        grid-template-columns: 1fr;
    }
    
    #chat-login h1 {
        font-size: 32px;
    }
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

.category-badge {
    text-decoration: none;
    display: inline-block;
}

.article-tags {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid var(--border-color) !important;
}

.article-tags i.fas.fa-tags {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.tag-link {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%) !important;
    color: var(--primary-color) !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    font-weight: 600 !important;
    margin-right: 5px !important;
    margin-bottom: 5px !important;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* ============================================
   CATEGORY PAGE STYLES
   ============================================ */

.category-page {
    padding: 0 30px;
}

.category-page #articlesGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 100%;
}

.category-page .empty-message {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .category-page #articlesGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-page #articlesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-page #articlesGrid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DYNAMIC ARTICLE CARD STYLES (JavaScript)
   ============================================ */

body.home .article-card-col {
    margin-bottom: 30px;
}

body.home #articles .article-card-modern {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.article-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Günlük İstekler Ticker */
.daily-requests-ticker-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(168, 85, 247, 0.08) 100%);
    padding: 30px 0 25px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(99, 102, 241, 0.15);
    border-top: 3px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.daily-requests-ticker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #c084fc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.daily-requests-ticker-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.daily-requests-ticker-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
    position: relative;
}

.daily-requests-ticker-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.daily-requests-ticker-header h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.daily-requests-ticker-header h3 i {
    font-size: 26px;
    animation: musicPulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    padding: 10px;
    border-radius: 12px;
    -webkit-text-fill-color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.daily-requests-ticker-date {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: inline-flex;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.daily-requests-ticker-date i {
    font-size: 14px;
    color: var(--primary-color);
}

.daily-requests-ticker-date span {
    font-weight: 700;
    color: var(--primary-color);
}

.daily-requests-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.daily-requests-ticker-list {
    display: flex;
    gap: 20px;
    animation: tickerScroll 60s linear infinite;
    will-change: transform;
    white-space: nowrap;
    width: fit-content;
}

.daily-requests-ticker-list:hover {
    animation-play-state: paused;
}

.daily-requests-ticker-item {
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 16px;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.daily-requests-ticker-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.daily-requests-ticker-requester {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.daily-requests-ticker-requester i {
    font-size: 12px;
    color: var(--secondary-color);
}

.daily-requests-ticker-details {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-primary);
    flex-wrap: wrap;
}

.daily-requests-ticker-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 8px;
    font-weight: 500;
}

.daily-requests-ticker-detail-item i {
    font-size: 11px;
    color: var(--secondary-color);
}

.daily-requests-ticker-song {
    color: var(--text-primary);
    font-weight: 600;
}

.daily-requests-ticker-artist {
    color: var(--text-secondary);
    font-style: italic;
}

.daily-requests-ticker-dj {
    color: var(--primary-color);
    font-weight: 600;
}

.daily-requests-ticker-time {
    color: var(--text-tertiary);
    font-size: 12px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.daily-requests-ticker-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.daily-requests-ticker-empty i {
    font-size: 32px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.daily-request-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 16px;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: fadeInSlide 0.6s ease forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.daily-request-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daily-request-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.daily-request-item:hover::before {
    transform: scaleY(1);
}

.daily-request-item:nth-child(even) {
    animation-delay: 0.1s;
}

.daily-request-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.daily-request-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.daily-request-name i {
    font-size: 14px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 6px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-request-song {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.daily-request-song i {
    font-size: 13px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.daily-request-artist {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-style: italic;
    padding-left: 22px;
}

.daily-request-dj {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--border-light);
    font-weight: 500;
}

.daily-request-dj i {
    font-size: 11px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    padding: 4px;
    border-radius: 4px;
}

.daily-request-time {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.daily-request-time i {
    font-size: 10px;
    color: var(--accent-color);
}

@keyframes scrollRequests {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% + 20px));
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes musicPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.daily-requests-empty {
    padding: 60px 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.daily-requests-empty i {
    font-size: 48px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
    animation: floatIcon 3s ease-in-out infinite;
}

.daily-requests-empty p {
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .weekly-schedule-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .weekly-top-djs-right::after {
        display: none;
    }
    
    .djs-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .daily-requests-ticker-item {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .weekly-schedule-wrapper {
        grid-template-columns: 1fr;
    }
    
    .djs-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .djs-right {
        position: static;
    }
    
    .djs-right .section-title-modern.weekly-top-djs-section h2 {
        font-size: 32px;
    }
}
    
    .weekly-schedule-left::after {
        display: none;
    }
    
    .daily-requests-ticker-item {
        min-width: 300px;
        padding: 14px 20px;
    }
    
    .daily-requests-ticker-details {
        gap: 10px;
        font-size: 12px;
    }
    
    .daily-requests-ticker-detail-item {
        padding: 3px 8px;
        font-size: 11px;
    }
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.article-card-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.article-card-excerpt {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ============================================
   INDEX.PHP'DEN TAŞINAN CSS KODLARI
   ============================================ */

/* Açık Tema (Light Mode) - Varsayılan */
:root {
    /* Ana Renkler - Modern Mor/Mavi Gradient */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #a855f7;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Arka Plan Renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    
    /* Metin Renkleri */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --text-inverse: #ffffff;
    
    /* Border ve Shadow */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Sohbet Formu */
    --chat-bg-gradient-start: #1e293b;
    --chat-bg-gradient-end: #334155;
    --chat-text-white: #ffffff;
    --chat-button-gradient-start: #6366f1;
    --chat-button-gradient-end: #8b5cf6;
    
    /* DJ Kartları */
    --dj-card-bg: rgba(255, 255, 255, 0.95);
    --dj-card-border: rgba(255, 255, 255, 0.2);
    --dj-live-gradient-start: #ef4444;
    --dj-live-gradient-end: #dc2626;
    
    /* Player */
    --player-bg: rgba(255, 255, 255, 0.95);
    --player-text: #0f172a;
}

/* Koyu Tema (Dark Mode) */
[data-theme="dark"] {
    /* Ana Renkler - Aynı kalır */
    --primary-color: #818cf8;
    --secondary-color: #a78bfa;
    --accent-color: #c084fc;
    
    /* Arka Plan Renkleri */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-overlay: rgba(30, 41, 59, 0.95);
    
    /* Metin Renkleri */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --text-inverse: #0f172a;
    
    /* Border ve Shadow */
    --border-color: #334155;
    --border-light: #475569;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    
    /* Sohbet Formu */
    --chat-bg-gradient-start: #0f172a;
    --chat-bg-gradient-end: #1e293b;
    
    /* DJ Kartları */
    --dj-card-bg: rgba(30, 41, 59, 0.95);
    --dj-card-border: rgba(255, 255, 255, 0.1);
    
    /* Player */
    --player-bg: rgba(30, 41, 59, 0.95);
    --player-text: #f1f5f9;
}

/* Tema Geçiş Animasyonu */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Modern Navbar - Tema Desteği */
.rd-navbar-wrap {
    background: #0f172a !important;
    position: relative;
    z-index: 1000;
}

.rd-navbar {
    background: #0f172a !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #334155;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.rd-navbar.rd-navbar-corporate {
    background: #0f172a !important;
}

.rd-navbar.rd-navbar-fixed {
    background: #0f172a !important;
}

.rd-navbar.rd-navbar-fixed.rd-navbar-fixed-element-1 {
    background: #0f172a !important;
}

.rd-navbar-panel {
    background: #0f172a !important;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.rd-navbar-main {
    background: #0f172a !important;
    display: flex;
    align-items: center;
    width: 100%;
}

.rd-navbar-main-outer {
    width: 100%;
    background: #0f172a !important;
}

.rd-navbar-main-element {
    background: #0f172a !important;
}

.rd-navbar-nav-wrap {
    background: #0f172a !important;
}

.rd-nav-link {
    color: #f1f5f9 !important;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 10px 15px !important;
    display: block;
}

.rd-nav-link:hover {
    color: #818cf8 !important;
}

.rd-navbar-brand {
    display: flex;
    align-items: center;
}

.rd-navbar-brand .brand {
    filter: none;
    display: flex;
    align-items: center;
}

/* Logo - Her zaman açık renkli logo göster */
.rd-navbar-brand .brand-logo-dark {
    display: none !important;
}

.rd-navbar-brand .brand-logo-light {
    display: block !important;
}

[data-theme="dark"] .rd-navbar-brand .brand-logo-dark {
    display: none !important;
}

[data-theme="dark"] .rd-navbar-brand .brand-logo-light {
    display: block !important;
}

/* Modern Navbar Butonları - index.php için */
.rd-navbar-collapse .button.button-secondary.button-nuka {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--accent-color) 100%) !important;
    background-size: 300% 100% !important;
    color: white !important;
    border: none !important;
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.rd-navbar-collapse .button.button-secondary.button-nuka::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rd-navbar-collapse .button.button-secondary.button-nuka::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 
        0 12px 35px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    background-position: 100% 50% !important;
    color: white !important;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:hover::before {
    width: 300px;
    height: 300px;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:hover::after {
    opacity: 0.6;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:active {
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) !important;
}

.rd-navbar-collapse .button.button-secondary.button-nuka i {
    position: relative;
    z-index: 1;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:hover i {
    transform: scale(1.15) rotate(5deg);
}

.rd-navbar-collapse .button.button-secondary.button-nuka span {
    position: relative;
    z-index: 1;
}

.rd-navbar-collapse .button-overlay {
    display: none !important;
}

/* Navbar butonları arası boşluk */
.rd-navbar-collapse {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.rd-navbar-collapse .button.button-secondary.button-nuka:first-child {
    margin-right: 0 !important;
}

/* Responsive Navbar Butonları */
@media (max-width: 991px) {
    .rd-navbar-collapse .button.button-secondary.button-nuka {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .rd-navbar-collapse {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .rd-navbar-collapse .button.button-secondary.button-nuka {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
    }
}

/* Page Header */
.page-header {
    background: #0f172a !important;
    position: relative;
}

.page-header .section {
    background: #0f172a !important;
}

/* Navbar Toggle Butonu */
.rd-navbar-toggle {
    color: #f1f5f9 !important;
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
}

.rd-navbar-toggle span,
.rd-navbar-toggle span::before,
.rd-navbar-toggle span::after {
    background-color: #f1f5f9 !important;
}

.rd-navbar-collapse-toggle span,
.rd-navbar-collapse-toggle span::before,
.rd-navbar-collapse-toggle span::after {
    background-color: #f1f5f9 !important;
}

/* Navbar Collapse Alanı */
.rd-navbar-collapse {
    display: flex !important;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Navbar Main Element */
.rd-navbar-main-element {
    display: flex !important;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

/* Navbar Nav Wrap */
.rd-navbar-nav-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Navbar Nav */
.rd-navbar-nav {
    display: flex !important;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rd-nav-item {
    list-style: none;
    margin: 0;
}

/* Navbar Responsive */
@media (max-width: 991px) {
    .rd-navbar-main-element {
        flex-direction: column;
        align-items: stretch;
    }
    
    .rd-navbar-nav-wrap {
        width: 100%;
    }
    
    .rd-navbar-collapse {
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }
    
    .rd-navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .rd-nav-item {
        width: 100%;
    }
    
    .rd-nav-link {
        width: 100%;
        padding: 15px !important;
    }
}

/* Navbar Fixed State */
.rd-navbar.rd-navbar-fixed-element-1 {
    background: #0f172a !important;
}

/* Navbar Dropdown Menüler */
.rd-navbar-dropdown {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.rd-dropdown-link {
    color: #f1f5f9 !important;
}

.rd-dropdown-link:hover {
    color: #818cf8 !important;
    background: #334155 !important;
}

/* Navbar Collapse Toggle */
.rd-navbar-collapse-toggle {
    display: none;
    background: #0f172a !important;
}

@media (max-width: 991px) {
    .rd-navbar-collapse-toggle {
        display: block;
    }
    
    .rd-navbar-nav-wrap {
        background: #0f172a !important;
    }
    
    .rd-navbar-nav {
        background: #0f172a !important;
    }
}

/* Navbar içindeki tüm beyaz alanları kaldır */
.rd-navbar,
.rd-navbar-wrap,
.rd-navbar-main-outer,
.rd-navbar-main,
.rd-navbar-panel,
.rd-navbar-main-element,
.rd-navbar-nav-wrap,
.rd-navbar-collapse {
    background: #0f172a !important;
}

/* Navbar içindeki link ve text elementleri */
.rd-navbar a:not(.button),
.rd-navbar li {
    background: transparent !important;
}

/* Butonlar hariç tut */
.rd-navbar .button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Tema Toggle Butonu */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: var(--shadow-xl);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Body Arka Plan */
body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Modern Makale Kartları */
.article-card-modern {
    margin-bottom: 0;
    padding: 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.article-card-modern-inner {
    background: var(--dj-card-bg);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.article-card-modern-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.article-card-modern-inner:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.article-card-modern-inner:hover::before {
    transform: scaleX(1);
}

.article-card-modern-image {
    width: calc(100% + 36px);
    height: 180px;
    margin: -20px -18px 16px -18px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.article-card-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-modern-inner:hover .article-card-modern-image img {
    transform: scale(1.1);
}

.article-card-modern-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-card-modern-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 14px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.article-card-modern-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 14px 0;
    font-size: 11px;
    color: var(--text-tertiary);
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.article-card-modern-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card-modern-btn {
    width: 100%;
    margin: 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.article-card-modern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.6s, height 0.6s;
}

.article-card-modern-btn:hover::before {
    width: 300px;
    height: 300px;
}

.article-card-modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.article-card-modern-btn span,
.article-card-modern-btn i {
    position: relative;
    z-index: 1;
}

/* Dark theme */
[data-theme="dark"] .article-card-modern-inner {
    background: var(--dj-card-bg-dark);
}

[data-theme="dark"] .article-card-modern-title {
    color: var(--text-primary-dark);
}

[data-theme="dark"] .article-card-modern-excerpt {
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .article-card-modern-meta {
    color: var(--text-tertiary-dark);
    border-top-color: var(--border-color-dark);
}

/* Modern DJ Kartları */
.dj-card-modern {
    margin-bottom: 30px;
    padding: 0 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.dj-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.dj-schedule i {
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dj-card-modern-inner {
    background: var(--dj-card-bg);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    color: var(--text-primary);
}

.dj-card-modern-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.dj-card-modern-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.dj-card-modern-inner:hover::before {
    transform: scaleX(1);
}

.dj-live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--dj-live-gradient-start) 0%, var(--dj-live-gradient-end) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 65, 108, 0.7);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.dj-card-modern-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.dj-card-modern-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dj-card-modern-inner:hover .dj-card-modern-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dj-avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 3s linear infinite;
}

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

.dj-card-modern-content {
    text-align: center;
    padding: 0 8px;
}

.dj-card-modern-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    padding: 0 10px;
}

.dj-card-modern-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 14px 0;
    min-height: 38px;
    padding: 0 10px;
}

.dj-card-modern-stats {
    display: flex;
    justify-content: space-around;
    margin: 0 0 18px 0;
    padding: 16px 10px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.dj-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dj-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dj-card-modern-inner:hover .dj-stat-icon {
    transform: translateY(-5px) scale(1.1);
}

.dj-stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dj-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.dj-stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.dj-card-modern-btn {
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.dj-card-modern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dj-card-modern-btn:hover::before {
    width: 300px;
    height: 300px;
}

.dj-card-modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dj-card-modern-btn:active {
    transform: translateY(-1px);
}

.dj-card-modern-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.dj-card-modern-btn span {
    position: relative;
    z-index: 1;
}

.dj-card-modern-btn i {
    position: relative;
    z-index: 1;
}

/* DJ Wrapper ve Slider */
.djs-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 40px;
}

.djs-left {
    flex: 1;
    min-width: 0;
    max-width: 72%;
}

.djs-right {
    flex: 0 0 28%;
    min-width: 260px;
}

.djs-right .section-title-modern {
    margin-bottom: 25px;
    padding: 15px 10px;
}

.djs-right .section-title-modern h2 {
    font-size: 28px;
    margin: 10px 0 8px 0;
}

.djs-right .section-title-modern .big {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.6;
}

.weekly-top-djs-container {
    padding: 0;
}

.djs-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.djs-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ana sayfa için slider (index.php) */
body.home #djs #djsGrid {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 18px;
    will-change: transform;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.home #djs #djsGrid .dj-card-modern {
    flex-shrink: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.djs-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.djs-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.djs-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.djs-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.djs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.djs-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.djs-dot:hover {
    background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .djs-wrapper {
        flex-direction: column;
    }
    
    .djs-left {
        max-width: 100%;
    }
    
    .djs-right {
        flex: 1;
        min-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    /* Tablet: 2 kart per slide - JavaScript tarafından yönetiliyor */
    #djsGrid .dj-card-modern {
        /* JavaScript tarafından dinamik olarak ayarlanacak */
    }
}

@media (max-width: 768px) {
    .dj-card-modern {
        padding: 0 10px;
    }
    
    .dj-card-modern-inner {
        padding: 30px 25px;
    }
    
    .dj-card-modern-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .dj-card-modern-name {
        font-size: 20px;
    }
    
    .dj-card-modern-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .dj-stat-item {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Mobil: 1 kart per slide - JavaScript tarafından yönetiliyor */
    #djs #djsGrid .dj-card-modern {
        /* JavaScript tarafından dinamik olarak ayarlanacak */
    }
    
    .djs-wrapper {
        gap: 30px;
    }
}

/* Modern Bölüm Başlıkları */
.section-title-modern {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding: 50px 20px;
}

.section-title-modern h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-radius: 30px;
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(10px);
    font-family: 'Poppins', sans-serif;
}

.section-title-modern h6::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.section-title-modern h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 30px 0 25px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.section-title-modern h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    border-radius: 3px;
    animation: expandLine 1.2s ease-out;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.section-title-modern .big {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 750px;
    margin: 35px auto 0;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* İkonlu Başlıklar */
.section-title-modern.with-icon h6 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title-modern.with-icon h6 i {
    font-size: 18px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Özel Gradient Efektler */
.section-title-modern.dj-section h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-modern.article-section h2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-modern.song-section h2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-modern.weekly-schedule-section h2 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Başlıklar */
@media (max-width: 768px) {
    .section-title-modern h2 {
        font-size: 32px;
    }
    
    .section-title-modern .big {
        font-size: 16px;
    }
    
    .section-title-modern {
        padding: 30px 15px;
    }
}

/* Modern Makale Kartları - Ana sayfa için */
body.home .article-card-modern {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

body.home .article-card-modern-inner {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card-modern-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-card-modern-image {
    width: 100%;
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    overflow: hidden;
}

.article-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.4s ease;
}

.article-card-modern-inner:hover .article-image-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-category-badge i {
    font-size: 11px;
}

.article-card-modern-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    color: var(--text-primary);
}

.article-card-modern-title {
    color: var(--text-primary);
}

.article-card-modern-excerpt {
    color: var(--text-secondary);
}

.article-card-modern-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.article-card-modern-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-modern-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.article-date-modern,
.article-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.article-date-modern i,
.article-views i {
    color: var(--primary-color);
}

/* Responsive Makaleler */
@media (max-width: 768px) {
    .article-card-modern {
        padding: 0 10px;
    }
    
    .article-card-modern-content {
        padding: 20px;
    }
    
    .article-card-modern-title {
        font-size: 18px;
        min-height: 50px;
    }
    
    .article-card-modern-image {
        height: 180px;
    }
}

/* Section Arka Planları - Tema Desteği */
.section.bg-default {
    background-color: var(--bg-secondary) !important;
    position: relative;
    padding: 80px 0;
}

.section.bg-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.section.bg-default:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%) !important;
}

.section-title-modern {
    color: var(--text-primary);
}

.section-title-modern h2 {
    color: var(--text-primary);
}

.section-title-modern h6 {
    color: var(--text-secondary);
}

.section-title-modern .big {
    color: var(--text-secondary);
}

/* Section Container Modernizasyonu */
.section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Spacing */
.section-md {
    padding: 100px 0 !important;
}

@media (max-width: 768px) {
    .section-md {
        padding: 60px 0 !important;
    }
}

/* Font Değişikliği - Sadece belirli bölümler için */
.section-title-modern,
.dj-card-modern,
.article-card-modern,
.song-list-item {
    font-family: 'Inter', 'Poppins', sans-serif;
}

.section-title-modern h2,
.dj-card-modern-name,
.article-card-modern-title {
    font-family: 'Poppins', sans-serif;
}

/* Modern Sohbet Giriş Formu - Hero Alanı Düzeltmeleri */
#chat-login.bg-wave-dark-wrap {
    position: relative;
    overflow: hidden;
    background: #0f172a !important;
}

#chat-login .bg-wave-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0f172a !important;
}

#chat-login .bg-wave-dark-1.bg-gray-800 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    min-height: 100%;
}

/* Wave SVG'yi koyu yap */
#chat-login .wave-dark path {
    fill: #0f172a !important;
}

#chat-login .wave-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
}

#chat-login .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Player alanını hero'ya yapıştır - Full Ekran */
#player {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: var(--bg-secondary);
    width: 100%;
    max-width: 100%;
}

#player .section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

#player .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 100%;
}

#player .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#player .col-12,
#player .col-xl-10,
#player [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#player .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.modern-player-container {
    border-radius: 0 0 20px 20px;
    margin: 0;
    width: 100%;
    padding: 50px 40px;
}

@media (max-width: 768px) {
    #player .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .modern-player-container {
        padding: 30px 20px;
    }
}

/* Player Wrapper - 3 Sütunlu Layout */
.player-wrapper-modern {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 25px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.player-main-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Modern Player Container V2 */
.modern-player-container-v2 {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    color: var(--player-text);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--border-color);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.modern-player-container-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

/* DJ Section V2 */
.player-dj-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    justify-content: center;
}

.dj-avatar-wrapper-v2 {
    position: relative;
    flex-shrink: 0;
}

.dj-avatar-modern-v2 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid var(--bg-card);
}

.dj-avatar-modern-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dj-avatar-modern-v2:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
}

.dj-avatar-pulse-v2 {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.4);
    animation: pulseV2 2s ease-in-out infinite;
}

.dj-avatar-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseV2 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.live-indicator-v2 {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    border: 2px solid var(--bg-card);
    z-index: 10;
    animation: livePulseV2 2s ease-in-out infinite;
}

.live-dot-v2 {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: liveDotPulse 1.5s ease-in-out infinite;
}

@keyframes livePulseV2 {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(239, 68, 68, 0.7);
    }
}

@keyframes liveDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.dj-info-v2 {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.dj-name-v2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.dj-actions-v2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.dj-action-btn-v2 {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    color: white;
    position: relative;
    overflow: hidden;
}

.dj-action-btn-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dj-action-btn-v2:hover::before {
    width: 300px;
    height: 300px;
}

.dj-action-btn-v2 i {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.dj-action-btn-v2 span {
    position: relative;
    z-index: 1;
}

.request-btn-v2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.request-btn-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.vote-btn-v2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.vote-btn-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.about-btn-v2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.about-btn-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

/* Player Controls V2 */
.player-controls-section {
    margin-top: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Modern Audio Player Wrapper */
.modern-audio-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.modern-audio-container {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-audio-container:hover {
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
}

.modern-audio-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    background-size: 200% 100%;
    border-radius: 20px 20px 0 0;
    animation: gradientShift 3s ease infinite;
}

.modern-audio-player {
    width: 100%;
    height: 60px;
    outline: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Audio Player Kontrol Butonları Stili (Tarayıcıya Özel) */
.modern-audio-player::-webkit-media-controls-panel {
    background-color: transparent;
    border-radius: 12px;
}

.modern-audio-player::-webkit-media-controls-play-button {
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modern-audio-player::-webkit-media-controls-play-button:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

.modern-audio-player::-webkit-media-controls-current-time-display,
.modern-audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.modern-audio-player::-webkit-media-controls-timeline {
    background-color: rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    height: 6px;
}

.modern-audio-player::-webkit-media-controls-timeline::-webkit-media-slider-thumb {
    background-color: var(--primary-color);
    border: 2px solid white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.modern-audio-player::-webkit-media-controls-volume-slider {
    background-color: rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    height: 4px;
}

.modern-audio-player::-webkit-media-controls-volume-slider::-webkit-media-slider-thumb {
    background-color: var(--primary-color);
    border: 2px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

/* Firefox için */
.modern-audio-player {
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

/* Responsive */
@media (max-width: 768px) {
    .modern-audio-wrapper {
        padding: 15px;
    }
    
    .modern-audio-container {
        padding: 20px 20px;
        border-radius: 16px;
    }
    
    .modern-audio-player {
        height: 50px;
    }
    
    .modern-audio-player::-webkit-media-controls-current-time-display,
    .modern-audio-player::-webkit-media-controls-time-remaining-display {
        font-size: 12px;
    }
}

.player-controls-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.player-btn-v2 {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.player-btn-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.player-btn-v2:hover::before {
    width: 200px;
    height: 200px;
}

.player-btn-v2:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.player-btn-v2:active {
    transform: translateY(-1px) scale(0.98);
}

.play-pause-btn-v2 {
    width: 70px;
    height: 70px;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.play-pause-btn-v2:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.player-progress-section-v2 {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.player-time-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
}

.time-separator {
    color: var(--text-tertiary);
}

.player-progress-bar-v2 {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-progress-fill-v2 {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.player-progress-handle-v2 {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: grab;
}

.player-progress-handle-v2:active {
    cursor: grabbing;
}

.player-progress-bar-v2:hover .player-progress-handle-v2 {
    opacity: 1;
}

.player-volume-section-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-volume-slider-v2 {
    width: 100px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.player-volume-section-v2:hover .player-volume-slider-v2 {
    display: block;
    opacity: 1;
}

.player-volume-bar-v2 {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-volume-fill-v2 {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

.player-volume-handle-v2 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
    cursor: grab;
}

.player-volume-handle-v2:active {
    cursor: grabbing;
}

/* Player Side Cards - Başvuru Kartları */
.player-side-card {
    display: flex;
    flex-direction: column;
}

.application-card-modern {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.application-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.dj-application-card::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.application-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.application-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dj-application-card .application-icon-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-application-card::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.admin-application-card .application-icon-modern {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.admin-application-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.admin-application-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.application-card-modern:hover .application-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.application-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.application-description-modern {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 25px 0;
    text-align: center;
    flex: 1;
}

.application-btn-modern {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.application-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.application-btn-modern:hover::before {
    width: 400px;
    height: 400px;
}

.application-btn-modern i,
.application-btn-modern span {
    position: relative;
    z-index: 1;
}

.dj-application-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dj-application-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.application-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: translateX(5px);
}

.feature-item-modern i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .player-wrapper-modern {
        grid-template-columns: 280px 1fr 280px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .player-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        align-items: stretch;
    }
    
    .player-side-card {
        display: flex;
    }
    
    .application-card-modern {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-player-container-v2 {
        padding: 25px 20px;
    }
    
    .player-dj-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .dj-avatar-modern-v2 {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
    
    .dj-name-v2 {
        font-size: 28px;
    }
    
    .dj-actions-v2 {
        flex-direction: column;
        width: 100%;
    }
    
    .dj-action-btn-v2 {
        width: 100%;
        justify-content: center;
    }
    
    .player-controls-v2 {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-progress-section-v2 {
        min-width: 100%;
        max-width: 100%;
    }
    
    .play-pause-btn-v2 {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .player-btn-v2 {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

.modern-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* DJ Info Modern */
.current-dj-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dj-avatar-modern {
    width: 120px;
    height: 120px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dj-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.dj-avatar-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.dj-avatar-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.dj-info-modern {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.dj-actions-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.dj-action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.dj-action-btn i {
    font-size: 16px;
}

.request-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border-radius: 12px !important;
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.vote-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    border-radius: 12px !important;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.about-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    border-radius: 12px !important;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Popup Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 0 0 20px 20px;
    padding: 40px;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.modal-form-group input,
.modal-form-group textarea,
.modal-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--bg-card);
    color: var(--text-primary);
}

.modal-form-group input:focus,
.modal-form-group textarea:focus,
.modal-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Yayınlanan İstekler Slider */
.requests-slider {
    margin-top: 30px;
    padding: 20px 0;
    background: var(--bg-tertiary);
    border-radius: 0;
    overflow: hidden;
}

.requests-slider-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.requests-slider-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 20px;
    scroll-behavior: smooth;
}

.requests-slider-container::-webkit-scrollbar {
    height: 4px;
}

.requests-slider-container::-webkit-scrollbar-track {
    background: var(--border-color);
}

.requests-slider-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.request-item {
    min-width: 250px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
}

.request-item-song {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.request-item-artist {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.request-item-requester {
    font-size: 12px;
    color: var(--text-tertiary);
}

.dj-name-modern {
    font-size: 32px;
    font-weight: 800;
    color: var(--player-text);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dj-status-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dj-status-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.dj-status-modern.hidden {
    display: none;
}

.dj-actions-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.dj-action-btn-inline {
    padding: 10px 20px;
    border: none;
    border-radius: 12px !important;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
}

.dj-action-btn-inline i {
    font-size: 14px;
}

.dj-action-btn-inline.request-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dj-action-btn-inline.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.dj-action-btn-inline.vote-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.dj-action-btn-inline.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.dj-action-btn-inline.about-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.dj-action-btn-inline.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Modern Audio Player */
.modern-audio-player {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 15px 15px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.player-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px !important;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.player-btn:active {
    transform: scale(0.95);
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.player-info {
    flex: 1;
    min-width: 200px;
}

.player-time {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
}

.player-progress-container {
    width: 100%;
}

.player-progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 0;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.player-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    width: 0%;
    transition: width 0.1s linear;
}

.player-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.player-progress-bar:hover .player-progress-handle {
    opacity: 1;
}

.player-volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-volume-slider {
    width: 80px;
    display: none;
}

.player-volume-container:hover .player-volume-slider {
    display: block;
}

.player-volume-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 0;
    position: relative;
    cursor: pointer;
}

.player-volume-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    width: 100%;
}

.player-volume-handle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* Responsive Player */
@media (max-width: 768px) {
    .modern-player-container {
        padding: 30px 20px;
    }
    
    .current-dj-modern {
        flex-direction: column;
        gap: 20px;
    }
    
    .dj-avatar-modern {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .dj-name-modern {
        font-size: 24px;
    }
    
    .player-controls {
        gap: 15px;
    }
    
    .player-info {
        min-width: 100%;
    }
}

/* Hero alanı metin renkleri - Modernize edilmiş fontlar */
#chat-login.text-gray-600,
#chat-login.text-gray-600 h1,
#chat-login.text-gray-600 h6,
#chat-login.text-gray-600 .big {
    color: #ffffff !important;
}

/* Modern Font Stilleri */
#chat-login h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.5px !important;
}

#chat-login .big {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    color: #cbd5e1 !important;
    margin-bottom: 40px !important;
    letter-spacing: 0.3px !important;
}

@media (max-width: 768px) {
    #chat-login h1 {
        font-size: 32px !important;
    }
    
    #chat-login .big {
        font-size: 16px !important;
    }
    
    #chat-login h6 {
        font-size: 14px !important;
    }
}

#chatLoginForm {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

#chatLoginForm .form-wrap {
    margin-bottom: 25px;
}

#chatLoginForm .form-input {
    width: 100%;
    padding: 18px 20px 18px 55px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    color: #2d3748 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    font-family: 'Inter', sans-serif !important;
}

/* Input Icon Container */
#chatLoginForm .form-wrap {
    position: relative;
}

#chatLoginForm .form-wrap::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #6366f1;
    z-index: 10;
    pointer-events: none;
    margin-top: 12px;
}

#chatLoginForm .form-wrap:has(#chatUsername)::before {
    content: '\f007'; /* user icon */
}

#chatLoginForm .form-wrap:has(#chatPassword)::before {
    content: '\f023'; /* lock icon */
}

#chatLoginForm .form-input:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-2px);
    background: #ffffff !important;
}

#chatLoginForm .form-input::placeholder {
    color: #a0aec0 !important;
    font-weight: 400 !important;
}

#chatLoginForm .form-label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 10px !important;
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.3px;
}

#chatLoginForm .col-12 {
    margin-top: 0 !important;
    padding-top: 5px !important;
}

#chatLoginForm .button.button-secondary.button-nuka {
    padding: 20px 60px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--chat-button-gradient-start) 0%, var(--chat-button-gradient-end) 100%) !important;
    border: none !important;
    border-radius: 15px !important;
    color: #ffffff !important;
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: none !important;
    letter-spacing: 0.8px !important;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 10px !important;
    display: inline-block !important;
}

#chatLoginForm .button.button-secondary.button-nuka:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5) !important;
}

#chatLoginForm .button.button-secondary.button-nuka:active {
    transform: translateY(-1px) scale(0.98) !important;
}

#chatLoginForm .button-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
}

/* Responsive Sohbet Formu */
@media (max-width: 768px) {
    #chatLoginForm .form-input {
        padding: 16px 18px !important;
        font-size: 16px !important;
    }
    
    #chatLoginForm .form-label {
        font-size: 14px !important;
    }
    
    #chatLoginForm .button.button-secondary.button-nuka {
        padding: 16px 40px !important;
        font-size: 16px !important;
    }
}
