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

:root {
  --base: #0f1015;
  --surface: #141622;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #22d3ee;
  --accent-2: #a855f7;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html,
body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 16, 21, 0.7);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 100px;
  width: auto;
}

.nav__toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 10px;
  display: none;
  position: relative;
}

.nav__toggle::before,
.nav__toggle::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nav__toggle::before {
  top: 12px;
}

.nav__toggle::after {
  bottom: 12px;
}

.nav__menu {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  padding: 8px 12px;
  border-radius: 10px;
}

.nav__menu .btn {
  margin-left: 8px;
}

/* Buttons */
.btn {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c10;
  font-weight: 700;
  border: none;
}

.btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* Hero */
.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(60% 50% at 80% 20%, rgba(168, 85, 247, 0.15), transparent 60%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero__copy p {
  color: var(--muted);
  max-width: 54ch;
}

.glossy {
  font-family: "Russo One", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.glossy span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: -10%;
  filter: blur(40px);
  background: radial-gradient(50% 50% at 50% 50%, rgba(34, 211, 238, 0.2), transparent 60%);
}

.hero__logo-video {
  margin: 0;
  width: min(100%, 360px);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.hero__logo-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Ticker */
.ticker {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.15), rgba(168, 85, 247, 0.15));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: background 0.3s ease;
}

.ticker__track {
  display: flex;
  gap: 40px;
  animation: ticker 25s linear infinite;
  padding: 14px 0;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 200%;
  transition: filter 0.3s ease;
}

.ticker__track p {
  margin: 0;
  color: var(--text);
  display: inline-block;
  transition: transform 0.25s ease;
}

.ticker__track p:hover {
  transform: scale(1.1);
}

.ticker:hover {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.35), rgba(168, 85, 247, 0.35));
}

.ticker:hover .ticker__track {
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.4));
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--dark {
  background: var(--surface);
}

.section--accent {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), rgba(168, 85, 247, 0.06));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section__header h2 {
  font-family: "Russo One", sans-serif;
  margin: 0 0 6px;
}

.section__header p {
  margin: 0;
  color: var(--muted);
}

.socials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.socials-header__icons {
  display: inline-flex;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 17, 24, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.socials-header__icons a {
  display: inline-flex;
}

.socials-header__icons img {
  width: 34px;
  height: 34px;
}

/* Social showcase */
.social-showcase {
  position: relative;
  overflow: hidden;
}

.social-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 211, 238, 0.2), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(168, 85, 247, 0.25), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.social-showcase .container {
  position: relative;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.social-card {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 24, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-card--tiktok {
  background: linear-gradient(145deg, rgba(20, 24, 36, 0.95), rgba(10, 12, 20, 0.9));
}

.social-card--instagram {
  background: linear-gradient(145deg, rgba(27, 24, 44, 0.95), rgba(19, 20, 33, 0.92));
}

.social-card--youtube {
  background: linear-gradient(145deg, rgba(24, 22, 22, 0.95), rgba(16, 18, 24, 0.92));
}

.social-card__frame,
.social-card__video {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  height: 600px;
}

.social-card__frame iframe,
.social-card__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-card__meta h3 {
  margin: 0;
  font-size: 1.1rem;
}

.social-card__meta h3 a {
  color: inherit;
  text-decoration: none;
}

.social-card__meta h3 a:hover {
  text-decoration: underline;
}

.badge-link {
  display: inline-flex;
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(34, 211, 238, 0.35) 45%, rgba(168, 85, 247, 0.6) 55%, transparent 100%);
  transform: translateX(-100%);
  animation: badge-sheen 3s linear infinite;
}

.badge:hover {
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.4);
}

/* About */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.15), transparent 40%),
    radial-gradient(circle at 80% 0, rgba(34, 211, 238, 0.18), transparent 50%);
  pointer-events: none;
}

.about__inner {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  gap: 30px;
  align-items: center;
  position: relative;
}

.about__image {
  position: sticky;
  top: 120px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: aboutImageIn 0.9s ease forwards, aboutFloat 9s ease-in-out infinite 0.9s;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__content {
  opacity: 0;
  animation: aboutContentIn 0.9s ease forwards 0.2s;
  background: rgba(15, 17, 24, 0.7);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  position: relative;
}

.about__content::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  opacity: 0;
  animation: aboutGlow 3s ease-in-out infinite 1.5s;
}

.about__content h2 {
  font-family: "Russo One", sans-serif;
  margin-top: 0;
  font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__content h3 {
  margin: 18px 0 6px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.about__content p {
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about__content p:hover {
  color: var(--text);
  transform: translateX(4px);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: grid;
  gap: 8px;
}

.about__list li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  transform: translateY(-50%);
}

.eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.about__cta {
  margin-top: 14px;
}

/* Shows */
.shows-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.shows-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.shows-list .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
}

/* Forms */
.form {
  display: grid;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__field {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1118;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.error {
  color: #ff6b6b;
  font-size: 0.9rem;
  min-height: 1rem;
}

.muted {
  color: var(--muted);
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.02);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.social {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.social-images {
  width: 28px;
  height: 28px;
  display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker__track,
  .about__content,
  .about__image {
    animation: none;
  }

  .about__content,
  .about__image {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__inner {
    grid-template-columns: 1fr;
    position: static;
  }

  .about__image {
    position: relative;
    top: auto;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    right: 20px;
    top: 68px;
    background: #0f1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    flex-direction: column;
    padding: 10px;
    display: none;
  }

  .nav__menu.show {
    display: flex;
  }
}

@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__inner .social {
    width: 100%;
    justify-content: center;
    order: 1;
    margin-bottom: 12px;
  }

  .footer__inner p {
    order: 2;
  }

  .social-images {
    width: 56px;
    height: 56px;
  }
}

/* Keyframes */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes aboutContentIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutImageIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes aboutGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.35;
    transform: scale(1);
  }
}

@keyframes badge-sheen {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
