/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #7c3aed;
  --accent: #06b6d4;
  --bg: #0f0f1a;
  --bg2: #16162a;
  --bg3: #1e1e35;
  --card: #1a1a2e;
  --text: #e2e2f0;
  --text2: #9898b8;
  --border: #2a2a45;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --grd: linear-gradient(135deg, var(--primary), var(--accent));
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; padding-bottom: 80px; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,15,26,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 40px; }
.nav-logo-text { font-size: 1.4rem; font-weight: 900; background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu a { padding: 7px 14px; border-radius: 8px; color: var(--text2); font-size: .9rem; font-weight: 500; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--text); background: var(--bg3); }
.nav-listen a { background: var(--grd) !important; color: #fff !important; font-weight: 600; padding: 8px 18px !important; border-radius: 20px !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ========== HERO ========== */
.hero { padding: 120px 20px 60px; min-height: 100vh; display: flex; align-items: center; background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(6,182,212,.1) 0%, transparent 60%); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3); border-radius: 20px; padding: 6px 16px; font-size: .8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero-badge .dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 16px; }
.hero h1 span { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.1rem; color: var(--text2); margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--grd); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.5); color:#fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--bg3); color: var(--text); }
.hero-visual { display: flex; justify-content: center; }
.hero-player-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; width: 100%; max-width: 360px; box-shadow: var(--shadow); }
.hpc-live { display: flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #ef4444; margin-bottom: 20px; }
.hpc-live .dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: blink 1s infinite; }
.hpc-art { width: 100%; aspect-ratio: 1; border-radius: 12px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 4rem; margin-bottom: 20px; overflow: hidden; }
.hpc-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.hpc-song { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hpc-artist { color: var(--text2); font-size: .9rem; margin-bottom: 20px; }
.hpc-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.hpc-play { width: 56px; height: 56px; border-radius: 50%; background: var(--grd); border: none; color: #fff; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(124,58,237,.5); transition: all .2s; }
.hpc-play:hover { transform: scale(1.08); }
.hpc-vol { flex: 1; }
.hpc-vol input { width: 100%; accent-color: var(--primary); cursor: pointer; }

/* ========== SECTIONS ========== */
.section { padding: 80px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.section-header p { color: var(--text2); font-size: 1.05rem; }
.section-label { display: inline-block; background: rgba(124,58,237,.15); color: var(--accent); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }

/* ========== SCHEDULE ========== */
.schedule-grid { display: grid; gap: 12px; }
.schedule-day { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.schedule-day-header { padding: 12px 20px; background: var(--bg3); font-weight: 700; font-size: .9rem; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.schedule-day-header.today { color: var(--accent); border-left: 3px solid var(--accent); }
.schedule-slots { display: none; padding: 8px 0; }
.schedule-slots.open { display: block; }
.schedule-slot { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: center; padding: 10px 20px; border-bottom: 1px solid var(--border); }
.schedule-slot:last-child { border-bottom: none; }
.slot-time { font-size: .85rem; color: var(--text2); font-weight: 600; }
.slot-info { }
.slot-name { font-weight: 600; font-size: .95rem; }
.slot-dj { font-size: .82rem; color: var(--text2); }
.slot-genre { font-size: .75rem; background: rgba(124,58,237,.15); color: var(--primary); padding: 2px 10px; border-radius: 10px; font-weight: 600; }

/* ========== DJS ========== */
.djs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.dj-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all .2s; }
.dj-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.dj-photo { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 3px solid var(--border); }
.dj-photo img { width: 100%; height: 100%; object-fit: cover; }
.dj-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.dj-genre { font-size: .8rem; color: var(--text2); }

/* ========== BLOG ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; display: flex; flex-direction: column; }
.article-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card-img { aspect-ratio: 16/9; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-date { font-size: .78rem; color: var(--text2); margin-bottom: 8px; }
.article-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.article-card-excerpt { font-size: .88rem; color: var(--text2); flex: 1; line-height: 1.6; margin-bottom: 16px; }
.article-card-link { font-size: .85rem; font-weight: 600; color: var(--accent); }

/* ========== PLAYER BAR ========== */
.player-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(22,22,42,0.97); backdrop-filter: blur(16px); border-top: 1px solid var(--border); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.player-info { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 1; }
.player-artwork { width: 44px; height: 44px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.player-artwork img { width: 100%; height: 100%; object-fit: cover; }
.player-meta { min-width: 0; }
.player-title { display: block; font-weight: 700; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.player-artist { display: block; font-size: .78rem; color: var(--text2); }
.player-controls { display: flex; align-items: center; gap: 16px; }
.player-btn { background: none; border: none; color: var(--text); cursor: pointer; font-size: 1rem; transition: color .2s; padding: 4px; }
.play-pause { width: 44px; height: 44px; border-radius: 50%; background: var(--grd) !important; color: #fff !important; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(124,58,237,.4); }
.play-pause:hover { transform: scale(1.05); }
.player-vol { display: flex; align-items: center; gap: 8px; }
.player-vol i { color: var(--text2); font-size: .85rem; cursor: pointer; }
.vol-slider { width: 90px; accent-color: var(--primary); cursor: pointer; }
.player-live-badge { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #ef4444; display: flex; align-items: center; gap: 5px; }
.player-live-badge i { font-size: .5rem; animation: blink 1s infinite; }

/* ========== PAGE CONTENT ========== */
.page-hero { padding: 120px 20px 50px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; line-height: 1.8; }
.page-content p { margin-bottom: 16px; color: var(--text2); }
.page-content h2,h3 { margin: 24px 0 12px; color: var(--text); }

/* ========== CONTACT ========== */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: .9rem; font-weight: 600; color: var(--text2); }
.form-control { width: 100%; padding: 12px 16px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: .95rem; font-family: inherit; transition: border-color .2s; outline: none; }
.form-control:focus { border-color: var(--primary); }
textarea.form-control { height: 130px; resize: vertical; }
.form-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); border-radius: 8px; padding: 14px 20px; color: #22c55e; margin-bottom: 20px; }

/* ========== FOOTER ========== */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 20px 0; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 1.5rem; font-weight: 900; background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; margin-bottom: 10px; }
.footer-brand p { color: var(--text2); font-size: .9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: .9rem; transition: all .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-links h4, .footer-contact h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text2); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: var(--text2); font-size: .9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px; text-align: center; }
.footer-bottom p { color: var(--text2); font-size: .82rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-container { grid-template-columns: 1fr; gap: 30px; }
  .schedule-slot { grid-template-columns: 100px 1fr; }
  .slot-genre { display: none; }
  .player-vol { display: none; }
  .player-title { max-width: 160px; }
}
