/* DJ Joel - retro neon style */
:root {
  --bg: #120e24;
  --bg2: #1c1636;
  --pink: #ff2d95;
  --lime: #7dff1a;
  --yellow: #ffe14d;
  --teal: #2de0c8;
  --text: #f4f0ff;
  --muted: #b9b0d6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(transparent 0 96%, rgba(255,45,149,.18) 96%),
    linear-gradient(90deg, transparent 0 96%, rgba(255,45,149,.18) 96%);
  background-size: 48px 48px;
  background-attachment: fixed;
}

a { color: var(--yellow); }

/* ---------- Header / nav ---------- */
.topbar {
  background: rgba(10, 8, 22, .92);
  border-bottom: 3px solid var(--pink);
  box-shadow: 0 0 18px rgba(255,45,149,.6);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
}
.logo {
  font-family: "Permanent Marker", cursive;
  font-size: 30px;
  text-decoration: none;
  line-height: 1;
}
.logo .dj { color: var(--pink); text-shadow: 0 0 10px var(--pink); }
.logo .joel { color: var(--lime); text-shadow: 0 0 10px var(--lime); }

nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 6px 12px;
  margin-left: 4px;
  border: 2px solid transparent;
  border-radius: 4px;
  display: inline-block;
}
nav a:hover { border-color: var(--lime); color: var(--lime); }
nav a.active { background: var(--pink); color: #fff; box-shadow: 0 0 12px var(--pink); }

/* ---------- Layout ---------- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
main { flex: 1; }

.banner {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 24px auto 0;
  border-radius: 18px;
  border: 3px solid var(--pink);
  box-shadow: 0 0 25px rgba(255,45,149,.55), 0 0 60px rgba(125,255,26,.15);
}

.page-title {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(36px, 7vw, 64px);
  text-align: center;
  margin: 40px 0 6px;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink), 0 0 20px rgba(255,225,77,.5);
}
.tagline {
  font-family: "Kalam", cursive;
  color: var(--yellow);
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}
.stripes {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--lime);
  margin: 0 8px;
}

section { padding: 30px 0; }

h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
h2 span {
  display: inline-block;
  line-height: 1.3;
  border: 3px solid var(--lime);
  padding: 4px 18px;
  color: var(--pink);
  background: rgba(10,8,22,.8);
  box-shadow: 0 0 12px rgba(125,255,26,.5);
}

.intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  color: var(--text);
}
.intro strong { color: var(--lime); }

/* ---------- Big badge ---------- */
.badge {
  text-align: center;
  margin: 30px auto;
}
.badge .num {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(60px, 14vw, 110px);
  line-height: 1;
  color: var(--lime);
  text-shadow: 4px 4px 0 var(--pink), 0 0 25px rgba(125,255,26,.6);
}
.badge .label {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.card {
  background: var(--bg2);
  border: 2px solid var(--pink);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255,45,149,.35);
}
.card:nth-child(2) { border-color: var(--lime); box-shadow: 0 0 14px rgba(125,255,26,.35); }
.card:nth-child(3) { border-color: var(--yellow); box-shadow: 0 0 14px rgba(255,225,77,.35); }
.card:nth-child(4) { border-color: var(--teal); box-shadow: 0 0 14px rgba(45,224,200,.35); }
.card::after {  /* retro triangle corner */
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--pink) transparent transparent;
}
.card:nth-child(2)::after { border-right-color: var(--lime); }
.card:nth-child(3)::after { border-right-color: var(--yellow); }
.card:nth-child(4)::after { border-right-color: var(--teal); }
.card .icon { font-size: 40px; margin-bottom: 8px; }
.card h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.card p { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 6px;
  box-shadow: 0 0 16px var(--pink);
  transition: transform .15s;
}
.btn:hover { transform: scale(1.05); }
.btn.alt { background: var(--lime); color: #120e24; box-shadow: 0 0 16px var(--lime); }
.center { text-align: center; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ---------- Contact ---------- */
.contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg2);
  border: 3px solid var(--lime);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(125,255,26,.4);
}
.contact-line { margin: 18px 0; }
.contact-line .lbl {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-size: 16px;
}
.contact-line a, .contact-line .val {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  word-break: break-word;
}
.contact-line a:hover { color: var(--lime); }

.list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
}
.list li {
  padding: 8px 0 8px 34px;
  position: relative;
  font-size: 20px;
}
.list li::before {
  content: "▶";
  color: var(--lime);
  position: absolute;
  left: 0;
}

/* ---------- Footer ---------- */
footer {
  margin-top: 40px;
  border-top: 3px solid var(--pink);
  background:
    linear-gradient(transparent 0 92%, rgba(255,45,149,.22) 92%) 0 0 / 40px 40px,
    linear-gradient(90deg, transparent 0 92%, rgba(255,45,149,.22) 92%) 0 0 / 40px 40px,
    #0a0816;
  padding: 26px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}
footer a { color: var(--yellow); text-decoration: none; }

/* ---------- Phones ---------- */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .topbar .wrap { justify-content: center; }
  nav { text-align: center; }
  nav a { padding: 5px 8px; margin: 2px; font-size: 15px; }
  .banner { margin-top: 14px; border-radius: 10px; }
  .tagline { font-size: 22px; }
  h2 { font-size: 22px; }
}
