/* ===== GENEL AYARLAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tema 1 - Klasik */
    --primary: #ff6b6b;
    --secondary: #4ecdc4;
    --background: #ffffff;
    --text: #333333;
    --card: #f8f9fa;
    --accent: #ffd93d;
    --shadow: rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255,255,255,0.1);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

@keyframes equalizer {
    0%, 100% { height: 5px; }
    50% { height: 20px; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary); }
    50% { box-shadow: 0 0 40px var(--primary), 0 0 60px var(--primary); }
}

/* ===== HEADER ===== */
.header {
    background: var(--gradient);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInUp 0.8s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo i {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* ===== NAVİGASYON ===== */
.nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-btn::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;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover, .nav-btn.active {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-btn.active {
    background: rgba(255,255,255,0.4);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== TEMA SEÇİCİ ===== */
.theme-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.theme-selector i {
    color: white;
    font-size: 1.2rem;
}

#theme-select {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

#theme-select option {
    background: var(--card);
    color: var(--text);
}

/* ===== HEADER SLIDER ===== */
.header-slider {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slider-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-text.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* ===== MAIN CONTENT ===== */
.main {
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== RADYO PLAYER ===== */
.radio-player {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.radio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    animation: glow 2s infinite;
}

.player-container {
    display: grid;
    gap: 30px;
}

/* ===== ÇALAN ŞARKI BİLGİSİ ===== */
.now-playing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient);
    padding: 25px;
    border-radius: var(--border-radius);
    color: white;
    position: relative;
    overflow: hidden;
}

.now-playing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.song-info h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.song-info h3 {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== EQUALİZER ===== */
.equalizer {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 30px;
}

.equalizer .bar {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: equalizer 1s infinite;
}

.equalizer .bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.3s; }

/* ===== PLAYER KONTROLLER ===== */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

.play-btn:hover::before {
    width: 100px;
    height: 100px;
}

.play-btn:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

.play-btn:active {
    transform: scale(0.95);
}

/* ===== SES KONTROLÜ ===== */
.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.05);
    padding: 15px 20px;
    border-radius: var(--border-radius);
}

.volume-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.volume-btn:hover {
    transform: scale(1.2);
    color: var(--secondary);
}

.volume-slider {
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* ===== İSTEK BUTONU ===== */
.request-btn {
    background: var(--accent);
    border: none;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: var(--primary);
    color: white;
}

/* ===== DİNLEYİCİ SAYISI ===== */
.listener-count {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.listener-count i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

/* ===== SAYFA İÇERİKLERİ ===== */
.page {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.page.active {
    display: block;
}

.page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANA SAYFA ===== */
.home-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.welcome-card {
    background: var(--card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.welcome-card:hover::before {
    transform: scaleX(1);
}

.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.welcome-card h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.welcome-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--card);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

/* ===== FORM STİLLERİ ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background: rgba(0,0,0,0.05);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.submit-btn {
    width: 100%;
    background: var(--gradient);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== COOLDOWN BİLGİSİ ===== */
.cooldown-info {
    background: rgba(255,193,7,0.1);
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    color: #856404;
}

.cooldown-info i {
    margin-right: 8px;
}

/* ===== RESPONSİVE TASARIM ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        flex: 1;
        min-width: 120px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .theme-selector {
        order: 2;
    }
    
    .logo {
        order: 1;
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
    }
    
    .now-playing {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .page h1 {
        font-size: 2rem;
    }
    
    .home-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 20px 10px;
    }
    
    .radio-player {
        padding: 20px;
    }
    
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .nav-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .nav-btn i {
        font-size: 1rem;
    }
}

/* ===== TEMA GEÇİŞ ANİMASYONU ===== */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* ===== DJ KARTLARI ===== */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dj-card {
    background: var(--card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.dj-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dj-card:hover .dj-image img {
    transform: scale(1.1);
}

.dj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.dj-card:hover .dj-overlay {
    opacity: 1;
}

.dj-social {
    display: flex;
    gap: 15px;
}

.dj-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.dj-social a:hover {
    transform: scale(1.2) rotate(360deg);
}

.dj-info {
    padding: 25px;
}

.dj-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.dj-specialty {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.dj-schedule {
    color: var(--text);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== PROGRAM TABLOSU ===== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.day-schedule {
    background: var(--card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.day-title {
    background: var(--gradient);
    color: white;
    padding: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.3rem;
}

.day-programs {
    padding: 20px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.program-time {
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
}

.program-info {
    flex: 1;
}

.program-dj {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.program-name {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* ===== SOHBET ODASI ===== */
.chat-container {
    background: var(--card);
    border-radius: var(--border-radius);
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 15px;
    border-radius: 15px;
    animation: fadeInUp 0.3s ease;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--gradient);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-message.dj {
    align-self: flex-start;
    background: var(--accent);
    color: var(--text);
    border-bottom-left-radius: 5px;
}

.chat-message.system {
    align-self: center;
    background: rgba(0,0,0,0.1);
    color: var(--text);
    font-style: italic;
    max-width: 90%;
    text-align: center;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.message-username {
    font-weight: 600;
}

.message-time {
    opacity: 0.7;
    font-size: 0.8rem;
}

.message-content {
    line-height: 1.4;
}

.chat-input {
    display: flex;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    gap: 15px;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: rgba(0,0,0,0.05);
    outline: none;
    transition: var(--transition);
}

.chat-input input:focus {
    border-color: var(--primary);
    background: white;
}

#chat-send {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-send:hover {
    transform: scale(1.1);
}

/* ===== BİLDİRİMLER ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.notification-info .notification-content {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.notification-success .notification-content {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification-warning .notification-content {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.notification-error .notification-content {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.notification-close:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== PLAYING ANİMASYONU ===== */
.play-btn.playing {
    animation: pulse 2s infinite;
}

/* ===== TEMA 2 - GECE MODU ===== */
[data-theme="tema2"] {
    --primary: #bb86fc;
    --secondary: #03dac6;
    --background: #121212;
    --text: #ffffff;
    --card: #1e1e1e;
    --accent: #cf6679;
    --shadow: rgba(0,0,0,0.5);
}

/* ===== TEMA 3 - OKYANUS ===== */
[data-theme="tema3"] {
    --primary: #0077be;
    --secondary: #00a8cc;
    --background: #f0f8ff;
    --text: #2c3e50;
    --card: #ffffff;
    --accent: #17a2b8;
    --shadow: rgba(0,119,190,0.1);
}

/* ===== SCROLL BAR ÖZELLEŞTİRME ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--card);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== MOBİL OPTİMİZASYON EKLEMELERİ ===== */
@media (max-width: 768px) {
    .dj-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-container {
        height: 400px;
    }
    
    .chat-message {
        max-width: 90%;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .program-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .program-time {
        min-width: auto;
    }
}

/* ===== LOADING ANİMASYONLARI ===== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* ===== ACCESSIBILITY İYİLEŞTİRMELERİ ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus indicators */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: rgba(0,0,0,0.8);
    }
}
/* ===== İSTEK LİSTESİ KAYAN YAZI ===== */
.request-ticker-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 15px 0;
    margin-top: 50px;
    overflow: hidden;
}

.ticker-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ticker-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.ticker-scroll {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: white;
    margin-right: 50px;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-title {
        font-size: 14px;
        margin-right: 10px;
    }
    .ticker-item {
        font-size: 14px;
        margin-right: 30px;
    }
}
