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

:root {
  --bg: #07080d;
  --panel: #10121a;
  --panel-2: #151823;
  --text: #f5f7fb;
  --muted: #a6abba;
  --cyan: #00f5ff;
  --pink: #ff2bb5;
  --yellow: #ffe500;
  --line: rgba(255,255,255,.11);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,43,181,.10), transparent 28%),
    radial-gradient(circle at 15% 30%, rgba(0,245,255,.08), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 145px; display: block; }
.nav { display: flex; gap: 28px; color: #c7cad3; font-size: 14px; }
.nav a:hover { color: var(--cyan); }
.header-cta, .btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 700;
  font-size: 13px;
  transition: .25s ease;
}
.header-cta { border-color: var(--cyan); color: var(--cyan); }
.header-cta:hover { background: var(--cyan); color: #05070a; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0 90px;
}
.eyebrow { color: var(--cyan); font-size: 11px; letter-spacing: .19em; font-weight: 800; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 15px var(--pink); margin-right: 8px; }
h1 { font-size: clamp(54px, 7vw, 92px); line-height: .95; letter-spacing: -.065em; margin: 18px 0 25px; }
h1 span, h2 span { color: var(--pink); }
.hero-text { max-width: 580px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn-primary { background: var(--pink); border-color: var(--pink); color: white; box-shadow: 0 0 30px rgba(255,43,181,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,43,181,.4); }
.btn-secondary { background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.social-row { display: flex; gap: 20px; margin-top: 35px; color: #888d9c; font-size: 13px; }
.social-row a:hover { color: var(--yellow); }
.hero-art { position: relative; min-height: 470px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(55px); opacity: .45; }
.glow-one { width: 260px; height: 260px; background: var(--pink); top: 50px; left: 40px; }
.glow-two { width: 220px; height: 220px; background: var(--cyan); bottom: 20px; right: 30px; }
.hero-card {
  position: relative;
  width: min(440px, 100%);
  min-height: 400px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  backdrop-filter: blur(14px);
  border-radius: 30px;
  display: grid;
  place-items: center;
  padding: 45px;
  transform: rotate(3deg);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hero-card img { width: min(330px, 100%); transform: rotate(-3deg); }
.hero-card p { color: #c2c5cf; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.equalizer { height: 42px; display: flex; align-items: center; gap: 6px; transform: rotate(-3deg); }
.equalizer i { display: block; width: 5px; height: 22px; background: var(--cyan); border-radius: 10px; animation: eq 1s ease-in-out infinite alternate; }
.equalizer i:nth-child(2n) { background: var(--pink); animation-delay: .2s; }
.equalizer i:nth-child(3n) { background: var(--yellow); animation-delay: .4s; }
.equalizer i:nth-child(4n) { height: 34px; animation-delay: .1s; }
@keyframes eq { to { height: 7px; } }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; }
.section-heading h2, .about-card h2, .contact-section h2 { font-size: clamp(36px, 5vw, 62px); line-height: 1.05; letter-spacing: -.05em; margin: 13px 0 18px; }
.player-card {
  margin-top: 35px; padding: 28px 32px; border-radius: 22px; background: var(--panel);
  border: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1.3fr;
  align-items: center; gap: 30px;
}
.player-status { display: flex; gap: 14px; align-items: center; }
.pulse { width: 12px; height: 12px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,43,181,.10); }
.player-status strong, .player-status span, .player-info strong, .player-info span { display: block; }
.player-status span, .player-info span { color: var(--muted); font-size: 13px; }
.play-button { width: 70px; height: 70px; border: 0; border-radius: 50%; cursor: pointer; background: var(--cyan); color: #05070a; font-size: 23px; box-shadow: 0 0 30px rgba(0,245,255,.25); }
.play-button:hover { transform: scale(1.05); }
.small-note { margin-top: 15px; color: #777c8a; font-size: 12px; }
.about-section { display: grid; grid-template-columns: 1.4fr .6fr; gap: 30px; }
.about-card, .about-stat { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 48px; }
.about-card p { color: var(--muted); max-width: 700px; }
.text-link { display: inline-block; margin-top: 28px; color: var(--cyan); font-weight: 700; }
.about-stat { display: flex; flex-direction: column; justify-content: space-between; }
.about-stat span { color: var(--yellow); font-weight: 800; font-size: 12px; }
.about-stat strong { font-size: 34px; line-height: 1.05; }
.about-stat p { color: var(--muted); font-size: 13px; }
.section-intro { color: var(--muted); max-width: 620px; }
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 35px; }
.schedule-item { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.schedule-item span { color: var(--cyan); font-size: 11px; letter-spacing: .14em; font-weight: 800; }
.schedule-item h3 { margin: 15px 0 5px; font-size: 22px; }
.schedule-item p { color: var(--muted); font-size: 13px; }
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; border-top: 1px solid var(--line); }
.contact-section p:not(.eyebrow) { color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer { border-top: 1px solid var(--line); padding: 45px 20px; text-align: center; color: #777c8a; font-size: 12px; }
.site-footer img { width: 160px; margin-bottom: 15px; }

@media (max-width: 850px) {
  .site-header { flex-wrap: wrap; padding: 15px 0; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero, .about-section, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; }
  .hero-art { min-height: 380px; }
  .player-card { grid-template-columns: 1fr auto; }
  .player-info { grid-column: 1 / -1; }
  .schedule-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header, .hero, .section { width: min(100% - 28px, 1180px); }
  .header-cta { display: none; }
  h1 { font-size: 54px; }
  .hero-card { min-height: 330px; padding: 25px; }
  .about-card, .about-stat { padding: 30px; }
  .player-card { padding: 24px; }
  .play-button { width: 60px; height: 60px; }
}
