:root {
  --bg-0: #111015;
  --bg-1: #1a1821;
  --bg-2: #24202d;
  --panel: rgba(27, 23, 34, 0.75);
  --text: #eee9f7;
  --muted: #b7a9c8;
  --magenta: #ff3dd1;
  --magenta-2: #d616a8;
  --border: rgba(255, 61, 209, 0.45);
  --glow: 0 0 12px rgba(255, 61, 209, 0.45), 0 0 28px rgba(255, 61, 209, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 61, 209, 0.11), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(214, 22, 168, 0.16), transparent 35%),
    radial-gradient(circle at 50% 95%, rgba(255, 61, 209, 0.08), transparent 35%),
    linear-gradient(165deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  line-height: 1.5;
}

.page-wrap {
  min-height: 100vh;
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 2.2rem 0 2.8rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  animation: rise-in 620ms ease-out both;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.brand h1 {
  margin: 0;
  letter-spacing: 0.04em;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 700;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.4rem;
  border: 1px solid rgba(255, 61, 209, 0.24);
  border-radius: 999px;
  background: rgba(18, 16, 27, 0.68);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: rise-in 720ms ease-out both;
}

.tab {
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.tab:hover,
.tab:focus-visible {
  border-color: var(--border);
  box-shadow: var(--glow);
  outline: none;
  transform: translateY(-1px);
}

.tab.active {
  background: linear-gradient(180deg, rgba(255, 61, 209, 0.16), rgba(255, 61, 209, 0.06));
  border-color: var(--border);
  box-shadow: var(--glow);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 61, 209, 0.2);
  border-radius: 22px;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  animation: rise-in 850ms ease-out both;
}

.hero-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 4.1vw, 3rem);
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.feature-bullets {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.feature-bullets li {
  margin: 0.3rem 0;
}

.feature-bullets strong {
  color: #f7d4ee;
}

.social-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.55rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 61, 209, 0.34);
  background: rgba(20, 13, 30, 0.72);
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border);
  box-shadow: var(--glow);
  outline: none;
}

.link-mark {
  margin-left: 0.35rem;
  font-size: 0.9em;
  line-height: 1;
}

.social-youtube {
  border-color: rgba(255, 86, 86, 0.45);
  background: linear-gradient(180deg, rgba(255, 86, 86, 0.34), rgba(120, 22, 22, 0.55));
}

.social-youtube:hover,
.social-youtube:focus-visible {
  border-color: rgba(255, 138, 138, 0.75);
  box-shadow: 0 0 12px rgba(255, 86, 86, 0.45);
}

.social-facebook {
  border-color: rgba(86, 132, 255, 0.45);
  background: linear-gradient(180deg, rgba(58, 90, 170, 0.42), rgba(19, 34, 78, 0.74));
}

.social-facebook:hover,
.social-facebook:focus-visible {
  border-color: rgba(129, 165, 255, 0.72);
  box-shadow: 0 0 12px rgba(86, 132, 255, 0.4);
}

.social-instagram {
  border-color: rgba(255, 101, 191, 0.48);
  background: linear-gradient(180deg, rgba(255, 117, 204, 0.4), rgba(136, 38, 111, 0.68));
}

.social-instagram:hover,
.social-instagram:focus-visible {
  border-color: rgba(255, 160, 220, 0.76);
  box-shadow: 0 0 12px rgba(255, 101, 191, 0.45);
}

.band-grid {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 0.9rem;
}

.band-item {
  flex: 1 1 220px;
  max-width: 240px;
  border: 1px solid rgba(255, 61, 209, 0.18);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: rgba(10, 6, 14, 0.38);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.band-item:hover {
  border-color: var(--border);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.band-item h3 {
  margin: 0;
  font-size: 1rem;
}

.band-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

form {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  max-width: 680px;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 61, 209, 0.3);
  border-radius: 12px;
  background: rgba(12, 7, 18, 0.75);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.8rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--magenta);
  box-shadow: var(--glow);
  outline: none;
}

button {
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 61, 209, 0.2), rgba(255, 61, 209, 0.08));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.56rem 1rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

button:hover,
button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--glow);
  outline: none;
}

footer {
  color: var(--muted);
  font-size: 0.87rem;
  text-align: center;
  padding-top: 0.5rem;
}

.policy-copy {
  max-width: 780px;
}

.policy-copy h3 {
  margin: 1.2rem 0 0.35rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.policy-copy p {
  margin: 0.5rem 0;
  color: var(--text);
}

.policy-copy ul {
  margin: 0.45rem 0 0.85rem 1.1rem;
  padding: 0;
}

.policy-copy li {
  margin: 0.22rem 0;
  color: var(--text);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .tabs {
    border-radius: 16px;
  }

  .tab {
    flex: 1 1 auto;
    text-align: center;
  }
}
