/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1f2937;
    --light: #f9fafb;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--danger), #dc2626);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.logo-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* NAVIGATION */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item:hover {
    background: var(--glass);
    transform: translateY(-1px);
}

.nav-item.active {
    background: linear-gradient(45deg, var(--secondary), #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.nav-item i {
    font-size: 0.85rem;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* SON İSTEKLER MARQUEE */
.recent-requests-marquee {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 70px;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 60s linear infinite;
    font-size: 0.9rem;
    color: white;
    padding-left: 100%;
}

.marquee-title {
    font-weight: 600;
    margin-right: 20px;
    color: #fbbf24;
}

.request-item {
    margin-right: 40px;
    display: inline-block;
}

.request-item i {
    margin-right: 4px;
    opacity: 0.8;
}

@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* HERO BANNER */
.hero-banner {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 50%, 
        rgba(51, 65, 85, 0.95) 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 15;
}

.hero-right {
    color: white;
    position: relative;
    z-index: 15;
}

/* HERO SVG CONTAINER */
.hero-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.hero-svg-container svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-svg-container svg:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* HERO OVERLAY */
.hero-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}

.live-indicator {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* HERO TITLE */
.hero-title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: white !important;
    position: relative !important;
    z-index: 999 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative !important;
    z-index: 999 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-actions {
    position: relative !important;
    z-index: 999 !important;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* MAIN LAYOUT */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.left-content {
    min-width: 0;
}

.right-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* PLAYER CARD */
.player-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.player-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.song-info {
    flex: 1;
    min-width: 200px;
}

.song-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.artist-name {
    font-size: 0.9rem;
    opacity: 0.8;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--danger), #dc2626);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    position: relative;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.play-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--glass);
    outline: none;
    cursor: pointer;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--danger);
    cursor: pointer;
}

.player-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content {
    line-height: 1.6;
}

.card-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

/* NEWS CARD */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.news-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.news-svg svg {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-svg:hover svg {
    transform: scale(1.1);
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-summary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-read-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-read-more::after {
    content: '→';
    font-size: 0.8rem;
}

.news-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* SIDEBAR STYLES */
.sidebar-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.sidebar-content {
    padding: 0;
}

/* SOHBET FORMU */
.chat-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.chat-login-form .form-group {
    margin-bottom: 0;
}

.chat-login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.chat-login-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* DJ LİSTESİ */
.dj-list {
    display: flex;
    flex-direction: column;
}

.dj-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dj-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.dj-item.live {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

.dj-item.online {
    border-left: 3px solid #10b981;
}

.dj-item.offline {
    opacity: 0.6;
}

.dj-avatar {
    position: relative;
    font-size: 2rem;
    color: var(--primary);
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--dark);
}

.status-indicator.live {
    background: #ef4444;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #10b981;
}

.status-indicator.offline {
    background: #6b7280;
}

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

.dj-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.dj-status {
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.broadcast-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.broadcast-type i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.text-red { color: #ef4444; }
.text-green { color: #10b981; }
.text-gray { color: #6b7280; }

/* =============================================== */
/* DJ PROGRAM SECTION - DOĞRU YER */
/* =============================================== */

.dj-program-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

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

.program-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-title i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.program-title h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

/* GÜN SEKMELERİ */
.day-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.day-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.day-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

.day-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.day-tab.active i {
    color: white;
}

/* PROGRAM TABLOSU */
.program-table-container {
    position: relative;
    min-height: 400px;
}

.program-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(20px);
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.program-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.program-table th {
    padding: 16px 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.program-table th i {
    margin-right: 8px;
    opacity: 0.9;
}

.program-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.program-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.program-table tbody tr.current-show {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border-left: 4px solid var(--primary);
}

.program-table td {
    padding: 16px 20px;
    vertical-align: middle;
    color: white;
    white-space: nowrap; /* Bu satırı ekleyin */
}

/* SAAT SÜTUNU */
.time-cell {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
    min-width: 80px;
}

/* DJ SÜTUNU */
.dj-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    white-space: nowrap; /* Bu satırı ekleyin */
}

.dj-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.dj-name {
    font-weight: 500;
    color: white;
}

/* YAYIN AKIŞI SÜTUNU */
.show-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.show-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.show-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* LOADING */
.program-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* HIZLI ERİŞİM BUTONLARI */
.schedule-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-schedule-full,
.btn-reminder-setup,
.btn-download-schedule {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-schedule-full:hover,
.btn-reminder-setup:hover,
.btn-download-schedule:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-schedule-full {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.btn-schedule-full:hover {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* =============================================== */
/* MODAL */
/* =============================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.show,
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content,
.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-form,
.modal-body {
    padding: 0 20px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel,
.btn-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-cancel {
    background: var(--glass);
    color: white;
}

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

.btn-submit {
    background: linear-gradient(45deg, var(--secondary), #059669);
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* NEWS DETAIL MODAL */
.news-detail {
    padding: 0;
}

.news-detail h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-detail .news-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail .news-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* MESSAGE CONTAINER */
#messageContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.message-toast {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 10px;
    border: 1px solid var(--glass-border);
    color: white;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    animation: slideInRight 0.3s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-toast.success {
    border-left: 4px solid var(--secondary);
}

.message-toast.error {
    border-left: 4px solid var(--danger);
}

.message-toast.success i {
    color: var(--secondary);
}

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

.message-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.message-close:hover {
    opacity: 1;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 40px 0 20px;
}

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

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

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4::before {
    content: '';
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

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

.footer-section ul li a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.footer-player {
    margin-top: 15px;
}

.mini-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--glass);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.mini-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--danger), #dc2626);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-play-btn:hover {
    transform: scale(1.1);
}

.mini-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-status {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.mini-quality {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* UTILITY CLASSES */
.w-100 { width: 100%; }
.text-center { text-align: center; }
.d-none { display: none; }
.d-flex { display: flex; }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideInRight {
    to { transform: translateX(0); }
}

@keyframes slideOutRight {
    to { transform: translateX(100%); }
}

.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeIn {
    animation-name: fadeInUp;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .right-sidebar {
        position: static;
        order: -1;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .dj-program-section {
        padding: 20px;
        margin: 30px auto;
    }
    
    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .day-tabs {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 60px;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .recent-requests-marquee {
        margin-top: 60px;
        padding: 6px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .player-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .player-controls {
        justify-content: center;
        gap: 15px;
    }

    .news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .news-image {
        width: 100%;
        height: 120px;
        align-self: center;
    }

    .dj-program-section {
        padding: 15px;
        margin: 20px auto;
    }
    
    .day-tab {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .program-table th,
    .program-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .schedule-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-schedule-full,
    .btn-reminder-setup,
    .btn-download-schedule {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .player-card {
        padding: 15px;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    #messageContainer {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* PRINT STYLES */
@media print {
    .hero-banner,
    .sidebar-card,
    .modal-overlay,
    .recent-requests-marquee,
    .header,
    .site-footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* DJ PROGRAM TABLOSU - ZORUNLU DÜZELTİLMİŞ */
.program-table tr {
    display: table-row !important;
}

.program-table td {
    display: table-cell !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    padding: 16px 20px !important;
}

.dj-cell {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-direction: row !important; /* Yan yana */
}

.show-cell {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-direction: row !important; /* Yan yana */
}

/* EĞER HALA ALT ALTA GELIYORSA */
.program-table .dj-cell > *,
.program-table .show-cell > * {
    display: inline-block !important;
    vertical-align: middle !important;
}
#sonic_art {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}
