:root {
      --bg-dark: #0a0405;
      --crimson-main: #800a0e;
      --crimson-bright: #b91c1c;
      --crimson-glow: rgba(185, 28, 28, 0.4);
      --gold-main: #d4af37;
      --gold-light: #fef08a;
      --gold-dark: #855810;
      --gold-gradient: linear-gradient(135deg, #fef08a 0%, #d4af37 50%, #996515 100%);
      --card-bg: rgba(26, 8, 10, 0.85);
      --card-border: rgba(212, 175, 55, 0.35);
      --card-hover-border: rgba(254, 240, 138, 0.8);
      --text-white: #ffffff;
      --text-muted: #e2e8f0;
      --text-gold: #fef08a;
      --font-heading: 'Outfit', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      background-color: var(--bg-dark);
      background-image: 
        radial-gradient(circle at 50% 0%, rgba(128, 10, 14, 0.6) 0%, rgba(10, 4, 5, 0.95) 70%),
        url('../talk-n-shop-banner.jpg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
      color: var(--text-white);
      font-family: var(--font-body);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 0 1rem 3rem 1rem;
      position: relative;
    }

    /* Subtle Overlay Grid Pattern */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 0);
      background-size: 24px 24px;
      pointer-events: none;
      z-index: 0;
    }

    /* Widescreen Banner Container (Matches 1060px Video Player Width) */
    .widescreen-banner-container {
      width: 100%;
      max-width: 1060px;
      margin: 1.5rem auto 0.5rem auto;
      z-index: 1;
    }

    /* Doubled Banner Image Container */
    .banner-wrapper {
      width: 100%;
      height: 240px;
      min-height: 240px;
      border-radius: 18px;
      overflow: hidden;
      border: 2.5px solid var(--gold-main);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 30px var(--crimson-glow);
      background: #000;
      position: relative;
    }

    .banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* Standard Content Container (Header, Links, Featuring) */
    .container {
      width: 100%;
      max-width: 1060px;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    /* Profile Header Section */
    .profile-section {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.85rem;
      margin-top: 0.25rem;
    }

    /* Title Group */
    .title-group h1 {
      font-family: var(--font-heading);
      font-size: 2.85rem;
      font-weight: 900;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--gold-main);
      text-shadow: 0 4px 15px rgba(0,0,0,0.8);
      line-height: 1.1;
      margin-bottom: 0.35rem;
    }

    .hosts-tag {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-main);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .hosts-tag::before,
    .hosts-tag::after {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--gold-gradient);
      display: inline-block;
    }

    .subtitle {
      color: var(--text-muted);
      font-size: 0.975rem;
      font-weight: 500;
      max-width: 1060px;
      line-height: 1.55;
      margin: 0 auto;
    }

    /* Status Badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.4rem 1.1rem;
      border-radius: 9999px;
      background: rgba(128, 10, 14, 0.7);
      border: 1px solid var(--gold-main);
      font-size: 0.85rem;
      color: var(--gold-light);
      font-weight: 700;
      letter-spacing: 0.04em;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 10px #ef4444;
      animation: pulseRed 1.8s infinite;
    }

    @keyframes pulseRed {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }

    /* Top Links Container - 2 Equal Columns on Same Horizontal Line */
    .links-list {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 0.25rem;
    }

    /* Reduced & Identical Height Link Cards */
    .link-card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.1rem;
      min-height: 64px;
      background: var(--card-bg);
      border: 2px solid var(--card-border);
      border-radius: 16px;
      text-decoration: none;
      color: var(--text-white);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .link-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(254, 240, 138, 0.15), transparent);
      transition: left 0.6s ease;
    }

    .link-card:hover::before {
      left: 100%;
    }

    .link-card:hover {
      transform: translateY(-3px) scale(1.01);
      border-color: var(--card-hover-border);
      background: rgba(45, 12, 16, 0.95);
      box-shadow: 0 10px 28px var(--crimson-glow), 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .link-content {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      z-index: 1;
    }

    /* Compact Icon Box */
    .icon-box {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(128, 10, 14, 0.9), rgba(40, 5, 7, 0.9));
      border: 1.5px solid var(--gold-main);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-light);
      transition: all 0.35s ease;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .link-card:hover .icon-box {
      background: var(--gold-gradient);
      color: #0a0405;
      transform: scale(1.06);
      box-shadow: 0 0 15px var(--gold-main);
    }

    .icon-box svg {
      width: 22px;
      height: 22px;
    }

    .link-text {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .link-header-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .link-title {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .card-badge {
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
      padding: 0.15rem 0.5rem;
      border-radius: 5px;
      background: var(--crimson-main);
      color: var(--gold-light);
      border: 1px solid var(--gold-main);
    }

    .arrow-box {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-main);
      transition: all 0.35s ease;
      z-index: 1;
      flex-shrink: 0;
    }

    .link-card:hover .arrow-box {
      background: var(--gold-main);
      color: #0a0405;
      transform: translateX(3px);
    }

    .arrow-box svg {
      width: 16px;
      height: 16px;
    }

    /* WIDESCREEN YOUTUBE THEATER SECTION (Matches 1060px Banner Width) */
    .theater-section {
      width: 100%;
      max-width: 1060px;
      margin: 0.75rem auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 1;
    }

    .theater-header {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--gold-main);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
    }

    .theater-header::before,
    .theater-header::after {
      content: '';
      flex: 1;
      height: 1.5px;
      background: var(--gold-gradient);
    }

    .theater-layout {
      display: grid;
      grid-template-columns: 2.1fr 1fr;
      gap: 1.25rem;
      width: 100%;
      align-items: start;
    }

    .hero-player-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
      border-radius: 18px;
      overflow: hidden;
      border: 2.5px solid var(--gold-main);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.95), 0 0 30px var(--crimson-glow);
      background: #000;
    }

    .hero-player-iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .playlist-sidebar {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      border-radius: 18px;
      padding: 0.85rem;
      max-height: 440px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      backdrop-filter: blur(16px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    /* Custom Scrollbar for Sidebar */
    .playlist-sidebar::-webkit-scrollbar {
      width: 5px;
    }
    .playlist-sidebar::-webkit-scrollbar-track {
      background: rgba(10, 4, 5, 0.6);
      border-radius: 10px;
    }
    .playlist-sidebar::-webkit-scrollbar-thumb {
      background: var(--gold-main);
      border-radius: 10px;
    }

    .sidebar-header {
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.15rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .playlist-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem;
      border-radius: 12px;
      background: rgba(128, 10, 14, 0.35);
      border: 1px solid rgba(212, 175, 55, 0.2);
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      color: #fff;
    }

    .playlist-item:hover,
    .playlist-item.active {
      background: rgba(128, 10, 14, 0.85);
      border-color: var(--gold-main);
      transform: translateX(2px);
      box-shadow: 0 0 14px var(--crimson-glow);
    }

    .playlist-thumb-wrapper {
      position: relative;
      width: 96px;
      height: 54px;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
      background: #000;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .playlist-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .playlist-info {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      overflow: hidden;
    }

    .playlist-item-title {
      font-family: var(--font-heading);
      font-size: 0.825rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.25;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .playlist-item-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* Featuring Section & Widened Borderless 2-Column Social Links */
    .featuring-section {
      width: 100%;
      margin-top: 0.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
    }

    .featuring-title {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--gold-main);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
    }

    .featuring-title::before,
    .featuring-title::after {
      content: '';
      flex: 1;
      height: 1.5px;
      background: var(--gold-gradient);
    }

    .features-grid {
      width: 100%;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 1.1rem 2rem;
    }

    .feature-card {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0.25rem 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 0.65rem;
      box-shadow: none;
      backdrop-filter: none;
    }

    .feature-name {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.3;
      white-space: nowrap;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    /* Plain white logos without borders or hover background effects */
    .social-icon-btn {
      width: auto;
      height: auto;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: none;
      transition: opacity 0.2s ease;
    }

    .social-icon-btn:hover {
      background: transparent;
      border: none;
      box-shadow: none;
      transform: none;
      opacity: 0.8;
    }

    .social-icon-btn img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: none;
    }

    .social-icon-btn:hover img {
      filter: none;
    }

    /* Grid Row Spacers */
    .grid-spacer {
      visibility: hidden;
      min-height: 0px;
    }

    /* Footer */
    footer {
      margin-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .domain-tag {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--gold-main);
      letter-spacing: 0.08em;
    }

    /* Responsive adjustments */
    @media (max-width: 800px) {
      .theater-layout { grid-template-columns: 1fr; }
      .playlist-sidebar { max-height: 320px; }
    }

    @media (max-width: 600px) {
      .links-list { grid-template-columns: 1fr; }
      .feature-name { white-space: normal; }
      .features-grid { grid-template-columns: 1fr; gap: 0.85rem; }
      .grid-spacer { display: none; }
      .banner-wrapper { height: 160px; min-height: 160px; }
      .title-group h1 { font-size: 2.25rem; }
      .hosts-tag { font-size: 0.95rem; }
    }/* --- NEW STYLES FOR MULTI-PAGE HUB --- */

/* Sticky Navigation Bar */
.sticky-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 4, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold-main);
  z-index: 100;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* 3-Column Top Links Grid (for Patreon) */
.links-list-3col {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .links-list-3col { grid-template-columns: 1fr; }
}

/* Page Headers for Subpages */
.page-header {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 1.5rem 0 0.5rem 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

/* Grid Layouts for JSON Data */
.dynamic-grid {
  display: grid;
  width: 100%;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dynamic-grid.merch {
  grid-template-columns: repeat(3, 1fr);
}

.dynamic-grid.events {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.dynamic-grid.media {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 800px) {
  .dynamic-grid.merch { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .dynamic-grid.merch { grid-template-columns: 1fr; }
}

/* Dynamic Cards */
.dyn-card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.dyn-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 25px var(--crimson-glow);
}

.dyn-card-img-wrapper {
  width: 100%;
  height: 200px;
  background: #000;
  overflow: hidden;
  position: relative;
  border-bottom: 1.5px solid var(--card-border);
}

.dyn-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dyn-card.merch .dyn-card-img-wrapper {
  height: 240px;
}
.dyn-card.merch .dyn-card-img {
  object-fit: contain;
  background: #fff;
}

.dyn-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dyn-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.dyn-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.dyn-card-highlight {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-main);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dyn-card-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: var(--crimson-main);
  color: var(--text-white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--gold-main);
  transition: all 0.2s ease;
}

.dyn-card-btn:hover {
  background: var(--crimson-bright);
  color: var(--gold-light);
}

.dyn-card-btn-alt {
  background: transparent;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-container {
  width: 100%;
  max-width: 600px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-main);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.submit-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #0a0405;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--gold-main);
}
