:root {
  --red: #c40000;
  --red-bright: #ff2a2a;
  --red-hot: #ff4d4d;
  --red-deep: #6e0000;
  --black: #050505;
  --black-soft: #101010;
  --white: #ffffff;
  --gray: #d3d3d3;
  --border: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  --glow: 0 0 22px rgba(255, 42, 42, 0.28);
  --max-width: 1220px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(196, 0, 0, 0.22), transparent 24%),
    linear-gradient(180deg, #140000 0%, #080808 26%, #050505 60%, #090909 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-align: center;
}

a {
  color: var(--white);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  scroll-margin-top: 170px;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  color: var(--red-bright);
  text-shadow: 0 0 15px rgba(255, 42, 42, 0.45);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--red-bright);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 95px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.30) 35%, rgba(0, 0, 0, 0.46) 100%),
    url("images/fan-art-of-rockstar-richard.jpg") center center / cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.20) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.welcome-line {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 3px;
  font-weight: 900;
  color: var(--white);
}

.name-line {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--red-bright);
  text-shadow: 0 0 22px rgba(255, 42, 42, 0.35);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 760px;
  color: #f1f1f1;
  margin: 0 auto 24px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-btn {
  width: auto;
  min-width: 0;
  padding: 8px 12px;
  font-size: 0.68rem;
  letter-spacing: 0.6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  border-color: var(--red-bright);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-bright) 0%, #ff6666 100%);
  border-color: #ff6666;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.16);
}

.btn-secondary:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
}

.small-btn {
  display: inline-block;
  margin: 16px auto 0;
  min-width: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.badge-box {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  min-width: 165px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.badge-number {
  display: block;
  color: var(--red-bright);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.badge-label {
  color: #f2f2f2;
  font-size: 0.95rem;
}

.hero-panel {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  grid-template-columns: repeat(3, 1fr);
}

/* GLOBAL CARDS */
.panel-box,
.content-card,
.social-card,
.video-card,
.contact-card,
.timeline-card,
.video-main-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.panel-box {
  padding: 26px;
}

.panel-highlight {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(196,0,0,0.12));
}

.mini-quote {
  border-color: rgba(255, 90, 90, 0.24);
}

.panel-box h3,
.content-card h3,
.social-card h3,
.video-card h3,
.contact-card h3,
.timeline-card h3,
.video-main-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--red-bright);
  text-align: center;
}
section-title h2 {
  font-size: 1.1rem !important;
  text-transform: uppercase;
  color: var(--red-bright);
  text-align: center;
  margin-bottom: 12px;
}

.panel-box p,
.content-card p,
.social-card p,
.video-card p,
.contact-card p,
.timeline-card p,
.video-main-card p {
  color: #ededed;
  text-align: center;
}

.panel-box ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.panel-box li {
  margin-bottom: 10px;
  color: #f3f3f3;
}

.intro-strip {
  padding: 22px 0;
  background:
    linear-gradient(90deg, rgba(196, 0, 0, 0.18), rgba(255,255,255,0.04), rgba(196, 0, 0, 0.18));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intro-strip p {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--red-bright);
}

.section-pad {
  padding: 95px 0;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  color: #ff8c8c;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.84rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--red-bright);
  text-align: center;
}

.section-title p {
  color: #e6e6e6;
  font-size: 1.05rem;
  text-align: center;
}

.about-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.content-card {
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-list {
  list-style: none;
  margin-top: 10px;
  text-align: center;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  color: #f2f2f2;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-card {
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.timeline-year {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.14);
  color: #ff8a8a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.84rem;
}

/* CAROUSEL */

.carousel-caption {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.3;
  margin-top: 10px;
  opacity: 0.92;
  text-align: center;
}
.carousel-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 45%),
    #000;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: none;
  transition: opacity 0.4s ease;
  background: #111;
}

.carousel-image.active {
  display: block;
  opacity: 1;
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(196, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.control-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.control-btn:hover {
  transform: translateY(-2px);
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.control-btn.active-state {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* VIDEO / PODCAST */
.video-feature-grid,
.podcast-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.video-main-card {
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.video-side-stack,
.podcast-side-stack {
  display: grid;
  gap: 24px;
}

.video-card {
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.14);
  color: #ff8a8a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.84rem;
}

.alt-label {
  background: rgba(255,255,255,0.08);
  color: #f3f3f3;
}

.archive-card {
  padding: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.social-card {
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-card:hover,
.video-card:hover,
.content-card:hover,
.timeline-card:hover,
.video-main-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 90, 0.45);
  background: var(--panel-strong);
}

.handle {
  color: #ff8b8b;
  font-weight: 800;
  margin-bottom: 10px;
  word-break: break-word;
  text-align: center;
}

.social-card a,
.contact-card a {
  color: #ff7070;
  font-weight: 800;
}

.social-card a:hover,
.contact-card a:hover {
  color: #ffffff;
}

/* CONTACT */
.contact-card {
  padding: 30px;
}

.contact-card p + p {
  margin-top: 8px;
}

.footer {
  padding: 34px 0 44px;
  text-align: center;
  color: #d9d9d9;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-panel,
  .about-grid,
  .community-grid,
  .social-grid,
  .history-grid,
  .video-feature-grid,
  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: center;
  }

  .carousel-track {
    min-height: 540px;
  }

  .carousel-slide img {
    height: 500px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nav {
    min-height: auto;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 68px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .welcome-line {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .name-line {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-btn {
    width: auto;
    padding: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.45px;
  }

  .badge-box {
    width: 100%;
  }

  .nav-links {
    gap: 10px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.4px;
  }

  .logo {
    text-align: center;
  }

  .carousel-track {
    min-height: 420px;
  }

  .carousel-slide {
    padding: 14px;
  }

  .carousel-slide img {
    height: 390px;
    object-fit: contain;
  }

  .carousel-caption {
    font-size: 0.72rem;
  }

  .carousel-btn {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }

  .control-btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
  }
}
/* LIVE NOW */
.live-now {
  margin-top: 1px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  left: 10px;
}

.live-label {
  color: #ff2a2a !important;
}

#liveCount {
  margin-left: 6px;
  color: #ffffff !important;
}

.live-dot {
  color: #ff2a2a !important;
  margin-left: 6px;
  display: inline-block;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}