:root {
  --bg: #070811;
  --bg-soft: #0d1020;
  --panel: #0d1221;
  --panel-2: #10182c;
  --border: #202c43;
  --border-bright: #334667;
  --text: #f4f7ff;
  --text-soft: #b7c2d9;
  --muted: #76859f;
  --blue: #168cff;
  --blue-bright: #40b7ff;
  --purple: #7a35ff;
  --pink: #d742d8;
  --kick: #53fc18;
  --danger: #ff3e58;
  --shadow: 0 28px 70px rgba(0, 0, 0, .4);
  --max: 1460px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 80% 3%, rgba(22, 140, 255, .16), transparent 28%),
    radial-gradient(circle at 18% 10%, rgba(122, 53, 255, .13), transparent 29%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .96;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 12px max(24px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(39, 52, 78, .78);
  background: rgba(7, 8, 17, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(55, 167, 255, .55);
  background:
    linear-gradient(135deg, rgba(22, 140, 255, .32), rgba(122, 53, 255, .25)),
    #0b1120;
  color: white;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 0 27px rgba(22, 140, 255, .18);
}

.brand-copy {
  display: block;
}

.brand-copy strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color .15s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.header-live-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--kick);
  color: #061000;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 62, 88, .13);
  animation: pulse 1.6s ease-in-out infinite;
}

.header-live-button .live-dot {
  background: #0a2102;
  box-shadow: none;
}

@keyframes pulse {
  50% {
    opacity: .5;
    transform: scale(.84);
  }
}

.menu-button {
  display: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 30px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(430px, .92fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 36px 0 66px;
}

.hero-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-lights::before,
.hero-lights::after {
  content: "";
  position: absolute;
  filter: blur(50px);
}

.hero-lights::before {
  left: 42%;
  top: 14%;
  width: 320px;
  height: 320px;
  background: rgba(22, 140, 255, .15);
}

.hero-lights::after {
  left: 53%;
  bottom: 18%;
  width: 280px;
  height: 280px;
  background: rgba(122, 53, 255, .14);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 21px;
  font-size: clamp(82px, 9vw, 144px);
  font-weight: 900;
  letter-spacing: -.055em;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  background: linear-gradient(91deg, #158cff, #8a3cff 53%, #ec42db);
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 610px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 13px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 700;
}

.button.primary {
  background: var(--kick);
  color: #071300;
}

.button.secondary {
  border: 1px solid var(--border-bright);
  background: rgba(17, 23, 40, .6);
  color: var(--text);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 45px;
}

.hero-stats div {
  min-width: 145px;
  padding-right: 31px;
  margin-right: 31px;
  border-right: 1px solid var(--border);
}

.hero-stats div:last-child {
  border: 0;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.stream-card {
  width: min(100%, 570px);
  padding: 15px;
  border: 1px solid rgba(44, 61, 91, .88);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(20, 28, 48, .94), rgba(9, 12, 24, .96));
  box-shadow: var(--shadow);
}

.stream-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
}

.pill {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pill.live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.stream-preview {
  height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 30%, rgba(22, 140, 255, .32), transparent 28%),
    radial-gradient(circle at 60% 62%, rgba(122, 53, 255, .28), transparent 32%),
    linear-gradient(135deg, #101b31, #090c19);
}

.preview-logo {
  text-align: center;
}

.preview-logo span {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 31px;
  border: 1px solid rgba(64, 183, 255, .65);
  background: rgba(7, 12, 25, .58);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 58px;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(22, 140, 255, .35);
}

.preview-logo strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 38px;
  font-style: italic;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.stream-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  padding: 16px 5px 5px;
}

.stream-card-bottom strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.stream-card-bottom small {
  color: var(--muted);
}

.stream-card-bottom a {
  padding: 11px 17px;
  border-radius: 8px;
  background: var(--kick);
  color: #071300;
  font-weight: 800;
}

.floating-tag {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid rgba(50, 70, 105, .8);
  border-radius: 10px;
  background: rgba(10, 14, 26, .86);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.tag-one {
  top: 17%;
  right: -10px;
}

.tag-two {
  bottom: 18%;
  left: 2px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(13, 18, 33, .88);
  padding: 32px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 18px;
  margin-bottom: 76px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(36px, 3vw, 47px);
}

.about-panel p + p {
  margin-top: 15px;
}

.schedule-list {
  display: grid;
  gap: 11px;
}

.schedule-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}

.schedule-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.schedule-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.schedule-item small {
  color: var(--muted);
}

.schedule-item.featured {
  border-color: rgba(83, 252, 24, .3);
}

.milestones {
  margin-bottom: 76px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 34px;
}

.timeline-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--panel);
}

.timeline-date {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-bottom: 11px;
  color: var(--text);
  font-size: 34px;
}

.timeline-card.highlight {
  border-color: rgba(83, 252, 24, .42);
  background:
    linear-gradient(145deg, rgba(83, 252, 24, .07), rgba(13, 18, 33, .92));
}

.timeline-card.highlight .timeline-date {
  color: var(--kick);
}

.community {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}

.community-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(40px, 3.4vw, 54px);
}

.community-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.social-card {
  min-height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.social-card strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  letter-spacing: .02em;
}

.social-card span {
  color: var(--text-soft);
  font-size: 13px;
}

.social-card em {
  margin-top: 6px;
  color: var(--kick);
  font-style: normal;
  font-weight: bold;
}

.social-card.kick {
  border-color: rgba(83, 252, 24, .35);
  background: linear-gradient(150deg, rgba(83, 252, 24, .08), var(--bg-soft));
}

.social-card.kick strong {
  color: var(--kick);
}

.social-card.placeholder {
  opacity: .68;
}

.bot-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  margin-bottom: 63px;
  padding: 27px 31px;
  border: 1px solid rgba(22, 140, 255, .28);
  border-radius: 16px;
  background:
    linear-gradient(100deg, rgba(22, 140, 255, .09), rgba(122, 53, 255, .07)),
    var(--panel);
}

.bot-promo h2 {
  margin-bottom: 7px;
  font-size: 45px;
}

.coming-soon {
  padding: 13px 20px;
  border: 1px solid rgba(22, 140, 255, .48);
  border-radius: 999px;
  color: var(--blue-bright);
  font-weight: 700;
  white-space: nowrap;
}

.site-footer {
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px 24px 38px;
  border-top: 1px solid var(--border);
}

.site-footer p,
.site-footer a {
  font-size: 13px;
}

.site-footer a strong {
  color: var(--kick);
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 21px;
}

.footer-brand .brand-copy strong {
  font-size: 23px;
}

@media (max-width: 1160px) {
  .site-header {
    gap: 22px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .hero-visual {
    max-width: 690px;
  }

  .tag-one {
    right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    gap: 13px;
    padding: 11px 14px;
  }

  .menu-button {
    width: 45px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--border-bright);
    border-radius: 9px;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--text);
  }

  .site-nav {
    order: 5;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 7px;
    background: var(--panel);
  }

  .header-live-button {
    padding: 12px 13px;
    font-size: 12px;
  }

  main {
    padding: 25px 14px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 93px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons,
  .hero-stats {
    flex-direction: column;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stats div {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .stream-preview {
    height: 250px;
  }

  .floating-tag {
    display: none;
  }

  .content-grid,
  .timeline,
  .community,
  .community-links {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .milestones {
    margin-bottom: 42px;
  }

  .panel {
    padding: 22px 17px;
  }

  .community {
    gap: 27px;
  }

  .bot-promo,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Branded logo inside hero stream preview */
.hero-channel-logo {
  display: block;
  width: min(88%, 460px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(128, 39, 255, 0.35));
}

.stream-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

/* ===== NUTTABUTTAINAA PURPLE FLAME THEME START ===== */
:root {
  --brand-purple: #9d43ff;
  --brand-purple-bright: #d84cff;
  --brand-magenta: #ff35ce;
  --brand-deep: #160522;
  --brand-panel: rgba(30, 11, 53, 0.78);
  --brand-panel-strong: rgba(22, 7, 42, 0.94);
  --brand-border: rgba(192, 88, 255, 0.29);
  --brand-border-bright: rgba(235, 84, 255, 0.58);
  --brand-text: #f5ecff;
  --brand-muted: #bea9d9;
  --kick-green: #53fc18;
}

html {
  scroll-behavior: smooth;
  background: #09030f;
}

body {
  position: relative;
  isolation: isolate;
  color: var(--brand-text);
  background:
    radial-gradient(circle at 50% 4%, rgba(154, 56, 255, 0.25), transparent 35rem),
    radial-gradient(circle at 93% 20%, rgba(255, 28, 187, 0.15), transparent 29rem),
    radial-gradient(circle at 4% 55%, rgba(112, 24, 214, 0.16), transparent 28rem),
    linear-gradient(145deg, #07020e 0%, #160720 42%, #090310 100%);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: auto 0 0;
  height: min(72vh, 830px);
  pointer-events: none;
  background: url("/images/purple-flame-background.svg") center bottom / cover no-repeat;
  opacity: 0.34;
  filter: saturate(1.3);
}

::selection {
  color: #fff;
  background: rgba(199, 51, 255, 0.65);
}

.site-header {
  background: rgba(10, 3, 18, 0.74);
  border-bottom: 1px solid rgba(183, 75, 255, 0.18);
  box-shadow: 0 18px 45px rgba(3, 0, 8, 0.28);
  backdrop-filter: blur(18px);
}

.brand-mark {
  color: #fff;
  background:
    linear-gradient(145deg, var(--brand-magenta), var(--brand-purple) 52%, #5422c8);
  border: 1px solid rgba(247, 141, 255, 0.46);
  box-shadow:
    0 0 0 3px rgba(152, 49, 255, 0.1),
    0 0 28px rgba(203, 52, 255, 0.42);
}

.brand-copy strong {
  color: #fff;
}

.brand-copy small {
  color: var(--brand-muted);
}

.site-header nav a,
.site-nav a,
.main-navigation a {
  color: var(--brand-muted);
}

.site-header nav a:hover,
.site-nav a:hover,
.main-navigation a:hover {
  color: #fff;
}

.menu-button {
  border-color: var(--brand-border);
  color: var(--brand-text);
  background: rgba(126, 35, 221, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -14% auto;
  height: 70%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(165, 47, 255, 0.24), transparent 57%),
    url("/images/purple-flame-background.svg") center bottom / min(1080px, 100%) auto no-repeat;
  opacity: 0.54;
  filter: blur(1px);
}

.hero-lights {
  background:
    radial-gradient(circle at 20% 25%, rgba(189, 51, 255, 0.32), transparent 27rem),
    radial-gradient(circle at 82% 26%, rgba(248, 47, 211, 0.17), transparent 25rem),
    radial-gradient(circle at 64% 70%, rgba(111, 35, 235, 0.22), transparent 28rem);
}

.eyebrow {
  color: #eab4ff;
  letter-spacing: 0.14em;
}

.live-dot {
  background: var(--kick-green);
  box-shadow: 0 0 12px rgba(83, 252, 24, 0.72);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 12px 44px rgba(92, 20, 157, 0.42);
}

.gradient-text {
  color: transparent;
  background-image: linear-gradient(100deg, #e95aff 0%, #ad45ff 44%, #ff3dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description,
.panel p,
.community-copy p {
  color: var(--brand-muted);
}

.button.primary,
.site-header .button,
.header-button {
  color: #fff;
  background: linear-gradient(110deg, #7726e9, #ce35ff 55%, #ff37c9);
  border: 1px solid rgba(243, 122, 255, 0.48);
  box-shadow: 0 14px 35px rgba(155, 42, 239, 0.35);
}

.button.primary:hover,
.site-header .button:hover,
.header-button:hover {
  box-shadow: 0 18px 42px rgba(204, 45, 255, 0.5);
  transform: translateY(-2px);
}

.button.secondary {
  color: #eadfff;
  border: 1px solid var(--brand-border);
  background: rgba(98, 30, 167, 0.15);
}

.button.secondary:hover {
  border-color: var(--brand-border-bright);
  background: rgba(150, 39, 229, 0.22);
}

.hero-stats > div {
  border: 1px solid var(--brand-border);
  background: rgba(49, 13, 79, 0.4);
  box-shadow: inset 0 1px 0 rgba(229, 154, 255, 0.08);
}

.hero-stats strong {
  color: #f8ebff;
}

.hero-stats span {
  color: var(--brand-muted);
}

.stream-card {
  position: relative;
  border: 1px solid var(--brand-border-bright);
  background:
    linear-gradient(145deg, rgba(35, 9, 62, 0.95), rgba(15, 5, 28, 0.96));
  box-shadow:
    0 35px 90px rgba(37, 5, 66, 0.7),
    0 0 55px rgba(166, 43, 255, 0.22),
    inset 0 1px 0 rgba(255, 157, 246, 0.13);
}

.stream-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(236, 62, 255, 0.58), transparent 35%, rgba(122, 59, 255, 0.44));
  filter: blur(14px);
  opacity: 0.58;
}

.stream-card-top,
.stream-card-bottom {
  background: rgba(20, 6, 38, 0.7);
  border-color: rgba(182, 69, 250, 0.18);
}

.pill {
  color: #dcc9fa;
  border: 1px solid rgba(190, 97, 255, 0.22);
  background: rgba(97, 24, 163, 0.18);
}

.pill.live {
  color: #d8ffc9;
  border-color: rgba(83, 252, 24, 0.24);
  background: rgba(83, 252, 24, 0.08);
}

.stream-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(270px, 34vw, 410px);
  padding: clamp(1.35rem, 4vw, 2.7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(197, 44, 255, 0.18), transparent 56%),
    linear-gradient(160deg, rgba(40, 8, 70, 0.56), rgba(12, 4, 22, 0.35));
}

.stream-preview::after {
  content: "";
  position: absolute;
  inset: auto -4% -14%;
  height: 53%;
  background: url("/images/purple-flame-background.svg") center bottom / cover no-repeat;
  opacity: 0.52;
  pointer-events: none;
}

.hero-channel-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(88%, 470px);
  max-height: 360px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 42px rgba(190, 37, 255, 0.46))
    drop-shadow(0 0 22px rgba(230, 54, 255, 0.2));
}

.stream-card-bottom a {
  color: #fff;
  background: linear-gradient(110deg, #8c2eff, #d33bff);
  box-shadow: 0 8px 22px rgba(171, 47, 255, 0.27);
}

.panel {
  border: 1px solid rgba(185, 84, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(32, 9, 52, 0.72), rgba(13, 4, 25, 0.76));
  box-shadow:
    0 24px 70px rgba(5, 1, 12, 0.3),
    inset 0 1px 0 rgba(235, 149, 255, 0.06);
}

.section-heading h2,
.community-copy h2 {
  color: #f7ebff;
}

.schedule-card,
.timeline-card,
.community-card,
.social-card,
.feature-card {
  border: 1px solid rgba(181, 74, 249, 0.18);
  background: rgba(48, 13, 77, 0.33);
}

.schedule-card:hover,
.timeline-card:hover,
.community-card:hover,
.social-card:hover,
.feature-card:hover {
  border-color: rgba(223, 86, 255, 0.48);
  box-shadow: 0 16px 34px rgba(108, 23, 175, 0.2);
}

.timeline-date {
  color: #dd8cff;
}

.timeline-card h3 {
  color: #fff;
}

.community a,
.social-card a {
  color: #f0c4ff;
}

.site-footer {
  color: var(--brand-muted);
  border-top: 1px solid rgba(170, 62, 235, 0.2);
  background: rgba(8, 2, 15, 0.5);
}

.site-footer a {
  color: #dfafff;
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.25;
  }

  .hero::before {
    opacity: 0.36;
  }

  .stream-preview {
    min-height: 245px;
  }

  .hero-channel-logo {
    width: min(92%, 360px);
  }
}
/* ===== NUTTABUTTAINAA PURPLE FLAME THEME END ===== */

/* ===== PURPLE NAV BUTTONS START ===== */
#main-navigation {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem;
  border: 1px solid rgba(179, 74, 255, 0.18);
  border-radius: 999px;
  background: rgba(35, 8, 58, 0.3);
  box-shadow: inset 0 1px 0 rgba(234, 152, 255, 0.06);
}

#main-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.68rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #c7abd9;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 90ms ease;
}

#main-navigation a:hover {
  color: #fff;
  border-color: rgba(206, 94, 255, 0.3);
  background: rgba(149, 42, 231, 0.16);
  box-shadow: 0 0 24px rgba(177, 48, 255, 0.13);
}

#main-navigation a:active {
  transform: translateY(2px) scale(0.97);
}

#main-navigation a.active,
#main-navigation a[aria-current="page"] {
  color: #fff;
  border-color: rgba(245, 128, 255, 0.5);
  background: linear-gradient(110deg, #7525df, #bd38fa 56%, #e53ccc);
  box-shadow:
    0 8px 24px rgba(171, 41, 245, 0.36),
    inset 0 1px 0 rgba(255, 213, 255, 0.25);
}

#main-navigation a.active::after,
#main-navigation a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0.32rem;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 232, 255, 0.9);
  transform: translateX(-50%);
}

#main-navigation a:focus-visible {
  outline: 2px solid #e774ff;
  outline-offset: 3px;
}

@media (max-width: 860px) {
  #main-navigation {
    border-radius: 1rem;
    padding: 0.5rem;
  }

  #main-navigation a {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ===== PURPLE NAV BUTTONS END ===== */

/* ===== EDITABLE SOCIAL LINKS START ===== */
.social-card[hidden] {
  display: none;
}

.social-card.club {
  border-color: rgba(201, 80, 255, 0.34);
  background:
    radial-gradient(circle at 90% 18%, rgba(237, 57, 216, 0.16), transparent 38%),
    rgba(48, 13, 77, 0.33);
}

.social-card.club:hover {
  border-color: rgba(232, 91, 255, 0.6);
  box-shadow: 0 18px 38px rgba(161, 36, 224, 0.25);
}
/* ===== EDITABLE SOCIAL LINKS END ===== */

/* ===== SOCIAL USERNAME CARDS START ===== */
.social-card[hidden] {
  display: none;
}

.social-card.club {
  border-color: rgba(201, 80, 255, 0.34);
  background:
    radial-gradient(circle at 90% 18%, rgba(237, 57, 216, 0.16), transparent 38%),
    rgba(48, 13, 77, 0.33);
}

.social-card.club:hover {
  border-color: rgba(232, 91, 255, 0.6);
  box-shadow: 0 18px 38px rgba(161, 36, 224, 0.25);
}
/* ===== SOCIAL USERNAME CARDS END ===== */

/* ===== DISCORD SOCIAL CARD START ===== */
.social-card.discord {
  border-color: rgba(125, 139, 255, 0.34);
  background:
    radial-gradient(circle at 90% 18%, rgba(109, 122, 255, 0.22), transparent 38%),
    rgba(48, 13, 77, 0.33);
}

.social-card.discord:hover {
  border-color: rgba(152, 163, 255, 0.65);
  box-shadow: 0 18px 38px rgba(92, 82, 225, 0.24);
}
/* ===== DISCORD SOCIAL CARD END ===== */

/* ===== DYNAMIC STREAM SCHEDULE START ===== */
.schedule-item {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.schedule-item:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 86, 255, 0.48);
  box-shadow: 0 16px 34px rgba(108, 23, 175, 0.2);
}

.schedule-item.featured {
  border-color: rgba(214, 82, 255, 0.42);
  background:
    radial-gradient(circle at 95% 12%, rgba(233, 52, 204, 0.16), transparent 38%),
    rgba(56, 14, 90, 0.44);
}
/* ===== DYNAMIC STREAM SCHEDULE END ===== */

/* ===== COMMUNITY MEMBER ACCESS START ===== */
.member-nav-divider {
  width: 1px;
  height: 1.8rem;
  margin: 0 0.3rem;
  background: rgba(205, 79, 255, 0.28);
}

.member-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

#main-navigation .member-nav-actions .member-link {
  min-height: 2.55rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(194, 85, 252, 0.22);
  border-radius: 999px;
  color: #f2dcff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  background: rgba(103, 28, 164, 0.16);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 90ms ease;
}

#main-navigation .member-nav-actions .member-link:hover {
  color: #fff;
  border-color: rgba(228, 96, 255, 0.52);
  background: rgba(161, 42, 235, 0.24);
  box-shadow: 0 0 24px rgba(177, 48, 255, 0.15);
}

#main-navigation .member-nav-actions .member-link:active {
  transform: translateY(2px) scale(0.97);
}

#main-navigation .member-nav-actions .member-link.register,
#main-navigation .member-nav-actions .member-link.profile {
  color: #fff;
  border-color: rgba(243, 124, 255, 0.48);
  background: linear-gradient(110deg, #7525df, #bd38fa 56%, #e53ccc);
  box-shadow: 0 8px 23px rgba(171, 41, 245, 0.24);
}

#main-navigation .member-nav-actions .member-link.admin {
  border-color: rgba(83, 252, 24, 0.34);
  color: #d9ffcc;
  background: rgba(83, 252, 24, 0.08);
}

#main-navigation .member-nav-actions button.member-link {
  appearance: none;
}

.member-hub {
  margin: clamp(3rem, 7vw, 5.5rem) auto;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 86% 42%, rgba(211, 58, 255, 0.18), transparent 30rem),
    linear-gradient(130deg, rgba(40, 10, 65, 0.88), rgba(14, 4, 26, 0.88));
  border-color: rgba(214, 82, 255, 0.34);
}

.member-hub-copy {
  max-width: 650px;
}

.member-hub h2 {
  margin: 0.5rem 0 0.8rem;
  color: #f8ebff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.member-hub-copy > p:last-child {
  margin: 0;
  color: #cbb1db;
  line-height: 1.7;
}

.member-hub-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-shrink: 0;
}

.member-hub-actions .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(240, 115, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.member-hub-actions .button.primary {
  background: linear-gradient(110deg, #7525df, #bd38fa 56%, #e53ccc);
  box-shadow: 0 10px 26px rgba(171, 41, 245, 0.3);
}

.member-hub-actions .button.secondary {
  background: rgba(113, 33, 170, 0.2);
}

.member-hub-actions .button:hover {
  box-shadow: 0 14px 30px rgba(178, 44, 244, 0.36);
}

@media (max-width: 1080px) {
  .member-nav-divider {
    display: none;
  }

  #main-navigation .member-nav-actions {
    width: 100%;
    margin-top: 0.45rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(205, 79, 255, 0.18);
  }

  #main-navigation .member-nav-actions .member-link {
    width: auto;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .member-nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #main-navigation .member-nav-actions .member-link {
    width: 100%;
    justify-content: center;
  }

  .member-hub {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-hub-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ===== COMMUNITY MEMBER ACCESS END ===== */

/* ===== NUTTABUDDY HOMEPAGE SPOTLIGHT START ===== */
.nuttabuddy-spotlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(180, 88, 250, 0.22);
  background:
    radial-gradient(circle at 15% 48%, rgba(161, 49, 230, 0.24), transparent 28rem),
    linear-gradient(125deg, rgba(31, 15, 48, 0.94), rgba(15, 9, 24, 0.96));
}

.nuttabuddy-spotlight::after {
  content: "";
  position: absolute;
  inset: auto -105px -130px auto;
  width: 315px;
  height: 315px;
  border-radius: 50%;
  background: rgba(157, 43, 230, 0.16);
  filter: blur(42px);
  pointer-events: none;
}

.nuttabuddy-spotlight-visual {
  position: relative;
  z-index: 1;
  min-height: 285px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(185, 95, 250, 0.17);
  background:
    radial-gradient(circle, rgba(176, 70, 255, 0.24), transparent 60%),
    rgba(14, 8, 22, 0.55);
}

.nuttabuddy-spotlight-logo {
  display: block;
  width: min(100%, 370px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(175, 68, 251, 0.4));
}

.nuttabuddy-spotlight-copy {
  position: relative;
  z-index: 1;
}

.nuttabuddy-spotlight-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(43px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nuttabuddy-spotlight-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 24px;
  color: #bbaecb;
  font-size: 16px;
  line-height: 1.7;
}

.nuttabuddy-spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 29px;
}

.nuttabuddy-spotlight-features span {
  padding: 9px 13px;
  border: 1px solid rgba(186, 95, 255, 0.25);
  border-radius: 999px;
  color: #d8c0ee;
  font-size: 12px;
  font-weight: 700;
  background: rgba(85, 34, 125, 0.44);
}

.nuttabuddy-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 22px;
}

.nuttabuddy-spotlight-note {
  display: block;
  max-width: 610px;
  color: #9487a8;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 940px) {
  .nuttabuddy-spotlight {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nuttabuddy-spotlight-visual {
    min-height: 245px;
  }

  .nuttabuddy-spotlight-logo {
    max-height: 215px;
  }
}

@media (max-width: 560px) {
  .nuttabuddy-spotlight {
    padding: 26px 20px;
  }

  .nuttabuddy-spotlight-visual {
    min-height: 190px;
  }

  .nuttabuddy-spotlight-logo {
    max-height: 165px;
  }

  .nuttabuddy-spotlight-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* ===== NUTTABUDDY HOMEPAGE SPOTLIGHT END ===== */



/* ===== BLENDED HERO STREAM ARTWORK 20260603 ===== */

/*
  Blend the NuttaButtaInAA artwork into the purple stream-card background
  instead of showing the original image as a hard rectangular block.
*/
.stream-card {
  overflow: visible;
  padding: clamp(0.85rem, 2vw, 1rem);
  background:
    radial-gradient(circle at 50% 49%, rgba(162, 44, 255, 0.22), transparent 52%),
    linear-gradient(155deg, rgba(46, 12, 79, 0.97), rgba(16, 5, 30, 0.98));
}

.stream-preview {
  position: relative;
  isolation: isolate;
  min-height: clamp(350px, 39vw, 500px);
  margin: 0.15rem 0;
  padding: clamp(0.45rem, 1.5vw, 0.8rem);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(201, 53, 255, 0.31), transparent 43%),
    radial-gradient(ellipse at 50% 82%, rgba(129, 35, 227, 0.3), transparent 55%),
    linear-gradient(180deg, rgba(34, 8, 59, 0.58), rgba(16, 5, 30, 0.72));
}

.stream-preview::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 3% 2% 1%;
  pointer-events: none;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(190, 55, 255, 0.33), transparent 51%),
    radial-gradient(ellipse at 50% 92%, rgba(146, 37, 247, 0.4), transparent 46%);
  filter: blur(20px);
  opacity: 0.95;
}

.stream-preview::after {
  z-index: 2;
  inset: auto -5% -8%;
  height: 53%;
  opacity: 0.42;
  mix-blend-mode: lighten;
  filter: blur(1px) saturate(1.18);
}

.hero-channel-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 535px);
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  /*
    The mask softly removes the visible square perimeter while leaving
    the characters and central lettering crisp.
  */
  -webkit-mask-image: radial-gradient(
    ellipse 68% 68% at 50% 51%,
    #000 0%,
    #000 65%,
    rgba(0, 0, 0, 0.96) 73%,
    rgba(0, 0, 0, 0.62) 84%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 68% 68% at 50% 51%,
    #000 0%,
    #000 65%,
    rgba(0, 0, 0, 0.96) 73%,
    rgba(0, 0, 0, 0.62) 84%,
    transparent 100%
  );
  filter:
    drop-shadow(0 24px 46px rgba(170, 32, 255, 0.5))
    drop-shadow(0 0 28px rgba(228, 56, 255, 0.28));
}

.stream-card-top {
  position: relative;
  z-index: 3;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.15rem 0.45rem;
  background: transparent;
}

.stream-card-bottom {
  position: relative;
  z-index: 3;
  margin-top: 0.1rem;
  padding: 1rem 0.4rem 0.35rem;
  background:
    linear-gradient(180deg, rgba(18, 5, 34, 0.06), rgba(18, 5, 34, 0.48));
  border-radius: 0 0 14px 14px;
}

@media (max-width: 820px) {
  .stream-preview {
    min-height: clamp(245px, 75vw, 380px);
    padding: 0.2rem;
  }

  .hero-channel-logo {
    width: min(100%, 410px);
    -webkit-mask-image: radial-gradient(
      ellipse 71% 70% at 50% 51%,
      #000 0%,
      #000 64%,
      rgba(0, 0, 0, 0.9) 76%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 71% 70% at 50% 51%,
      #000 0%,
      #000 64%,
      rgba(0, 0, 0, 0.9) 76%,
      transparent 100%
    );
  }
}

/* ===== BLENDED HERO STREAM ARTWORK END ===== */


/* ===== HERO LOGO BLACK BACKGROUND REMOVAL 20260603 ===== */

/*
  Stronger removal of the visible black square/background around the
  homepage logo artwork. This uses a tighter feathered mask and a
  lightening blend so the black disappears into the purple backdrop.
*/

.stream-preview {
  background:
    radial-gradient(circle at 50% 46%, rgba(214, 63, 255, 0.34), transparent 36%),
    radial-gradient(circle at 50% 86%, rgba(127, 34, 228, 0.38), transparent 48%),
    linear-gradient(180deg, rgba(40, 10, 68, 0.58), rgba(13, 4, 24, 0.8));
}

.stream-preview::before {
  inset: 2% 1% 1%;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(214, 71, 255, 0.42), transparent 46%),
    radial-gradient(ellipse at 50% 94%, rgba(148, 38, 248, 0.42), transparent 42%);
  filter: blur(16px);
}

.hero-channel-logo {
  width: min(100%, 545px);
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 1;
  -webkit-mask-image: radial-gradient(
    ellipse 66% 66% at 50% 52%,
    #000 0%,
    #000 63%,
    rgba(0, 0, 0, 0.98) 69%,
    rgba(0, 0, 0, 0.88) 74%,
    rgba(0, 0, 0, 0.55) 79%,
    rgba(0, 0, 0, 0.18) 84%,
    transparent 89%
  );
  mask-image: radial-gradient(
    ellipse 66% 66% at 50% 52%,
    #000 0%,
    #000 63%,
    rgba(0, 0, 0, 0.98) 69%,
    rgba(0, 0, 0, 0.88) 74%,
    rgba(0, 0, 0, 0.55) 79%,
    rgba(0, 0, 0, 0.18) 84%,
    transparent 89%
  );
  filter:
    drop-shadow(0 18px 38px rgba(178, 31, 255, 0.40))
    drop-shadow(0 0 18px rgba(235, 66, 255, 0.20));
}

@media (max-width: 820px) {
  .hero-channel-logo {
    width: min(100%, 415px);
    -webkit-mask-image: radial-gradient(
      ellipse 68% 67% at 50% 52%,
      #000 0%,
      #000 61%,
      rgba(0, 0, 0, 0.94) 70%,
      rgba(0, 0, 0, 0.58) 79%,
      transparent 89%
    );
    mask-image: radial-gradient(
      ellipse 68% 67% at 50% 52%,
      #000 0%,
      #000 61%,
      rgba(0, 0, 0, 0.94) 70%,
      rgba(0, 0, 0, 0.58) 79%,
      transparent 89%
    );
  }
}

/* ===== HERO LOGO BLACK BACKGROUND REMOVAL END ===== */


/* ===== FINAL FOUR LINE HERO TITLE FIX 20260603 ===== */

/*
  Four-line channel title:
  NUTTA
  BUTTA
  IN
  AA
*/
.hero h1.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.14rem, 0.55vw, 0.38rem);
  margin-bottom: 1.35rem;
  line-height: 0.93;
  letter-spacing: normal;
}

.hero h1.hero-title .hero-line {
  display: block;
  margin: 0;
  padding-right: 0.08em;
  letter-spacing: clamp(0.045em, 0.4vw, 0.075em) !important;
}

.hero h1.hero-title .hero-line-nutta,
.hero h1.hero-title .hero-line-in {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hero h1.hero-title .hero-line-butta,
.hero h1.hero-title .hero-line-aa {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg, #e95aff 0%, #ad45ff 44%, #ff3dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1.hero-title .hero-line-in {
  margin-top: clamp(0.08rem, 0.35vw, 0.22rem);
}

.hero h1.hero-title .hero-line-aa {
  margin-top: -0.01em;
}

@media (max-width: 820px) {
  .hero h1.hero-title {
    gap: 0.14rem;
    line-height: 0.96;
  }

  .hero h1.hero-title .hero-line {
    letter-spacing: 0.055em !important;
  }
}

/* ===== FINAL FOUR LINE HERO TITLE FIX END ===== */


/* ===== HOMEPAGE LIVE KICK PLAYER OVERLAY 20260603 ===== */

.stream-preview.is-live {
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(181, 48, 255, 0.22), transparent 62%),
    rgba(10, 3, 18, 0.92);
}

.stream-preview.is-live::before,
.stream-preview.is-live::after {
  opacity: 0;
  transition: opacity 220ms ease;
}

.stream-preview .hero-channel-logo {
  transition: opacity 240ms ease, visibility 240ms ease;
}

.stream-preview.is-live .hero-channel-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.kick-live-player {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #06020d;
  box-shadow:
    inset 0 0 0 1px rgba(229, 104, 255, 0.28),
    0 0 35px rgba(157, 46, 255, 0.24);
}

.kick-live-player[hidden] {
  display: none;
}

.kick-live-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: #06020d;
}

.hero-live-badge {
  position: absolute;
  z-index: 7;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(240, 28, 64, 0.94);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(237, 27, 72, 0.35);
}

.hero-live-badge[hidden] {
  display: none;
}

.hero-live-badge .live-dot {
  width: 0.48rem;
  height: 0.48rem;
  background: #fff;
  box-shadow: none;
}

@media (max-width: 820px) {
  .hero-live-badge {
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.42rem 0.62rem;
  }
}

/* ===== HOMEPAGE LIVE KICK PLAYER OVERLAY END ===== */


/* ===== CULT OF NUTTER PUBLIC COMMUNITY HUB 20260603 ===== */

.cult-community-panel {
  display: block;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.35rem, 3.6vw, 2.35rem);
  border-color: rgba(210, 80, 255, 0.34);
  background:
    radial-gradient(circle at 6% 10%, rgba(173, 41, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 94% 78%, rgba(230, 48, 211, 0.14), transparent 30rem),
    linear-gradient(135deg, rgba(38, 8, 63, 0.92), rgba(13, 4, 26, 0.93));
  box-shadow:
    0 28px 72px rgba(8, 1, 17, 0.36),
    inset 0 1px 0 rgba(244, 157, 255, 0.08);
}

.cult-community-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: clamp(1.2rem, 2.8vw, 1.8rem);
  border-bottom: 1px solid rgba(201, 73, 255, 0.18);
}

.cult-community-copy {
  max-width: 690px;
}

.cult-community-copy h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  background: linear-gradient(100deg, #fff 0%, #e95aff 38%, #ad45ff 68%, #ff3dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cult-community-copy p:not(.eyebrow) {
  color: var(--brand-muted);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
}

.cult-community-status {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  flex-shrink: 0;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(83, 252, 24, 0.28);
  border-radius: 999px;
  background: rgba(83, 252, 24, 0.07);
}

.cult-community-status strong {
  display: block;
  color: #e5ffdb;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cult-community-status small {
  display: block;
  margin-top: 0.12rem;
  color: #aac4a7;
  font-size: 0.72rem;
}

.cult-community-body {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(275px, 0.9fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
  align-items: start;
}

.cult-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 0.8rem;
}

.cult-social-grid .social-card {
  position: relative;
  justify-content: flex-start;
  min-height: 154px;
  gap: 0.45rem;
  padding: 1.05rem 1.1rem;
  overflow: hidden;
  border-color: rgba(187, 75, 255, 0.2);
  background:
    radial-gradient(circle at 93% 9%, rgba(195, 50, 255, 0.15), transparent 38%),
    rgba(43, 11, 68, 0.44);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cult-social-grid .social-card::after {
  content: "";
  position: absolute;
  right: -2.3rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(174, 41, 255, 0.14);
  filter: blur(12px);
  pointer-events: none;
}

.cult-social-grid .social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 86, 255, 0.5);
  box-shadow: 0 18px 36px rgba(116, 18, 182, 0.22);
}

.cult-social-grid .social-card.kick {
  border-color: rgba(83, 252, 24, 0.34);
  background:
    radial-gradient(circle at 92% 10%, rgba(83, 252, 24, 0.15), transparent 40%),
    rgba(34, 48, 30, 0.34);
}

.cult-social-grid .social-card.kick::after {
  background: rgba(83, 252, 24, 0.14);
}

.cult-social-grid .social-card.discord {
  border-color: rgba(126, 142, 255, 0.36);
  background:
    radial-gradient(circle at 93% 9%, rgba(108, 124, 255, 0.2), transparent 40%),
    rgba(39, 26, 82, 0.38);
}

.cult-social-grid .social-label {
  color: #b69cca;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cult-social-grid .social-card strong {
  margin-top: 0.28rem;
  color: #fff;
  font-size: clamp(2rem, 2.6vw, 2.55rem);
}

.cult-social-grid .social-card.kick strong {
  color: var(--kick-green);
}

.cult-social-grid .social-card > span:not(.social-label) {
  color: #dbc8eb;
  font-size: 0.82rem;
}

.cult-social-grid .social-card em {
  margin-top: auto;
  color: #e391ff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.cult-social-grid .social-card.kick em {
  color: var(--kick-green);
}

.cult-community-actions {
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid rgba(186, 72, 252, 0.2);
  border-radius: 1rem;
  background: rgba(19, 5, 34, 0.48);
}

.cult-actions-heading {
  padding: 0.3rem 0.28rem 1rem;
}

.cult-actions-heading .eyebrow {
  margin-bottom: 0.65rem;
}

.cult-actions-heading h3 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.cult-actions-heading p:not(.eyebrow) {
  color: var(--brand-muted);
  font-size: 0.86rem;
}

.cult-action-card {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin-top: 0.65rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(181, 74, 249, 0.18);
  border-radius: 0.78rem;
  background: rgba(51, 13, 83, 0.34);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.cult-action-card:hover {
  transform: translateX(3px);
  border-color: rgba(228, 91, 255, 0.46);
  background: rgba(87, 21, 134, 0.38);
}

.cult-action-card.featured {
  border-color: rgba(212, 82, 255, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 52, 206, 0.16), transparent 44%),
    rgba(73, 16, 113, 0.42);
}

.cult-action-card strong {
  color: #f8efff;
  font-size: 0.96rem;
}

.cult-action-card span {
  color: #b9a4ce;
  font-size: 0.8rem;
}

.cult-action-card em {
  margin-top: 0.25rem;
  color: #e492ff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 980px) {
  .cult-community-header,
  .cult-community-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .cult-community-status {
    align-self: flex-start;
  }

  .cult-community-actions {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cult-community-panel {
    padding: 1.05rem;
  }

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

  .cult-social-grid .social-card {
    min-height: 132px;
  }

  .cult-community-copy h2 {
    font-size: clamp(2.55rem, 15vw, 3.4rem);
  }
}

/* ===== CULT OF NUTTER PUBLIC COMMUNITY HUB END ===== */


/* ===== HOMEPAGE SCHEDULE EVENTS SHOWCASE 20260603 ===== */

.content-grid {
  grid-template-columns: minmax(310px, 0.74fr) minmax(500px, 1.26fr);
  align-items: stretch;
}

.schedule-showcase {
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  border-color: rgba(209, 82, 255, 0.31);
  background:
    radial-gradient(circle at 100% 0%, rgba(218, 55, 255, 0.18), transparent 33rem),
    radial-gradient(circle at 0% 100%, rgba(114, 35, 230, 0.14), transparent 25rem),
    linear-gradient(138deg, rgba(33, 8, 56, 0.9), rgba(12, 4, 24, 0.94));
}

.schedule-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: clamp(1.1rem, 2vw, 1.45rem);
}

.schedule-showcase-header .section-heading {
  margin-bottom: 0;
}

.schedule-showcase-header h2 {
  font-size: clamp(2.45rem, 3.15vw, 3.3rem);
}

.schedule-kick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  flex-shrink: 0;
  min-height: 2.7rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(83, 252, 24, 0.3);
  border-radius: 999px;
  background: rgba(83, 252, 24, 0.07);
  color: #dbffd0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.schedule-kick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 252, 24, 0.6);
  background: rgba(83, 252, 24, 0.13);
}

.schedule-kick-link .live-dot {
  width: 0.48rem;
  height: 0.48rem;
}

.schedule-showcase-grid {
  display: grid;
  grid-template-columns: minmax(215px, 0.9fr) minmax(250px, 1.04fr);
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.weekly-schedule-column,
.homepage-event-spotlight {
  min-width: 0;
}

.schedule-column-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.68rem;
}

.schedule-column-title span {
  color: #f2d9ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-column-title small {
  color: #927ba9;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modern-schedule-list {
  display: grid;
  gap: 0.62rem;
}

.modern-schedule-list .schedule-item {
  padding: 0.82rem 0.88rem;
  border: 1px solid rgba(187, 73, 255, 0.19);
  border-radius: 0.82rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 52, 255, 0.11), transparent 48%),
    rgba(45, 11, 71, 0.35);
}

.modern-schedule-list .schedule-item:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 86, 255, 0.48);
  box-shadow: 0 14px 30px rgba(102, 19, 164, 0.18);
}

.modern-schedule-list .schedule-item:first-child {
  border-color: rgba(211, 78, 255, 0.36);
  background:
    radial-gradient(circle at 97% 8%, rgba(231, 55, 208, 0.16), transparent 46%),
    rgba(66, 16, 101, 0.42);
}

.modern-schedule-list .schedule-item span {
  margin-bottom: 0.36rem;
  color: #dd8cff;
  font-size: 0.63rem;
}

.modern-schedule-list .schedule-item strong {
  margin-bottom: 0.32rem;
  color: #f7efff;
  font-size: 0.96rem;
}

.modern-schedule-list .schedule-item small {
  color: #b49fc9;
  font-size: 0.75rem;
  line-height: 1.4;
}

.homepage-event-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 212px;
  padding: clamp(0.9rem, 1.8vw, 1.1rem);
  overflow: hidden;
  border: 1px solid rgba(205, 81, 255, 0.3);
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(233, 54, 210, 0.22), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(128, 41, 229, 0.2), transparent 42%),
    rgba(43, 10, 68, 0.48);
}

.homepage-event-spotlight::after {
  content: "";
  position: absolute;
  inset: auto -2rem -4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(184, 45, 255, 0.14);
  filter: blur(18px);
  pointer-events: none;
}

.event-spotlight-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.43rem;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(214, 90, 255, 0.34);
  border-radius: 999px;
  background: rgba(160, 36, 227, 0.18);
  color: #efbcff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-spotlight-status span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #d350ff;
  box-shadow: 0 0 12px rgba(215, 70, 255, 0.65);
}

.event-spotlight-status.live {
  border-color: rgba(255, 73, 100, 0.46);
  background: rgba(232, 28, 61, 0.16);
  color: #ffdce2;
}

.event-spotlight-status.live span {
  background: #ff3658;
  box-shadow: 0 0 13px rgba(255, 54, 88, 0.72);
}

.event-spotlight-status.completed {
  border-color: rgba(135, 115, 160, 0.35);
  background: rgba(110, 89, 135, 0.17);
  color: #cabada;
}

.homepage-event-spotlight h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.58rem;
  color: #fff;
  font-size: clamp(1.8rem, 2.3vw, 2.25rem);
  line-height: 0.97;
}

.homepage-event-spotlight p {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: #bda7d3;
  font-size: 0.79rem;
  line-height: 1.5;
}

.event-spotlight-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.66rem;
  color: #e494ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-spotlight-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: auto;
}

.event-spotlight-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(210, 84, 255, 0.36);
  border-radius: 0.65rem;
  background: rgba(112, 29, 180, 0.19);
  color: #edcfff;
  font-size: 0.73rem;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.event-spotlight-link:hover {
  border-color: rgba(237, 110, 255, 0.55);
  background: rgba(145, 36, 215, 0.27);
}

.event-spotlight-link.primary {
  border-color: rgba(220, 87, 255, 0.44);
  background: linear-gradient(110deg, rgba(119, 38, 233, 0.55), rgba(205, 53, 255, 0.44));
  color: #fff;
}

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

  .schedule-showcase-grid {
    grid-template-columns: repeat(2, minmax(245px, 1fr));
  }
}

@media (max-width: 650px) {
  .schedule-showcase-header,
  .schedule-showcase-grid {
    display: flex;
    flex-direction: column;
  }

  .schedule-kick-link {
    align-self: flex-start;
  }
}

/* ===== HOMEPAGE SCHEDULE EVENTS SHOWCASE END ===== */


/* ===== DESKTOP MOBILE SITE QR CARD 20260603 ===== */

.desktop-mobile-qr-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(100%, 390px);
  margin: 1.25rem 0 1.5rem;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(221, 93, 255, 0.34);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 8% 50%, rgba(219, 58, 255, 0.18), transparent 36%),
    linear-gradient(120deg, rgba(56, 13, 87, 0.68), rgba(17, 5, 31, 0.78));
  box-shadow:
    0 18px 40px rgba(20, 2, 37, 0.28),
    inset 0 1px 0 rgba(250, 160, 255, 0.08);
}

.desktop-mobile-qr-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3.3rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: rgba(187, 45, 255, 0.17);
  filter: blur(18px);
  pointer-events: none;
}

.desktop-mobile-qr-image {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  padding: 0.3rem;
  border-radius: 0.68rem;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.desktop-mobile-qr-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(176, 52, 255, 0.27);
}

.desktop-mobile-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: crisp-edges;
}

.desktop-mobile-qr-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.desktop-mobile-qr-copy .eyebrow {
  margin: 0 0 0.08rem;
  color: #e288ff;
  font-size: 0.63rem;
}

.desktop-mobile-qr-copy strong {
  color: #fff;
  font-size: 0.91rem;
  line-height: 1.25;
}

.desktop-mobile-qr-copy span {
  color: #c7aedb;
  font-size: 0.73rem;
}

@media (max-width: 980px) {
  .desktop-mobile-qr-card {
    display: none;
  }
}

/* ===== DESKTOP MOBILE SITE QR CARD END ===== */

/* ===== HOMEPAGE NEWEST PUBLIC MEMBERS 20260603 ===== */

.newest-members-panel {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: clamp(1.3rem, 3vw, 2rem);
  padding: .9rem 1.05rem;
  border-color: rgba(198, 78, 255, .22);
  background:
    linear-gradient(110deg, rgba(37, 9, 60, .72), rgba(18, 5, 32, .78));
}

.newest-members-heading {
  flex: 0 0 auto;
  padding-right: 1rem;
  border-right: 1px solid rgba(199, 82, 255, .18);
}

.newest-members-heading .eyebrow {
  margin-bottom: .25rem;
  font-size: .62rem;
}

.newest-members-heading h2 {
  color: #f7ebff;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  white-space: nowrap;
}

.newest-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  min-width: 0;
}

.newest-members-empty {
  color: #987eae;
  font-size: .77rem;
}

.newest-member-chip {
  display: inline-flex;
  flex-direction: column;
  gap: .08rem;
  min-width: 108px;
  padding: .48rem .65rem;
  border: 1px solid rgba(186, 76, 255, .22);
  border-radius: .65rem;
  background: rgba(80, 20, 122, .27);
  transition: border-color 160ms ease, background 160ms ease;
}

.newest-member-chip:hover {
  border-color: rgba(226, 102, 255, .48);
  background: rgba(111, 29, 169, .36);
}

.newest-member-chip strong {
  overflow: hidden;
  color: #f5ebff;
  font-size: .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newest-member-chip span {
  overflow: hidden;
  color: #c896e8;
  font-size: .66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .newest-members-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .newest-members-heading {
    padding-right: 0;
    padding-bottom: .62rem;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 82, 255, .18);
  }

  .newest-members-heading h2 {
    white-space: normal;
  }
}

/* ===== HOMEPAGE NEWEST PUBLIC MEMBERS END ===== */