:root {
  color-scheme: dark;
  --ink: #07080d;
  --night: #121622;
  --panel: rgba(18, 22, 34, 0.82);
  --panel-soft: rgba(255, 240, 200, 0.08);
  --text: #fff8ea;
  --muted: #ddd2bd;
  --gold: #f5bf42;
  --gold-deep: #a76621;
  --red: #d83b35;
  --blue: #2f7ccf;
  --sky: #8fd7f1;
  --spotify: #1ed760;
  --cream: #fff0c8;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(216, 59, 53, 0.2), transparent 24rem),
    radial-gradient(circle at 90% 24%, rgba(47, 124, 207, 0.24), transparent 28rem),
    linear-gradient(180deg, #07080d 0%, #111a2a 38%, #08090e 100%);
  color: var(--text);
  font-family:
    "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(45deg, rgba(245, 191, 66, 0.12) 1px, transparent 1px);
  background-size: 54px 54px, 92px 92px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 3rem;
  background: rgba(7, 8, 13, 0.78);
  border-bottom: 1px solid rgba(245, 191, 66, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: max-content;
  color: var(--cream);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  background: #050506;
  box-shadow: 0 0 24px rgba(245, 191, 66, 0.28);
}

.brand-mark img {
  width: 112%;
  height: 112%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a,
footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
footer a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(245, 191, 66, 0.62);
  border-radius: 999px;
  background: rgba(245, 191, 66, 0.14);
  color: var(--cream);
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  align-items: end;
  gap: 2.5rem;
  min-height: 92svh;
  overflow: hidden;
  padding: 8rem 5rem 4.5rem;
  border-bottom: 1px solid rgba(245, 191, 66, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5rem;
  right: -5rem;
  bottom: -2.7rem;
  height: 5.4rem;
  background: var(--ink);
  transform: rotate(-2deg);
  transform-origin: left center;
  z-index: 2;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/chucklemeras-banner.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.94) 0%, rgba(7, 8, 13, 0.76) 35%, rgba(7, 8, 13, 0.2) 76%),
    linear-gradient(180deg, rgba(7, 8, 13, 0.04), rgba(7, 8, 13, 0.9));
}

.hero-content,
.hero-crest {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 740px;
  padding-bottom: 2rem;
}

.hero-crest {
  justify-self: center;
  width: 21rem;
  border-radius: 50%;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.58));
  transform: rotate(2deg);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.05rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.8rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    0 4px 0 rgba(8, 9, 13, 0.74),
    0 0 34px rgba(245, 191, 66, 0.34);
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 650px;
  color: #f8ead0;
  font-size: 1.28rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  gap: 0.65rem;
  padding: 0.9rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #100b08;
  box-shadow: 0 18px 48px rgba(216, 59, 53, 0.32);
}

.button-primary:hover {
  box-shadow: 0 22px 60px rgba(245, 191, 66, 0.34);
}

.button-secondary {
  border-color: rgba(143, 215, 241, 0.7);
  background: rgba(47, 124, 207, 0.24);
  color: #e8f8ff;
}

.button-spotify {
  border-color: rgba(30, 215, 96, 0.6);
  background: rgba(30, 215, 96, 0.16);
  color: #eafff1;
}

.button-social {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.button-secondary:hover,
.button-spotify:hover,
.button-social:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.28);
  font-size: 0.78rem;
}

.button-icon svg,
.social-mark svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: currentColor;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.signal-row span {
  border: 1px solid rgba(245, 191, 66, 0.28);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.36);
  color: #f3e6cc;
  font-size: 0.86rem;
  font-weight: 850;
}

.live-band,
.videos,
.socials,
.vibe,
.final-cta {
  position: relative;
  padding: 6.2rem 5rem;
}

.live-band {
  background:
    radial-gradient(circle at 94% 6%, rgba(245, 191, 66, 0.13), transparent 24rem),
    var(--ink);
}

.videos {
  background:
    linear-gradient(178deg, transparent 0 8%, rgba(47, 124, 207, 0.1) 8% 92%, transparent 92%),
    #0d1018;
}

.socials {
  background:
    radial-gradient(circle at 16% 10%, rgba(245, 191, 66, 0.13), transparent 22rem),
    radial-gradient(circle at 86% 72%, rgba(216, 59, 53, 0.16), transparent 24rem),
    #090b12;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 2.5rem;
}

.section-heading > p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-heading.compact {
  display: block;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact .kicker {
  justify-content: center;
}

.stream-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.62fr);
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.stream-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(245, 191, 66, 0.4);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(47, 124, 207, 0.18), transparent),
    #0d111a;
  box-shadow: var(--shadow);
}

.stream-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.stream-panel,
.feature-tile,
.vibe-grid article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.stream-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transform: translateY(1.2rem);
}

.stream-panel p,
.feature-tile span,
.vibe-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  margin-bottom: 1.2rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(145, 70, 255, 0.55);
  border-radius: 999px;
  color: #d7c4ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pulse {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #9146ff;
  box-shadow: 0 0 18px #9146ff;
  animation: pulse 1.4s ease-in-out infinite;
}

.full {
  width: 100%;
  margin-top: 1rem;
}

.video-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.feature-tile {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 1.5rem;
}

.feature-tile:nth-child(2) {
  transform: translateY(2rem);
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    linear-gradient(180deg, transparent, rgba(8, 9, 13, 0.93)),
    radial-gradient(circle at top left, rgba(245, 191, 66, 0.27), transparent 46%),
    radial-gradient(circle at 82% 18%, rgba(47, 124, 207, 0.34), transparent 42%);
}

.youtube-tile::before {
  background:
    linear-gradient(180deg, rgba(216, 59, 53, 0.28), rgba(8, 9, 13, 0.95)),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 14px);
}

.spotify-tile::before {
  background:
    linear-gradient(180deg, rgba(30, 215, 96, 0.2), rgba(8, 9, 13, 0.95)),
    radial-gradient(circle at 65% 16%, rgba(30, 215, 96, 0.34), transparent 42%);
}

.mascot-tile::before {
  background:
    linear-gradient(180deg, rgba(47, 124, 207, 0.14), rgba(8, 9, 13, 0.95)),
    url("assets/chucklemeras-logo.png") center 28% / min(70%, 260px) no-repeat;
}

.feature-tile > * {
  position: relative;
  z-index: 1;
}

.feature-tile strong {
  display: block;
  max-width: 540px;
  margin-bottom: 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.06;
}

.tile-label {
  display: block;
  margin-bottom: auto;
  width: max-content;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.social-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.85fr);
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.social-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.social-links {
  display: grid;
  gap: 0.9rem;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -75% 35%;
  height: 9rem;
  border-radius: 999px;
  opacity: 0.45;
  transform: rotate(-8deg);
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.social-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(7, 8, 13, 0.72);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 950;
}

.social-mark svg {
  width: 1.45rem;
  height: 1.45rem;
}

.social-card span:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
}

.social-card strong {
  font-size: 1.12rem;
}

.social-card small {
  color: var(--muted);
  font-size: 0.94rem;
}

.x-card::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(143, 215, 241, 0.22));
}

.instagram-card::after {
  background: linear-gradient(90deg, rgba(216, 59, 53, 0.45), rgba(245, 191, 66, 0.35), rgba(47, 124, 207, 0.32));
}

.tiktok-card::after {
  background: linear-gradient(90deg, rgba(143, 215, 241, 0.42), rgba(216, 59, 53, 0.38));
}

.vibe {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 59, 53, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(143, 215, 241, 0.07), transparent);
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 2.4rem auto 0;
}

.vibe-grid article {
  padding: 1.45rem;
}

.vibe-grid article:nth-child(2) {
  margin-top: 2rem;
}

.mini-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 240, 200, 0.08);
  box-shadow: 0 0 0 1px rgba(245, 191, 66, 0.24), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(178deg, transparent 0 10%, rgba(216, 59, 53, 0.18) 10% 90%, transparent 90%),
    #0b0e15;
}

.final-cta h2 {
  max-width: 860px;
  margin: 0 auto;
}

.centered {
  justify-content: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88svh;
    padding: 7.5rem 1.5rem 4rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-crest {
    width: 19rem;
    opacity: 0.95;
  }

  .section-heading,
  .stream-grid,
  .video-layout,
  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .live-band,
  .videos,
  .socials,
  .vibe,
  .final-cta {
    padding: 5rem 1.5rem;
  }

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

  .stream-panel,
  .feature-tile:nth-child(2),
  .vibe-grid article:nth-child(2) {
    transform: none;
    margin-top: 0;
  }

  footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .header-cta {
    padding: 0.72rem 0.85rem;
  }

  .hero {
    padding: 7rem 1rem 3.5rem;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 8, 13, 0.3), rgba(7, 8, 13, 0.94) 52%, rgba(7, 8, 13, 0.98)),
      linear-gradient(90deg, rgba(7, 8, 13, 0.82), rgba(7, 8, 13, 0.32));
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-crest {
    display: none;
  }

  .button {
    width: 100%;
  }

  .stream-frame,
  .stream-frame iframe {
    min-height: 260px;
  }

  .feature-tile {
    min-height: 270px;
  }

  footer {
    flex-direction: column;
  }
}
