
/* ──── RESET & BASE ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #0d0d1a;
  --surface:  #14142b;
  --card:     #1a1a35;
  --accent:   #a855f7;
  --accent2:  #7c3aed;
  --gold:     #f59e0b;
  --text:     #e2e8f0;
  --muted:    #94a3b8;
  --radius:   16px;
  --glow:     0 0 30px rgba(168,85,247,.35);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

/* ──── SCROLLBAR ──── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ──── NAV ──── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(13,13,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168,85,247,.15);
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { font-size: .9rem; color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff !important; padding: .45rem 1.2rem;
  border-radius: 50px; font-weight: 600 !important;
}

/* ──── HERO ──── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 3rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(245,158,11,.12) 0%, transparent 60%),
    var(--bg);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-block; margin-bottom: 1.2rem;
  background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.35);
  padding: .35rem 1rem; border-radius: 50px;
  font-size: .82rem; color: var(--accent); font-weight: 600; letter-spacing: .5px;
}
h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem;
}
h1 span { background: linear-gradient(135deg, var(--accent), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; padding: .85rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  box-shadow: var(--glow); transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(168,85,247,.55); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(168,85,247,.4); padding: .85rem 2.2rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(168,85,247,.08); }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

/* ──── SECTION SHARED ──── */
section { padding: 5rem 1.5rem; }
.section-label {
  display: block; text-align: center;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
}
.section-title { text-align: center; font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; margin-bottom: .8rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 540px; margin: 0 auto 3rem; }

/* ──── SERVICES ──── */
#services { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(168,85,247,.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,.4);
  box-shadow: var(--glow);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .8rem; }
.service-list { list-style: none; }
.service-list li {
  font-size: .88rem; color: var(--muted); padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: flex-start; gap: .5rem;
}
.service-list li::before { content: "✦"; color: var(--accent); flex-shrink: 0; font-size: .65rem; margin-top: .35rem; }

/* ──── PLAYER SECTION ──── */
#player { background: var(--bg); }
.player-wrap { max-width: 900px; margin: 0 auto; }
.player-filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2rem;
}
.filter-btn {
  background: var(--card); border: 1px solid rgba(168,85,247,.18);
  color: var(--muted); padding: .4rem .9rem; border-radius: 50px;
  font-size: .82rem; cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(168,85,247,.2); border-color: var(--accent); color: var(--text);
}
.track-list { display: flex; flex-direction: column; gap: .8rem; }
.track-item {
  background: var(--card);
  border: 1px solid rgba(168,85,247,.1);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: border-color .2s;
}
.track-item:hover { border-color: rgba(168,85,247,.35); }
.track-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border: none; cursor: pointer; color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .2s, box-shadow .2s;
}
.track-play:hover { transform: scale(1.1); box-shadow: var(--glow); }
.track-info { flex: 1; }
.track-title { font-weight: 600; font-size: .95rem; }
.track-meta { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.track-badge {
  padding: .2rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 600;
  background: rgba(168,85,247,.15); color: var(--accent);
}
.track-duration { font-size: .8rem; color: var(--muted); }
/* mini audio progress */
.audio-bar {
  height: 3px; background: rgba(255,255,255,.08); border-radius: 3px;
  margin-top: .5rem; cursor: pointer; overflow: hidden;
}
.audio-progress { height: 100%; background: linear-gradient(90deg, var(--accent2), var(--accent)); width: 0%; transition: width .3s; }

/* ──── PHOTO GALLERY ──── */
#gallery { background: var(--surface); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; max-width: 1000px; margin: 0 auto;
}
.gallery-item {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid rgba(168,85,247,.1);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  transition: transform .25s, border-color .25s;
}
.gallery-item:hover { transform: scale(1.03); border-color: rgba(168,85,247,.4); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--muted); font-size: .75rem; text-align: center; padding: 1rem;
}
.gallery-placeholder span { font-size: 2rem; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,13,26,.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; padding: .8rem; text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { font-size: .8rem; color: #fff; font-weight: 600; }
.gallery-overlay small { color: var(--accent); font-size: .7rem; }

/* ──── AUTHOR ──── */
#about { background: var(--bg); }
.about-wrap {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius);
  background: var(--card); border: 2px solid rgba(168,85,247,.25);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { color: var(--muted); text-align: center; font-size: .85rem; padding: 2rem; }
.about-photo-placeholder span { font-size: 4rem; display: block; margin-bottom: .5rem; }
.about-name { font-size: 1.7rem; font-weight: 800; margin-bottom: .4rem; }
.about-role {
  display: inline-block; margin-bottom: 1.2rem;
  background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.25);
  padding: .3rem .9rem; border-radius: 50px; font-size: .83rem; color: var(--accent);
}
.about-text { color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  background: var(--card); border: 1px solid rgba(168,85,247,.18);
  padding: .3rem .8rem; border-radius: 50px; font-size: .78rem; color: var(--muted);
}

/* ──── ORDER FORM ──── */
#order { background: var(--surface); }
.form-wrap {
  max-width: 620px; margin: 0 auto;
  background: var(--card); border: 1px solid rgba(168,85,247,.18);
  border-radius: 24px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--surface); border: 1px solid rgba(168,85,247,.2);
  border-radius: 10px; color: var(--text); padding: .75rem 1rem;
  font-size: .95rem; font-family: inherit; transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--surface); }
.form-submit {
  width: 100%; padding: 1rem; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--glow); transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(168,85,247,.5); }

/* ──── CONTACTS ──── */
#contacts { background: var(--bg); padding-bottom: 3rem; }
.contacts-wrap { max-width: 700px; margin: 0 auto; display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.contact-card {
  background: var(--card); border: 1px solid rgba(168,85,247,.15);
  border-radius: var(--radius); padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1rem; min-width: 200px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: rgba(168,85,247,.4); box-shadow: var(--glow); }
.contact-icon { font-size: 1.6rem; }
.contact-label { font-size: .75rem; color: var(--muted); }
.contact-value { font-weight: 700; font-size: 1rem; }

/* ──── FOOTER ──── */
footer {
  text-align: center; padding: 2rem 1.5rem;
  border-top: 1px solid rgba(168,85,247,.1);
  color: var(--muted); font-size: .82rem;
}
footer strong { color: var(--accent); }

/* ──── MOBILE ──── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
