/* DJ SKINS — landing styles. system-only fonts, no external CDN. */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background: #07070a;
  color: #e8e8ee;
  font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* --- accent palette --- */
:root {
  --bg:        #07070a;
  --bg-2:      #0f0f15;
  --line:      rgba(255,255,255,0.08);
  --text:      #e8e8ee;
  --text-dim:  #9a9aa8;
  --neon-1:    #ff2a87;   /* magenta */
  --neon-2:    #00e5ff;   /* cyan */
  --neon-3:    #b6ff39;   /* lime */
}

/* ===== top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(7,7,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--neon-1); }
.brand .logo { width: 26px; height: 26px; }
.brand-text {
  font-weight: 800; letter-spacing: 0.18em; font-size: 14px;
  color: var(--text);
}
.nav { display: flex; gap: 26px; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim); }
.nav a:hover { color: var(--text); }

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}
.hero-glow {
  position: absolute; inset: -50% -10%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,42,135,0.30), transparent 38%),
    radial-gradient(circle at 75% 70%, rgba(0,229,255,0.26), transparent 42%),
    radial-gradient(circle at 60% 25%, rgba(182,255,57,0.10), transparent 35%);
  filter: blur(40px);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.10); }
}
.hero-inner { position: relative; text-align: center; max-width: 880px; }
.kicker {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: lowercase;
}
.title {
  margin-top: 28px;
  font-size: clamp(56px, 13vw, 168px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.title .t-1 {
  background: linear-gradient(180deg, var(--text) 0%, #8a8a96 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.title .t-2 {
  display: block;
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 28px rgba(255,42,135,0.35));
}
.tagline {
  margin-top: 26px;
  color: var(--text-dim);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* marquee */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 32px;
  animation: marquee 38s linear infinite;
  font-size: 12px; letter-spacing: 0.22em; color: var(--text-dim);
  text-transform: uppercase; white-space: nowrap;
  padding-left: 100%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 24px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2));
  color: #06060a;
  box-shadow: 0 6px 24px rgba(255,42,135,0.30);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(255,42,135,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }

/* ===== sections ===== */
.section { padding: 110px 20px; position: relative; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.container { max-width: 1080px; margin: 0 auto; }
.h {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; letter-spacing: -0.01em;
  text-transform: lowercase;
  margin-bottom: 36px;
}
.h::after {
  content: ""; display: block;
  width: 56px; height: 3px; margin-top: 14px;
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2));
}
.sub { color: var(--text-dim); font-size: 15px; margin-top: -22px; margin-bottom: 28px; }

/* ===== about ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.about-copy p { margin-bottom: 14px; color: #c8c8d4; }
.about-copy em { font-style: normal; color: var(--neon-2); }
.stats { list-style: none; display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-size: 28px; color: var(--text); }
.stats span { font-size: 12px; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.about-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,42,135,0.04), rgba(0,229,255,0.03));
  border: 1px solid var(--line);
  border-radius: 14px;
}
.card-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon-1); }
.card-title { margin-top: 6px; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.card-meta { color: var(--text-dim); font-size: 13px; margin-top: 4px; }
.tracklist { list-style: none; margin-top: 18px; }
.tracklist li {
  display: flex; gap: 12px;
  padding: 9px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.tracklist li:first-child { border-top: 0; }
.tracklist span {
  width: 26px; color: var(--neon-2);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 12px;
}

/* ===== tour ===== */
.tour { list-style: none; }
.tour li {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 90px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  transition: background 0.15s ease;
}
.tour li:hover { background: rgba(255,255,255,0.025); }
.t-date {
  color: var(--neon-2);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.t-city { font-weight: 600; text-transform: lowercase; }
.t-venue { color: var(--text-dim); }
.t-tag {
  justify-self: end;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--line);
}
.tag-club { color: var(--neon-2); border-color: rgba(0,229,255,0.4); }
.tag-festival { color: var(--neon-3); border-color: rgba(182,255,57,0.4); }
.tag-resident { color: var(--neon-1); border-color: rgba(255,42,135,0.4); }

/* ===== book form ===== */
.book-form {
  margin-top: 18px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-form label { display: block; }
.book-form label > span {
  display: block;
  font-size: 12px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 6px;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  border-color: var(--neon-2);
}
.book-form .full { display: block; margin-top: 18px; }
.book-form textarea { resize: vertical; }
.book-form .btn { margin-top: 22px; }
.form-note { color: var(--text-dim); font-size: 12px; margin-top: 14px; }
.form-ok {
  margin-top: 18px; padding: 14px 18px;
  border-radius: 10px;
  background: rgba(182,255,57,0.08);
  border: 1px solid rgba(182,255,57,0.35);
  color: var(--neon-3);
  font-size: 13px;
}

/* ===== footer ===== */
.footer { padding: 28px 20px 36px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--text); }

/* ===== responsive ===== */
@media (max-width: 800px) {
  .topbar { padding: 12px 18px; }
  .nav { gap: 16px; font-size: 12px; }
  .section { padding: 70px 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .tour li {
    grid-template-columns: 80px 1fr;
    grid-template-areas: "date city" "date venue" "tag tag";
    row-gap: 4px;
  }
  .t-date { grid-area: date; }
  .t-city { grid-area: city; }
  .t-venue { grid-area: venue; font-size: 13px; }
  .t-tag { grid-area: tag; justify-self: start; margin-top: 4px; }
  .grid-2 { grid-template-columns: 1fr; }
  .book-form { padding: 22px; }
}
