:root {
  --bg: #09090c;
  --bg-soft: #111218;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 138, 0, 0.08);
  --text: #f5f5f7;
  --muted: #c0c3cc;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff8a00;
  --accent-2: #ff5e00;
  --accent-soft: rgba(255, 138, 0, 0.12);
  --accent-glow: rgba(255, 138, 0, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 980px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 138, 0, 0.13), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(255, 94, 0, 0.1), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 138, 0, 0.06), transparent 30%),
    linear-gradient(180deg, #08090c 0%, #0b0c11 45%, #09090c 100%);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
.hero__inner,
.footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 72px 0 48px;
}

.hero__inner {
  text-align: center;
}

.eyebrow,
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.08);
  color: #ffb14a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255, 138, 0, 0.08);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__text {
  width: min(100%, 760px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.quick-links {
  display: grid;
  gap: 14px;
  width: min(100%, 760px);
  margin: 36px auto 0;
}

.quick-links a {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow);
}

.quick-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.45);
  background: rgba(255, 138, 0, 0.08);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 138, 0, 0.12);
}

.section {
  padding: 0;
}

.card-section,
.tickets-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.card-section {
  padding: 34px;
}

.section__intro h2,
.tickets-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section__intro p,
.tickets-box p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.video-card {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #111;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.link-card-group {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.45);
  background: rgba(255, 138, 0, 0.08);
  box-shadow: 0 0 26px rgba(255, 138, 0, 0.08);
}

.link-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.link-card strong {
  font-size: 1rem;
}

.tickets-section {
  padding-bottom: 56px;
}

.tickets-box {
  padding: 36px 32px;
  text-align: center;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 28px;
  min-width: 240px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.18),
    0 10px 30px rgba(255, 94, 0, 0.35),
    0 0 40px rgba(255, 138, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.ticket-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.24),
    0 14px 40px rgba(255, 94, 0, 0.45),
    0 0 55px rgba(255, 138, 0, 0.28);
}

.footer {
  padding: 8px 0 36px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .link-card-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.8rem);
  }

  .quick-links a,
  .link-card {
    padding: 16px;
  }

  .card-section,
  .tickets-box {
    padding: 24px;
  }

  .link-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-button {
    width: 100%;
    min-width: 0;
  }
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 138, 0, 0.12);
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.2);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.socials--hero {
  margin-top: 38px;
  gap: 16px;
}

.socials--hero a {
  width: 42px;
  height: 42px;
  opacity: 0.85;
}

.socials--hero a:hover {
  opacity: 1;
}

.summer-opening-section .section__intro h2,
.summer-info-card h3,
.summer-info-card h4 {
  color: #ff7a00;
}

.summer-info-card {
  background: linear-gradient(180deg, rgba(255,122,0,0.08) 0%, rgba(255,122,0,0.03) 100%);
  border: 1px solid rgba(255,122,0,0.18);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.summer-kicker {
  color: #ff7a00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.summer-info-card h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 1rem;
}

.summer-info-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.summer-highlight {
  font-weight: 700;
  color: #ff7a00;
  font-size: 1.05rem;
}

.summer-lineup {
  margin-top: 2rem;
}

.summer-lineup h4,
.aftershow-box h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.lineup-block + .lineup-block {
  margin-top: 2rem;
}

.lineup-genre {
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 1rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.artist-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,122,0,0.12);
  border-radius: 18px;
  padding: 1rem;
}

.artist-item strong {
  display: block;
  color: #ff7a00;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.artist-item a {
  color: #ffb066;
  text-decoration: none;
  font-size: 0.92rem;
  word-break: break-word;
}

.artist-item a:hover {
  color: #ffffff;
}

.aftershow-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255,122,0,0.16);
}

.summer-cta {
  margin-top: 1rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .summer-info-card {
    padding: 1.25rem;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }
}
