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

/* ===== VARIABLES ===== */
:root {
  --bg: #06060f;
  --bg-secondary: #0c0c1e;
  --bg-card: rgba(255, 255, 255, 0.04);
  --cyan: #00d4ff;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --white: #ffffff;
  --gray: #6b7280;
  --text: #cbd5e1;
  --border: rgba(255, 255, 255, 0.08);
  --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.35);
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.35);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --radius: 12px;
  --t: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--purple)); border-radius: 3px; }

/* ===== BACKGROUND GRID ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
.heading-xl { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
.heading-md { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }

.text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-cyan { color: var(--cyan); }
.text-gray { color: var(--gray); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.nav-logo .accent { color: var(--cyan); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--t);
}
.nav-links a:hover { color: var(--white); background: var(--bg-card); }
.nav-links a.active { color: var(--cyan); background: rgba(0, 212, 255, 0.08); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 50%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(0, 212, 255, 0.05);
  top: 10%; left: -5%;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: rgba(139, 92, 246, 0.05);
  bottom: 5%; right: -10%;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  background: rgba(0, 212, 255, 0.05);
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--cyan); }
  50% { opacity: 0.3; box-shadow: none; }
}
.hero-title { margin-bottom: 24px; color: var(--white); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--t);
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-card);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--t);
  backdrop-filter: blur(12px);
}
.card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.card h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 212, 255, 0.15);
}
.section-header h2 { color: var(--white); margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 70px;
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--gray); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-logo .accent { color: var(--cyan); }
.footer-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--gray); font-size: 0.88rem; transition: var(--t); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: var(--t);
  font-size: 0.9rem;
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 12px rgba(0,212,255,0.2); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--t);
}
.faq-question:hover { color: var(--cyan); }
.faq-question.open { color: var(--cyan); }
.faq-icon {
  font-size: 1.1rem;
  transition: transform var(--t);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--gray);
}
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--cyan); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }

/* ===== SERVICES PAGE ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(0,212,255,0.15); transform: translateY(-4px); box-shadow: var(--glow-cyan); }
.service-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(139,92,246,0.12));
  border: 1px solid rgba(0,212,255,0.2);
}
.service-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
}
.feature-item::before {
  content: '▶';
  color: var(--cyan);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-popular { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid rgba(0,212,255,0.25); }

/* ===== CALENDAR ===== */
.calendar-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.calendar-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.calendar-header h3 { font-family: var(--font-head); font-size: 0.95rem; color: var(--white); }
.cal-nav { display: flex; gap: 8px; }
.cal-btn {
  width: 34px; height: 34px;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}
.cal-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day-name {
  padding: 12px 4px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.cal-day {
  min-height: 76px;
  padding: 7px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
}
.cal-day:nth-child(7n) { border-right: none; }
.cal-day:hover { background: rgba(255,255,255,0.02); }
.cal-day.other-month .cal-date { color: rgba(255,255,255,0.15); }
.cal-date {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.cal-day.today .cal-date {
  background: var(--cyan);
  color: #000;
  font-weight: 700;
}
.cal-event {
  font-size: 0.62rem;
  padding: 2px 5px;
  border-radius: 3px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: var(--t);
}
.ev-club { background: rgba(0,212,255,0.15); border-left: 2px solid var(--cyan); color: var(--cyan); }
.ev-wedding { background: rgba(236,72,153,0.15); border-left: 2px solid var(--pink); color: var(--pink); }
.ev-corp { background: rgba(139,92,246,0.15); border-left: 2px solid var(--purple); color: #c4b5fd; }
.ev-private { background: rgba(251,191,36,0.15); border-left: 2px solid #fbbf24; color: #fbbf24; }

/* Sidebar events */
.events-sidebar h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-events { display: flex; flex-direction: column; gap: 12px; }
.sidebar-event {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--t);
}
.sidebar-event:hover { border-color: rgba(139,92,246,0.3); }
.sev-date {
  text-align: center;
  min-width: 46px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 7px;
  padding: 8px 6px;
}
.sev-day { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--purple); line-height: 1; }
.sev-month { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-top: 3px; }
.sev-info h4 { font-family: var(--font-head); font-size: 0.78rem; color: var(--white); margin-bottom: 3px; }
.sev-info p { color: var(--gray); font-size: 0.78rem; }
.event-type-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 5px;
}
.no-events { color: var(--gray); font-size: 0.85rem; text-align: center; padding: 24px; }

/* ===== PORTFOLIO / AUDIO PLAYER ===== */
.mix-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.mix-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
}
.mix-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-4px); }
.mix-card.playing { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.mix-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0c0c1e, #06060f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mix-cover-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity var(--t);
}
.mix-card:hover .mix-cover-gradient { opacity: 1; }
.mix-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--t);
  position: relative;
  z-index: 1;
}
.mix-card:hover .mix-play-btn,
.mix-card.playing .mix-play-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-color: transparent;
  color: #000;
  transform: scale(1.05);
}
.equalizer {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}
.mix-card.playing .equalizer { display: flex; }
.eq-bar {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: eq 0.7s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1) { height: 8px; animation-delay: 0.0s; }
.eq-bar:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 10px; animation-delay: 0.15s; }
.eq-bar:nth-child(4) { height: 16px; animation-delay: 0.05s; }
.eq-bar:nth-child(5) { height: 6px; animation-delay: 0.2s; }
@keyframes eq {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1); }
}
.mix-card.playing .eq-bar { animation-play-state: running; }
.mix-card:not(.playing) .eq-bar { animation-play-state: paused; }

.mix-info { padding: 18px 20px; }
.mix-title { font-family: var(--font-head); font-size: 0.85rem; color: var(--white); margin-bottom: 6px; }
.mix-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mix-date { font-size: 0.78rem; color: var(--gray); }
.mix-duration { font-size: 0.78rem; color: var(--gray); }
.mix-genre-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,212,255,0.08);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.15);
}

/* Sticky player */
.sticky-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(6, 6, 15, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 500;
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-player.visible { transform: translateY(0); }
.player-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 24px;
}
.player-track-info { display: flex; align-items: center; gap: 12px; }
.player-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.player-track-name { font-weight: 600; font-size: 0.88rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-track-duration { font-size: 0.73rem; color: var(--gray); margin-top: 2px; }
.player-controls { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.player-buttons { display: flex; align-items: center; gap: 14px; }
.player-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--t);
  background: none;
}
.player-btn:hover { color: var(--white); }
.player-btn-play {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000 !important;
  font-size: 0.95rem;
}
.player-btn-play:hover { transform: scale(1.05); box-shadow: var(--glow-cyan); }
.player-progress-row { display: flex; align-items: center; gap: 10px; width: 100%; }
.player-time { font-size: 0.73rem; color: var(--gray); white-space: nowrap; min-width: 34px; }
.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}
.player-volume { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.vol-icon { color: var(--gray); font-size: 0.9rem; cursor: pointer; transition: var(--t); }
.vol-icon:hover { color: var(--white); }
.vol-track {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.vol-fill {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  width: 80%;
  pointer-events: none;
}
.player-close {
  color: var(--gray);
  font-size: 1rem;
  transition: var(--t);
  margin-left: 8px;
}
.player-close:hover { color: var(--white); }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--cyan);
  background: rgba(0,212,255,0.06);
}
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 3px; }
.ci-value { font-size: 0.93rem; color: var(--white); }
.ci-value a:hover { color: var(--cyan); }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.form-input,
.form-textarea,
.form-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: var(--t);
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
  background: rgba(0,212,255,0.04);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: #0c0c1e; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--cyan);
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== STAT ROW ===== */
.stats-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-item { flex: 1; padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); transition: var(--t); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card); }
.stat-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--cyan); }
.stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .calendar-layout { grid-template-columns: 1fr; }
  .events-sidebar { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
  .events-sidebar h3 { grid-column: 1 / -1; }
  .sidebar-events { display: contents; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .player-inner { grid-template-columns: 1fr; gap: 12px; }
  .player-volume { display: none; }
  .player-track-info { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,6,15,0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 0.85rem; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .section { padding: 70px 0; }
  .cal-day { min-height: 56px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-item { min-width: 100%; }
}
