@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* GLOBAL RESET & VARIABLES */
:root {
    --bg-primary: #0a0612;
    --bg-secondary: #130c24;
    --bg-tertiary: #1b1232;
    --text-primary: #f3f1f6;
    --text-secondary: #a9a4b8;
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #7f00ff;
    --accent-gold: #ffb703;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(at 10% 20%, rgba(127, 0, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(0, 242, 254, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--glass-hover);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 0, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* HEADER SECTION */
header {
    background: rgba(10, 6, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 0;
}

/* Logo - sol sabit */
.header-container .logo-link {
    flex-shrink: 0;
}

/* Nav - ortala (flex ile) */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logo-icon {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 8px 0;
    position: relative;
    color: var(--text-secondary);
    white-space: nowrap;
}

nav a:hover, nav a.active {
    color: var(--text-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-smooth);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* LIVE BROADCAST INDICATOR */
.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff4d4d;
}

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

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 10px #ff4d4d; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* AUDIO PLAYER FLOATING BAR */
.player-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 850px;
    background: rgba(19, 12, 36, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    z-index: 999;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 35%;
}

.player-logo-disc {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    flex-shrink: 0;
}

.player-logo-disc.spinning {
    animation: rotateDisc 5s linear infinite;
}

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

.player-track-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.player-track-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

.play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transition: var(--transition-smooth);
    font-size: 1.4rem;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 25%;
    justify-content: flex-end;
}

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

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: var(--transition-smooth);
}

/* EQUALIZER ANIMATION */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    width: 30px;
}

.equalizer-bar {
    width: 3px;
    height: 3px;
    background-color: var(--accent-cyan);
    border-radius: 20px;
}

.equalizer.active .equalizer-bar {
    animation: bounceEq 1s ease-in-out infinite alternate;
}

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

@keyframes bounceEq {
    from { height: 3px; }
    to { height: 18px; }
}

/* HERO SLIDER */
.hero-slider-section {
    position: relative;
    margin-top: 20px;
}

.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

.slide-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 6, 18, 0.95) 20%, rgba(10, 6, 18, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.slide-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-cyan);
    width: 40px;
}

/* ANNOUNCEMENTS BAR */
.announcements-bar {
    margin: 30px 0;
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
}

.announcements-label {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 24px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.announcements-ticker {
    padding: 0 20px;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.announcements-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.announcements-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding-right: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ticker-item a:hover {
    color: var(--accent-cyan);
}

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

/* MAIN LAYOUT SECTIONS */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 10px;
}

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

/* PROGRAMS SECTION */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.program-card:hover .program-img {
    transform: scale(1.05);
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.program-host {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 10px;
}

.program-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    flex-grow: 1;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-time {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start;
}

/* SCHEDULE WIDGET */
.schedule-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

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

.schedule-day-badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.schedule-item:hover {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.04);
}

.schedule-item.now-playing {
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.04);
}

.schedule-time {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.schedule-item.now-playing .schedule-time {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
}

.schedule-track {
    font-weight: 500;
    font-size: 0.9rem;
}

/* REQUEST & VIDEO SECTION */
.request-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER SECTION */
footer {
    background-color: #050309;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 120px; /* high bottom padding to clear the floating player bar */
    color: var(--text-secondary);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    color: var(--accent-cyan);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* INNER PAGES STYLING */
.page-header {
    background: linear-gradient(to bottom, rgba(127, 0, 255, 0.1) 0%, transparent 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent-cyan);
}

/* ABOUT PAGE */
.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* WEEKLY SCHEDULE CALENDAR */
.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.schedule-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.schedule-tab:hover, .schedule-tab.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    border-color: transparent;
}

.schedule-grid-weekly {
    display: none;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.schedule-grid-weekly.active {
    display: flex;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ADMIN PANEL STYLING */
.admin-body {
    background-color: #07040d;
}

.admin-header {
    background: #0f0a1d;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 10;
}

.admin-sidebar {
    background: #110b21;
    border-right: 1px solid var(--glass-border);
    padding: 30px 20px;
    position: relative;
    z-index: 11;
}

.admin-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.admin-sidebar-link:hover, .admin-sidebar-link.active {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-left: 3px solid var(--accent-cyan);
}

.admin-content {
    padding: 40px;
    overflow-y: auto;
    position: relative;
    z-index: 11;
}

/* ADMIN TABLES */
.admin-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-bottom: 2px solid var(--glass-border);
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-primary);
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success { background: rgba(0, 242, 254, 0.15); color: var(--accent-cyan); }
.badge-warning { background: rgba(255, 183, 3, 0.15); color: var(--accent-gold); }

.action-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin-right: 5px;
}

.action-edit { background: rgba(79, 172, 254, 0.2); color: var(--accent-blue); }
.action-delete { background: rgba(255, 77, 77, 0.2); color: #ff4d4d; }

.action-edit:hover { background: var(--accent-blue); color: #000; }
.action-delete:hover { background: #ff4d4d; color: #fff; }

/* ADMIN CARD METRICS */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
}

.metric-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 8px;
}

/* ALERT MESSAGES */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
}

.alert-error {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
}

/* MOBILE RESPONSIVE ADAPTATIONS */
@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    /* Mobil: Logo ortala */
    .header-container .logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-shrink: 0;
    }

    nav ul {
        display: none; /* toggled via JS */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0d081d;
        border-bottom: 1px solid var(--glass-border);
        padding: 20px;
        gap: 15px;
    }

    nav ul.open {
        display: flex;
    }

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

    .hero-slider {
        height: 350px;
    }

    .slide-item {
        padding: 30px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .request-section {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .player-bar {
        padding: 10px 20px;
        border-radius: 20px;
        bottom: 10px;
        width: 95%;
    }

    .player-info {
        width: 50%;
    }

    .player-volume {
        display: none; /* Hide volume on mobile */
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none; /* Simplified for mobile */
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* FULL-WIDTH DYNAMIC SOUNDWAVE EQUALIZER */
.wave-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.wave-bar {
    flex-grow: 1;
    margin: 0 1px;
    height: 4px;
    background: linear-gradient(to top, rgba(127, 0, 255, 0.4), rgba(0, 242, 254, 0.8));
    border-radius: 4px 4px 0 0;
    transition: height 0.1s ease;
}

/* ON-AIR RED PULSING BACKGROUND ANIMATION */
.now-playing-pulse {
    border-color: rgba(255, 77, 77, 0.6) !important;
    animation: pulse-red-bg 2s infinite alternate !important;
}

@keyframes pulse-red-bg {
    0% {
        background-color: rgba(255, 77, 77, 0.05);
        box-shadow: 0 0 5px rgba(255, 77, 77, 0.1);
    }
    100% {
        background-color: rgba(255, 77, 77, 0.25);
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.35);
    }
}
