/* ===== RADYO 2000 — Ultimate Premium Glassmorphism 2.0 Theme ===== */
:root {
    --bg-primary: #08080c;
    --bg-secondary: #0e0e14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-glow: rgba(229, 57, 53, 0.15);
    
    --text-primary: #f8f9fa;
    --text-secondary: rgba(248, 249, 250, 0.65);
    --text-muted: rgba(248, 249, 250, 0.45);
    
    --accent: #e53935;
    --accent-rgb: 229, 57, 53;
    --accent-glow: rgba(229, 57, 53, 0.45);
    --accent-light: #ff5252;
    --accent-dark: #b71c1c;
    
    --success: #00e676;
    --success-glow: rgba(0, 230, 118, 0.4);
    
    --gradient-accent: linear-gradient(135deg, #e53935, #ff5252);
    --gradient-dark: linear-gradient(135deg, #0e0e16, #050508);
    --gradient-glow: radial-gradient(circle, rgba(229,57,53,0.15) 0%, rgba(0,0,0,0) 70%);
    
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Basic Reset ===== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Premium Background Animation ===== */
.bg-animation { 
    position: fixed; 
    inset: 0; 
    z-index: 0; 
    pointer-events: none; 
    overflow: hidden; 
}

.bg-orb {
    position: absolute; 
    border-radius: 50%; 
    filter: blur(140px); 
    opacity: 0.12;
}

.bg-orb-1 {
    width: 700px; 
    height: 700px; 
    top: -200px; 
    left: -150px;
    background: var(--accent);
    animation: orbFloat 25s ease-in-out infinite;
}

.bg-orb-2 {
    width: 600px; 
    height: 600px; 
    bottom: -150px; 
    right: -100px;
    background: #512da8;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

.bg-orb-3 {
    width: 500px; 
    height: 500px; 
    top: 40%; 
    left: 45%;
    background: var(--accent-light);
    animation: orbFloat 22s ease-in-out infinite 5s;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.8;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -80px) scale(1.08); }
    50% { transform: translate(-50px, 60px) scale(0.92); }
    75% { transform: translate(40px, 30px) scale(1.04); }
}

/* ===== Header & Premium Navigation ===== */
header {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 100;
    background: rgba(8, 8, 12, 0.75); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header-inner {
    max-width: 1240px; 
    margin: 0 auto; 
    padding: 16px 24px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
}

.logo-group { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
}

.logo-icon {
    position: relative; 
    width: 46px; 
    height: 46px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.logo-dot {
    width: 14px; 
    height: 14px; 
    border-radius: 50%;
    background: var(--accent); 
    box-shadow: 0 0 16px var(--accent-glow);
}

.radio-wave {
    position: absolute; 
    border: 2px solid var(--accent-light);
    border-radius: 50%; 
    opacity: 0;
    animation: waveExpand 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.wave-1 { width: 26px; height: 26px; animation-delay: 0s; }
.wave-2 { width: 38px; height: 38px; animation-delay: 0.7s; }
.wave-3 { width: 50px; height: 50px; animation-delay: 1.4s; }

@keyframes waveExpand {
    0% { transform: scale(0.5); opacity: 0.9; }
    100% { transform: scale(1.3); opacity: 0; }
}

.logo-text h1 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 900; 
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.accent { 
    color: var(--accent); 
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.frequency-badge {
    display: inline-block; 
    background: var(--gradient-accent);
    color: #fff; 
    font-size: 0.68rem; 
    font-weight: 800;
    padding: 3px 10px; 
    border-radius: 20px; 
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

#main-nav { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
}

.nav-link {
    color: var(--text-secondary); 
    text-decoration: none; 
    font-size: 0.88rem;
    padding: 10px 16px; 
    border-radius: var(--radius-sm); 
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover, .nav-link.active { 
    color: var(--text-primary); 
    background: rgba(255, 255, 255, 0.05); 
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-highlight {
    background: rgba(229, 57, 53, 0.12);
    color: var(--accent-light);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.nav-highlight:hover {
    background: var(--gradient-accent) !important;
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--accent-glow) !important;
}

/* ===== Hero & Ultimate Player ===== */
.hero-section {
    min-height: auto; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    z-index: 1; 
    padding: 110px 24px 32px;
}

.hero-content { 
    text-align: center; 
    width: 100%;
    max-width: 820px; 
}

/* Ultra Premium Live Status Group */
.live-status-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.live-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(0, 230, 118, 0.08); 
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--success); 
    font-size: 0.74rem; 
    font-weight: 700;
    padding: 8px 18px; 
    border-radius: 30px; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.06);
    backdrop-filter: blur(10px);
}

.listener-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.pulse-green-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: livePulse 2s ease-in-out infinite;
}

.clock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%; 
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: livePulse 1.6s ease-in-out infinite;
}

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

/* Glass Card 2.0 Base */
.glass-card {
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border);
    border-radius: var(--radius); 
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.player-wrapper {
    position: relative;
    padding: 24px 32px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%), var(--glass-bg);
    overflow: hidden;
}

.player-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(229, 57, 53, 0.25), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.player-layout {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
}

/* Left Column: Vinyl Plak & needle */
.player-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.video-container {
    position: relative;
    width: 320px;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: #000;
    transition: var(--transition);
}

.video-glow {
    position: absolute;
    inset: -6px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.8s ease;
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.video-container.playing {
    border-color: rgba(229, 57, 53, 0.35);
    box-shadow: 0 20px 50px rgba(229, 57, 53, 0.15);
}

.video-container.playing .video-glow {
    opacity: 0.7;
    animation: videoGlow 2.5s ease-in-out infinite alternate;
}

@keyframes videoGlow {
    0% { transform: scale(0.98); opacity: 0.4; }
    100% { transform: scale(1.02); opacity: 0.8; }
}

.iframe-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Canvas Spectrum Visualizer */
.canvas-visualizer-container {
    width: 100%;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

#spectrum-canvas {
    width: 100%;
    height: 48px;
    display: block;
}

/* Right Column: Player Controls & Info */
.player-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.now-playing-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.now-playing-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.track-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(180deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.track-artist {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Equalizer Bars Dynamic */
.equalizer-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.equalizer-container.playing {
    opacity: 0.95;
}

.eq-bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
    height: 3px;
    transition: height 0.15s ease;
}

.controls-panel {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Premium Play Button */
.btn-play-premium {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gradient-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.4);
    z-index: 1;
}

.play-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-accent);
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
    transition: var(--transition);
}

.btn-play-premium:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.55);
}

.btn-play-premium:hover .play-glow {
    opacity: 0.75;
    transform: scale(1.1);
}

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

/* Volume Control Double Layer */
.volume-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 30px;
    flex: 1;
    min-width: 200px;
}

.btn-mute {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-mute:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

.volume-slider-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    height: 16px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--accent-light);
    transform: scale(1.25);
    box-shadow: 0 0 10px var(--accent-glow);
}

.volume-progress {
    position: absolute;
    left: 0;
    top: 6px;
    height: 4px;
    border-radius: 4px;
    background: var(--gradient-accent);
    pointer-events: none;
    width: 75%; /* JS matches */
    z-index: 1;
}

.volume-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 38px;
    text-align: right;
}

.stream-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.stream-status {
    color: var(--accent-light);
    font-weight: 600;
}

.divider {
    opacity: 0.3;
}

.section { 
    position: relative; 
    z-index: 1; 
    padding: 60px 24px; 
}

.section-inner { 
    max-width: 1140px; 
    margin: 0 auto; 
}

.bg-darker {
    background: rgba(5, 5, 8, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-subtitle {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Outfit', sans-serif; 
    font-size: 2.2rem; 
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(180deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Program Akışı (Weekly Program List) ===== */
.program-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.program-card {
    padding: 30px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.015));
    pointer-events: none;
}

.program-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 12px;
}

.active-program {
    border-color: rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.02);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.active-program .program-badge {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.next-badge {
    background: rgba(229, 57, 53, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.program-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.active-program .program-avatar {
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.1);
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.program-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.program-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.program-dj {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.active-program:hover {
    border-color: var(--success);
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.08);
}

/* ===== Son Çalanlar (Recently Played List) ===== */
.tracks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.track-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.track-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.track-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.track-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.track-details p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.track-time, .track-time-tag {
    font-size: 0.7rem;
    color: var(--accent-light);
    font-weight: 700;
    background: rgba(229, 57, 53, 0.06);
    border: 1px solid rgba(229, 57, 53, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.track-card:hover {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== YouTube Embed Wrapper ===== */
.yt-embed-wrapper {
    position: relative; 
    width: 100%; 
    padding-bottom: 56.25%;
    border-radius: var(--radius); 
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.yt-embed-wrapper iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    border: none;
}

/* ===== İstek Hattı (WhatsApp Forms) ===== */
.istek-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    padding: 50px;
    overflow: hidden;
}

.istek-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.05);
    z-index: -1;
    left: -20px;
    top: -20px;
    animation: livePulse 2.5s infinite;
}

.istek-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.istek-visual h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.25;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.istek-visual p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

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

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

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

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--success);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

.btn-whatsapp {
    background: #00e676;
    background: linear-gradient(135deg, #00e676, #00b0ff);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 230, 118, 0.4);
    opacity: 0.95;
}

.btn-whatsapp:active {
    transform: translateY(1px);
}

/* ===== Hakkımızda & Contact Grids ===== */
.about-grid, .contact-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 36px 28px;
}

.card-icon { 
    font-size: 2.2rem; 
    margin-bottom: 18px; 
}

.about-card h3 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.15rem; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #fff;
}

.about-card p { 
    font-size: 0.88rem; 
    color: var(--text-secondary); 
}

.about-card:hover { 
    transform: translateY(-6px); 
    border-color: rgba(229, 57, 53, 0.25); 
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.05); 
}

.contact-card {
    text-align: center;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-card a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== Footer ===== */
footer {
    position: relative; 
    z-index: 1; 
    text-align: center; 
    padding: 40px 24px;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 8, 0.8);
}

.footer-inner { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer p { 
    font-size: 0.85rem; 
    color: var(--text-secondary); 
}

.footer-sub { 
    font-size: 0.78rem; 
    color: var(--text-muted);
}

.footer-sub a { 
    color: var(--accent-light); 
    text-decoration: none; 
    font-weight: 600;
}

.footer-sub a:hover {
    text-decoration: underline;
}

/* ===== Responsive Adaptations ===== */
@media (max-width: 992px) {
    .player-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .player-left {
        flex: 1;
    }
    
    .player-right {
        width: 100%;
    }
    
    .stream-info {
        justify-content: center;
    }
    
    .istek-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .istek-visual {
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .pulse-ring {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    /* Mobile Hamburger Menu display triggers */
    .mobile-menu-toggle {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 12, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        z-index: 1000;
        transform: translate3d(0, -100%, 0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease;
    }

    #main-nav.active {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        pointer-events: auto;
    }

    #main-nav a {
        font-size: 1.25rem;
        font-weight: 700;
    }

    #main-nav a.nav-highlight {
        border-radius: 30px;
        padding: 12px 32px;
        width: auto;
        text-align: center;
        box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 24px;
        width: 100%;
    }
    
    .hero-section { 
        padding-top: 130px; 
    }
    
    .player-wrapper {
        padding: 20px 15px;
    }
    
    .player-layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .player-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }
    
    .video-container {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }
    
    .player-right {
        text-align: center;
        align-items: center;
        width: 100%;
        gap: 14px;
    }
    
    .now-playing-box {
        align-items: center;
    }
    
    .controls-panel {
        justify-content: center;
        gap: 16px;
        width: 100%;
    }
    
    .track-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Custom Ultra Premium Scrollbars ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #08080c;
}
::-webkit-scrollbar-thumb {
    background: rgba(229, 57, 53, 0.3);
    border-radius: 5px;
    border: 2px solid #08080c;
    transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(229, 57, 53, 0.65);
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
}

/* ===== Ambient Particle Floating Animation ===== */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-200px) translateX(60px) scale(1.2);
        opacity: 0;
    }
}

/* ===== Card Sheen/Glare Swipe Hover Effects ===== */
.program-card, .track-card, .about-card, .contact-card {
    position: relative;
    overflow: hidden;
}

.program-card::before, .track-card::before, .about-card::before, .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    pointer-events: none;
    z-index: 3;
}

.program-card:hover::before, .track-card:hover::before, .about-card:hover::before, .contact-card:hover::before {
    left: 150%;
}


/* ===== Sponsorluk & Reklam Alanları Stilleri ===== */

/* 3 Premium Channels Grid */
.sponsor-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.2rem 1.8rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 57, 53, 0.25);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.06);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
}

.channel-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.channel-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.channel-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-light);
    background: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ad Showcase Title */
.ad-showcase-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
}

.ad-showcase-title h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e676;
    animation: livePulse 1.8s infinite;
}

/* Ad Demo Container */
.ad-demo-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.ad-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--text-muted);
    background: #0d1020;
    padding: 2px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 1px;
}

/* Leaderboard 728x90 Banner */
.ad-leaderboard-wrapper {
    position: relative;
    padding: 0.8rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    overflow: visible;
}

.simotaksi-ad-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.08) 0%, rgba(13, 16, 32, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(251, 192, 45, 0.15);
    transition: all 0.3s ease;
}

.simotaksi-ad-banner:hover {
    border-color: rgba(251, 192, 45, 0.45);
    box-shadow: 0 0 25px rgba(251, 192, 45, 0.08);
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.12) 0%, rgba(13, 16, 32, 0.5) 100%);
}

.ad-logo-yellow {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fbc02d;
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.3);
    letter-spacing: -0.5px;
}

.ad-banner-text {
    flex-grow: 1;
    margin-left: 2rem;
    margin-right: 2rem;
}

.ad-banner-text h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.ad-banner-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.ad-action-btn {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0d1020;
    background: #fbc02d;
    padding: 8px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(251, 192, 45, 0.3);
    transition: all 0.3s ease;
}

.simotaksi-ad-banner:hover .ad-action-btn {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 192, 45, 0.5);
}

/* Secondary Ad Row (Rectangle + Benefits) */
.ad-secondary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.ad-rectangle-wrapper {
    position: relative;
    padding: 0.8rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    min-height: 250px;
    height: 100%;
}

.ad-rectangle-link {
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
    flex-grow: 1;
}

.eseyti-ad-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.08) 0%, rgba(13, 16, 32, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(224, 64, 251, 0.15);
    height: 100%;
    transition: all 0.3s ease;
}

.eseyti-ad-banner:hover {
    border-color: rgba(224, 64, 251, 0.45);
    box-shadow: 0 0 25px rgba(224, 64, 251, 0.08);
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.12) 0%, rgba(13, 16, 32, 0.5) 100%);
}

.ad-logo-purple {
    font-size: 1.3rem;
    font-weight: 900;
    color: #e040fb;
    text-shadow: 0 0 10px rgba(224, 64, 251, 0.3);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.eseyti-ad-banner h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.eseyti-ad-banner p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.ad-rect-btn {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #e040fb 0%, #aa00ff 100%);
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(224, 64, 251, 0.3);
    transition: all 0.3s ease;
}

.eseyti-ad-banner:hover .ad-rect-btn {
    transform: scale(1.03);
    box-shadow: 0 5px 18px rgba(224, 64, 251, 0.5);
}

/* Ad Benefits Card */
.ad-benefits-card {
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-benefits-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.6rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.benefits-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
}

.benefits-list li strong {
    color: #fff;
}

.benefits-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.78rem;
}

/* Ad Call To Action Box */
.ad-cta-box {
    position: relative;
    padding: 3rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.06) 0%, rgba(13, 16, 32, 0.4) 100%);
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ad-cta-box h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.ad-cta-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.btn-ad-cta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent);
    padding: 14px 32px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-ad-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.6);
    background: var(--accent-light);
}

/* Card Sheen integration for Ad Cards */
.channel-card, .ad-leaderboard-wrapper, .ad-rectangle-wrapper, .ad-benefits-card, .ad-cta-box {
    position: relative;
    overflow: hidden;
}

.channel-card::before, .ad-leaderboard-wrapper::before, .ad-rectangle-wrapper::before, .ad-benefits-card::before, .ad-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    pointer-events: none;
    z-index: 3;
}

.channel-card:hover::before, .ad-leaderboard-wrapper:hover::before, .ad-rectangle-wrapper:hover::before, .ad-benefits-card:hover::before, .ad-cta-box:hover::before {
    left: 150%;
}

/* Responsive Sponsorluk adjustments */
@media (max-width: 1024px) {
    .sponsor-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .ad-secondary-row {
        grid-template-columns: 1fr;
    }
    .simotaksi-ad-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .ad-banner-text {
        margin: 0;
    }
}

/* ===== Global Scrolling Marquee Ticker ===== */
.global-ticker-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.12) 0%, rgba(13, 16, 32, 0.95) 50%, rgba(229, 57, 53, 0.12) 100%);
    border-bottom: 1px solid rgba(229, 57, 53, 0.18);
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: marquee 35s linear infinite;
    padding-left: 2rem;
}

.ticker-item {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-right: 1.5rem;
}

.ticker-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--text-muted);
}

.ticker-item a:hover {
    color: var(--accent-light);
    border-bottom-style: solid;
}

.ticker-item.highlight {
    color: var(--accent-light);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(229, 57, 53, 0.4);
}

.ticker-item.highlight-purple {
    color: #e040fb;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(224, 64, 251, 0.4);
}

.ticker-item.highlight-blue {
    color: #2196f3;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
}

.ticker-item.highlight-yellow {
    color: #fbc02d;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.4);
}

.ticker-item.separator {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.1rem;
}

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

/* Pause marquee on hover so users can easily click links */
.global-ticker-bar:hover .ticker-content {
    animation-play-state: paused;
}

/* ===== SimoHosting Mock Ad Banner Styling ===== */
.simohosting-ad-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(13, 16, 32, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.15);
    height: 100%;
    transition: all 0.3s ease;
}

.simohosting-ad-banner:hover {
    border-color: rgba(33, 150, 243, 0.45);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.08);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.12) 0%, rgba(13, 16, 32, 0.5) 100%);
}

.ad-logo-blue {
    font-size: 1.3rem;
    font-weight: 900;
    color: #2196f3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.simohosting-ad-banner h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.simohosting-ad-banner p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.ad-blue-btn {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2196f3 0%, #0d47a1 100%);
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.simohosting-ad-banner:hover .ad-blue-btn {
    transform: scale(1.03);
    box-shadow: 0 5px 18px rgba(33, 150, 243, 0.5);
}

/* Card sheen styling for SimoHosting wrapper */
.simohosting-ad-banner {
    position: relative;
    overflow: hidden;
}

/* ===== Infinite Brands Logo Marquee Ticker ===== */
.sponsor-brands-ticker-wrapper {
    position: relative;
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.sponsor-brands-ticker-wrapper .ticker-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--accent-light);
    letter-spacing: 1.5px;
    white-space: nowrap;
    border-right: 2px solid rgba(229, 57, 53, 0.2);
    padding-right: 2rem;
}

.brands-marquee {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: brandsScroll 25s linear infinite;
}

.brand-item {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

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

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

/* Adjustments for top global ticker offset on header */
#main-header {
    top: 40px;
    transition: all 0.3s ease;
}

#main-header.scrolled {
    top: 0;
}

/* ===== Mobil Hamburger Menü & Hamburger Animasyonu ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-light);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-light);
}

/* ===== Fixed Bottom Mini-Player Stilleri ===== */
.fixed-bottom-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate3d(-50%, 150%, 0);
    width: calc(100% - 40px);
    max-width: 480px;
    height: 68px;
    padding: 10px 18px;
    border-radius: var(--radius);
    background: rgba(13, 16, 32, 0.85);
    border: 1px solid rgba(229, 57, 53, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 57, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 9999;
}

.fixed-bottom-player.visible {
    transform: translate3d(-50%, 0, 0);
}

.mini-player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mini-player-track {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-status-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e676;
    animation: livePulse 1.8s infinite;
}

.mini-track-details h5 {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.mini-track-details p {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

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

.mini-control-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mini-control-btn:hover {
    transform: scale(1.08);
    background: var(--accent);
    border-color: var(--accent-light);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

.mini-play-icon, .mini-pause-icon, .mini-volume-icon, .mini-mute-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.2s ease;
}

/* Glass Neon border for Mini-Player */
.fixed-bottom-player::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.35) 0%, rgba(224, 64, 251, 0.35) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

/* ===== Deep Mobile Responsive Tuning for 480px ===== */
@media (max-width: 480px) {
    .fixed-bottom-player {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 8px 12px;
        height: 62px;
    }
    
    .mini-track-details h5 {
        font-size: 0.8rem;
    }
    
    .mini-track-details p {
        font-size: 0.65rem;
    }
    
    .mini-control-btn {
        width: 32px;
        height: 32px;
    }
    
    .mini-play-icon, .mini-pause-icon, .mini-volume-icon, .mini-mute-icon {
        width: 16px;
        height: 16px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .frequency-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .hero-section {
        padding-top: 110px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .live-status-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .track-title {
        font-size: 1.3rem;
    }
    
    .sponsor-brands-ticker-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
        align-items: flex-start;
    }
    
    .sponsor-brands-ticker-wrapper .ticker-title {
        border-right: none;
        border-bottom: 2px solid rgba(229, 57, 53, 0.2);
        padding-right: 0;
        padding-bottom: 0.5rem;
        width: 100%;
    }
}



