:root {
  --bg: #07070b;
  --bg-soft: #101019;
  --card: rgba(18, 18, 28, 0.96);
  --card-2: rgba(12, 12, 20, 0.98);
  --stroke: rgba(255,255,255,0.08);
  --text: #f6f7fb;
  --muted: #aeb3c2;
  --primary: #9d7cff;
  --primary-2: #d7cbff;
  --accent: #ff4fd8;
  --accent-2: #6cf0ff;
  --success: #25d366;
  --shadow: 0 24px 50px rgba(0,0,0,0.38);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157,124,255,0.15), transparent 22%),
    radial-gradient(circle at top right, rgba(255,79,216,0.12), transparent 18%),
    radial-gradient(circle at bottom left, rgba(108,240,255,0.08), transparent 22%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,11,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.topbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-2);
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: #d8dded;
  font-size: 15px;
  position: relative;
  transition: 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: 0.25s ease;
}

nav a:hover,
nav a.active {
  color: white;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.hero-music {
  min-height: 96vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: 46px 0 60px;
}

.hero-copy {
  animation: fadeUp 0.8s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--primary-2);
}

h1 {
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(32px, 6vw, 54px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  box-shadow: 0 14px 28px rgba(157,124,255,0.22);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.btn-outline:hover {
  border-color: rgba(157,124,255,0.4);
  color: var(--primary-2);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(7,7,11,0.18), rgba(7,7,11,0.55)),
    url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(7,7,11,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.hero-panel h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 24px;
}

.hero-panel p {
  color: #c9cfdd;
}

.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,7,11,0.94), rgba(7,7,11,0.40)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-content {
  max-width: 760px;
  padding: 90px 0;
  animation: fadeUp 0.8s ease both;
}

.section {
  padding: 86px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-text {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.grid-3,
.music-grid,
.album-grid,
.show-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2,
.about-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.card,
.stat-card,
.quote-card,
.info-box,
.form-box,
.cta-box,
.album-card,
.show-card,
feature-box {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.album-card,
.show-card {
  overflow: hidden;
}

.card img,
.album-card img {
  width: 100%;
  object-fit: cover;
}

.card img {
  height: 260px;
}

.album-card img {
  height: 300px;
}

.card-content,
.album-content,
.show-content {
  padding: 24px;
}

.card h3,
.album-card h3,
.show-card h3,
.stat-card h3,
.quote-card h3,
.info-box h2,
.form-box h2,
.cta-box h3 {
  margin-bottom: 12px;
}

.card p,
.album-card p,
.show-card p,
.stat-card p,
.quote-card p,
.info-box p {
  color: var(--muted);
}

.kicker {
  display: inline-block;
  color: var(--accent-2);
  font-size: 14px;
  margin-bottom: 10px;
}

.stat-card,
.quote-card,
.info-box,
.form-box,
.cta-box {
  padding: 28px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
}

.stat-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-2);
}

.about-image img,
.map img {
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.track-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.track-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #dde2ef;
}

.show-meta {
  display: grid;
  gap: 8px;
  color: #d9deea;
}

.show-meta span strong {
  color: var(--primary-2);
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(157,124,255,0.45);
}

footer {
  border-top: 1px solid var(--stroke);
  background: rgba(7,7,11,0.98);
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #8f95a5;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.38);
  z-index: 1001;
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06) translateY(-3px);
}

.fade-up {
  animation: fadeUp 0.85s ease both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-music,
  .grid-3,
  .music-grid,
  .album-grid,
  .show-grid,
  .stat-grid,
  .grid-2,
  .about-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  nav {
    gap: 14px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }
}