/* ================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ================================================ */
:root {
  /* Comic Book Color Palette */
  --comic-red: #FF3B3B;
  --comic-blue: #4A90E2;
  --comic-yellow: #FFD93D;
  --comic-orange: #FF9500;
  --comic-purple: #9B59B6;
  --comic-green: #2ECC71;
  --comic-black: #2C2C2C;
  --comic-white: #FFFFFF;

  /* Layout Spacing */
  --section-gap: 3rem;
  --section-padding: 2.5rem 2rem;
  --card-gap: 2rem;
}

/* ================================================
   GLOBAL RESET & BASE STYLES
   ================================================ */

/* CSS Reset - Normalize all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling behavior for anchor links */
html {
  scroll-behavior: smooth;
}

/* Body: Comic book textured background with subtle gradients */
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #F5F1E8; /* Cream/paper color */
  /* Layered background: grid pattern + subtle color accents */
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
    radial-gradient(circle at 20% 30%, rgba(255,217,61,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,59,59,0.06) 0%, transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================================================
   LEGACY/UNUSED ELEMENTS
   ================================================ */

/* Halftone overlay - currently disabled */
.halftone-overlay {
  display: none;
}

/* ================================================
   REUSABLE COMIC PANEL COMPONENT
   ================================================ */

/* Comic panel style with 3D effect (currently unused but available) */
.comic-panel {
  background: var(--comic-white);
  border: 5px solid var(--comic-black);
  box-shadow: inset -3px -3px 0 rgba(0,0,0,.2), 8px 8px 0 rgba(0,0,0,.3);
  position: relative;
}

/* Double border effect for comic panels */
.comic-panel::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--comic-black);
  pointer-events: none; /* Don't interfere with clicking */
}

/* ================================================
   HERO SECTION (Top of page)
   ================================================ */
/* Main hero container - centered flexbox layout */
.hero {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  z-index: 2; /* Above background elements */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* SOLD OUT! logo image */
.hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(6px 6px 0 rgba(0,0,0,.3)) contrast(1.1) saturate(1.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 5px solid var(--comic-black);
  background: white;
  padding: 1rem;
}

/* Logo hover effect - slight scale and rotation */
.hero-logo:hover {
  transform: scale(1.03) rotate(-2deg);
  filter: drop-shadow(8px 8px 0 rgba(0,0,0,.4)) contrast(1.15) saturate(1.3);
}

/* Hero subtitle/tagline - dynamically loaded from taglines.xml */
.hero-subtitle {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive sizing */
  color: var(--comic-red);
  text-shadow: 3px 3px 0 var(--comic-black); /* Comic book text effect */
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: white;
  padding: 1.5rem 2.5rem;
  border: 5px solid var(--comic-black);
  border-radius: 0; /* Sharp corners for comic style */
  position: relative;
  display: inline-block;
  box-shadow: 8px 8px 0 rgba(0,0,0,.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
  transform: rotate(-1deg); /* Slight tilt for dynamic feel */
}

/* Subtitle hover - enhanced shadow */
.hero-subtitle:hover {
  transform: rotate(-1deg) translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(0,0,0,.3);
}

/* Main description text with link to example */
.hero-description {
  font-size: 1.15rem;
  color: var(--comic-black);
  max-width: 850px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  background: white;
  padding: 2rem;
  border: 4px solid var(--comic-black);
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0,0,0,.15);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

/* Description hover - lift effect */
.hero-description:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0,0,0,.25);
}

/* ================================================
   EDITION CARDS (Stage Edition & Screen Edition)
   ================================================ */

/* Two-column grid container for the edition cards */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal columns */
  gap: var(--card-gap);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Base card styling with comic book aesthetic */
.edition-card {
  background: white;
  border: 5px solid var(--comic-black);
  border-radius: 0; /* Sharp corners */
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 10px 10px 0 rgba(0,0,0,.15); /* Drop shadow effect */
  overflow: visible;
}

/* Disable ::before pseudo-element (inherited from comic-panel) */
.edition-card::before {
  display: none;
}

/* Card hover - enhanced lift effect */
.edition-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 rgba(0,0,0,.25);
}

/* Stage Edition card - light red background */
.edition-card.stage-edition {
  background: #FFE5E5;
  border-color: var(--comic-black);
}

.edition-card.stage-edition::before {
  display: none;
}

/* Screen Edition card - light blue background */
.edition-card.screen-edition {
  background: #E3F2FF;
  border-color: var(--comic-black);
}

/* Screen Edition title color override */
.edition-card.screen-edition h3 {
  color: var(--comic-blue);
}

/* Screen Edition subtitle color override */
.edition-card.screen-edition .subtitle {
  color: #2C5AA0;
  background: #B3D9FF;
}

.edition-card.screen-edition::before {
  display: none;
}

/* Edition card title (Stage Edition / Screen Edition) */
.edition-card h3 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--comic-red);
  text-shadow: 3px 3px 0 var(--comic-black);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* Edition card subtitle badge */
.edition-card .subtitle {
  font-size: 0.9rem;
  color: var(--comic-black);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--comic-yellow);
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 4px solid var(--comic-black);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,.9);
}

/* Edition card description paragraph */
.edition-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--comic-black);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* ================================================
   THEMES/FEATURES SECTION (Inside edition cards)
   ================================================ */

/* Semi-transparent box for themes/features list */
.themes-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border: 4px solid var(--comic-black);
  border-radius: 0;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: left;
  box-shadow: 4px 4px 0 rgba(0,0,0,.2);
  position: relative;
  z-index: 1;
}

/* Themes section heading */
.themes-section h4 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--comic-black);
  text-shadow: none;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* Unstyled list container */
.themes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Individual theme/feature items */
.themes-list li {
  font-size: 1.1rem;
  margin: .7rem 0;
  position: relative;
  padding-left: 2rem; /* Space for star icon */
  font-weight: 600;
  color: var(--comic-black);
}

/* Star bullet icon before each item */
.themes-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1.1rem;
  color: var(--comic-red);
  text-shadow: 2px 2px 0 var(--comic-black);
}

/* === SCHEDULE SECTION === */
.schedule-section {
  background: #FFFFFF;
  color: var(--comic-black);
  padding: 3rem 2.5rem;
  margin: 0 auto;
  max-width: 1100px;
  border: 5px solid var(--comic-black);
  border-radius: 0;
  box-shadow: 10px 10px 0 rgba(0,0,0,.15);
  position: relative;
  isolation: isolate;
}

.schedule-section::before {
  content: '';
  position: absolute;
  inset: -2rem;
  background: #FFFFFF;
  z-index: -1;
}

.schedule-section h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--comic-red);
  text-shadow: 2px 2px 0 var(--comic-black);
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule-section > p {
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: #666;
  text-shadow: none;
  text-transform: none;
  letter-spacing: 0.3px;
}

#schedule-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
}

/* === CONSIGNMENT SECTION === */
.consignment-section {
  background: var(--comic-purple);
  color: var(--comic-white);
  padding: var(--section-padding);
  margin: var(--section-gap) auto;
  max-width: 1200px;
  border: 6px solid var(--comic-black);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(0,0,0,.9);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consignment-section:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(0,0,0,.9);
}

.consignment-section h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--comic-white);
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
}

.consignment-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}

/* === REVIEWS SECTION === */
.reviews-section {
  background: var(--comic-orange);
  color: var(--comic-white);
  padding: 4rem 2rem;
  margin: var(--section-gap) 0;
  border: 6px solid var(--comic-black);
  border-left: none;
  border-right: none;
  position: relative;
  box-shadow: inset 0 6px 0 rgba(0,0,0,.3), inset 0 -6px 0 rgba(0,0,0,.3);
}

.reviews-section .section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--comic-white);
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
  letter-spacing: 3px;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

@media (min-width: 1400px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  background: var(--comic-orange);
  color: var(--comic-black);
  padding: 0;
  border: none;
  box-shadow: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover {
  transform: translate(-2px, -2px) rotate(0deg) !important;
}

/* Rotating and shifting variations */
.review-card:nth-child(7n + 1) {
  transform: rotate(-2deg) translateY(5px);
}

.review-card:nth-child(7n + 2) {
  transform: rotate(3deg) translateY(-8px);
}

.review-card:nth-child(7n + 3) {
  transform: rotate(-3deg) translateY(10px);
}

.review-card:nth-child(7n + 4) {
  transform: rotate(1deg) translateY(-5px);
}

.review-card:nth-child(7n + 5) {
  transform: rotate(2deg) translateY(8px);
}

.review-card:nth-child(7n + 6) {
  transform: rotate(-1deg) translateY(-10px);
}

.review-card:nth-child(7n + 7) {
  transform: rotate(2deg) translateY(5px);
}

.review-photo {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 5px solid var(--comic-black);
  filter: contrast(1.2) saturate(1.3);
  background: white;
  box-shadow: 6px 6px 0 rgba(0,0,0,.25);
  display: block;
  padding: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover .review-photo {
  filter: contrast(1.3) saturate(1.4) brightness(1.05);
  box-shadow: 8px 8px 0 rgba(0,0,0,.35);
}

.review-content {
  margin-top: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  border: 5px solid var(--comic-black);
  border-radius: 30px;
  box-shadow: 6px 6px 0 rgba(0,0,0,.7);
  min-height: 160px;
  width: 280px;
  max-width: 280px;
}

.review-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid white;
  z-index: 2;
}

.review-content::after {
  content: '';
  position: absolute;
  top: -27px;
  left: 27px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 25px solid var(--comic-black);
  z-index: 1;
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.filled-star {
  color: var(--comic-yellow);
  text-shadow: 2px 2px 0 var(--comic-black);
}

.empty-star {
  color: #ddd;
  text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}

.review-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-style: italic;
  font-weight: 600;
  flex: 1;
}

.reviewer {
  font-weight: 900;
  color: var(--comic-black);
  text-align: right;
  text-shadow: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  display: flex;
  justify-content: center;
  margin: var(--section-gap) 0;
  padding: 2rem 0;
}

.burst-wrap {
  position: relative;
  display: inline-block;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(12px 12px 0 rgba(0,0,0,.4));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(14px 14px 0 rgba(0,0,0,.5));
  }
}

.burst-svg {
  width: min(90vw, 900px);
  height: auto;
  display: block;
}

.tagline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--comic-red);
  text-shadow: 4px 4px 0 var(--comic-black);
  letter-spacing: 5px;
  line-height: 1.1;
  transform: rotate(-2deg);
  pointer-events: none;
  animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
  0%, 100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1.03);
  }
}

/* === OLD TV SECTION === */
.old-tv-section {
  background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #8B4513 100%);
  padding: 4rem 2rem;
  border-top: 6px solid var(--comic-black);
  border-bottom: 6px solid var(--comic-black);
  position: relative;
}

.old-tv-section .section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--comic-yellow);
  text-shadow: 4px 4px 0 var(--comic-black);
  letter-spacing: 3px;
  line-height: 1;
}

.tv-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.old-tv {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(8px 8px 12px rgba(0,0,0,.5));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.old-tv:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(12px 12px 16px rgba(0,0,0,.6));
}

.tv-screen {
  width: 640px;
  height: 480px;
  background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
  border: 20px solid #2C2C2C;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,.8),
    inset -12px -12px 30px rgba(255,255,255,.05),
    inset 12px 12px 30px rgba(0,0,0,.5);
}

@media (max-width: 768px) {
  .tv-screen {
    width: 480px;
    height: 360px;
    padding: 25px;
    border: 16px solid #2C2C2C;
  }
}

@media (max-width: 580px) {
  .tv-screen {
    width: 90vw;
    height: calc(90vw * 0.75);
    padding: 20px;
    border: 12px solid #2C2C2C;
    border-radius: 20px;
  }
}

.tv-screen::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #ff3b3b 0%, #8b0000 100%);
  border-radius: 50%;
  box-shadow: 0 0 12px #ff3b3b;
  animation: powerLight 2s ease-in-out infinite;
}

@keyframes powerLight {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.tv-screen::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 12px;
  background: linear-gradient(90deg,
    transparent 0%,
    #444 10%,
    #555 20%,
    #444 30%,
    transparent 40%,
    #444 50%,
    #555 60%,
    #444 70%,
    transparent 80%
  );
  border-radius: 3px;
}

.tv-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  display: block;
  background: #000;
  box-shadow: 0 0 20px rgba(0,150,255,.3);
}

.tv-mute-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--comic-yellow, #FFD93D);
  border: 4px solid var(--comic-black, #2C2C2C);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0,0,0,.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  font-size: 1.8rem;
  padding: 0;
}

.tv-mute-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(0,0,0,.5);
  background: var(--comic-orange, #FF9500);
}

.tv-mute-btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0,0,0,.4);
}

.tv-channel-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: radial-gradient(circle at 30% 30%, #4a4a4a, #2a2a2a);
  border: 4px solid var(--comic-black, #2C2C2C);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0,0,0,.4), inset -3px -3px 6px rgba(255,255,255,.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  padding: 0;
}

.tv-channel-btn::before {
  content: '';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #555 0deg 45deg,
    #666 45deg 90deg,
    #555 90deg 135deg,
    #666 135deg 180deg,
    #555 180deg 225deg,
    #666 225deg 270deg,
    #555 270deg 315deg,
    #666 315deg 360deg
  );
  box-shadow: inset 0 0 6px rgba(0,0,0,.5);
  border: 2px solid #333;
}

.tv-channel-btn::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 3px;
  background: var(--comic-yellow, #FFD93D);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.5px;
}

.tv-channel-btn:hover {
  transform: translate(-3px, -3px) rotate(45deg);
  box-shadow: 7px 7px 0 rgba(0,0,0,.5), inset -3px -3px 6px rgba(255,255,255,.1);
}

.tv-channel-btn:active {
  transform: translate(0, 0) rotate(90deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,.4), inset -3px -3px 6px rgba(255,255,255,.1);
}

.tv-stand {
  width: 180px;
  height: 12px;
  background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
  border-radius: 0 0 12px 12px;
  margin-top: -6px;
  position: relative;
  box-shadow: 0 6px 12px rgba(0,0,0,.4);
}

.tv-stand::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 25px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,.6);
}

/* === FOOTER === */
footer {
  background: var(--comic-black);
  color: var(--comic-white);
  padding: var(--section-padding);
  padding-bottom: 1rem;
  border-top: 8px solid var(--comic-yellow);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--comic-yellow) 0px,
    var(--comic-yellow) 20px,
    var(--comic-red) 20px,
    var(--comic-red) 40px,
    var(--comic-blue) 40px,
    var(--comic-blue) 60px
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  text-decoration: none;
  background: var(--comic-white);
  border: 3px solid var(--comic-black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 4px 0 rgba(0,0,0,.2);
  position: relative;
}

.social-link:hover {
  transform: rotate(0deg) translate(-2px, -2px) scale(1.1) !important;
  box-shadow: 6px 6px 0 rgba(0,0,0,.35);
  border-color: var(--comic-red);
  background: #FFFEF7;
}

.copyright {
  font-size: .9rem;
  opacity: .8;
  border-top: 3px solid var(--comic-yellow);
  padding-top: 1rem;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* === COMIC FRAME VIDEO SECTION === */
.comic-frame-section {
  background: var(--comic-orange);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 6px solid var(--comic-black);
  border-bottom: 6px solid var(--comic-black);
}

.comic-frame-container {
  position: relative;
  width: min(400px, 90vw);
  aspect-ratio: 9 / 16; /* Portrait orientation */
  background: white;
  border: 8px solid var(--comic-black);
  box-shadow:
    inset -4px -4px 0 rgba(0,0,0,.3),
    12px 12px 0 rgba(0,0,0,.4);
  padding: 1rem;
  transform: rotate(-2deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comic-frame-container:hover {
  transform: rotate(-2deg) scale(1.02);
  box-shadow:
    inset -4px -4px 0 rgba(0,0,0,.3),
    15px 15px 0 rgba(0,0,0,.5);
}

.comic-frame-container::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 3px solid var(--comic-black);
  pointer-events: none;
}

.comic-frame-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 4px solid var(--comic-black);
  box-shadow: inset 0 0 20px rgba(0,0,0,.1);
  filter: contrast(1.1) saturate(1.2);
}

.video-unmute-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--comic-yellow);
  border: 4px solid var(--comic-black);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0,0,0,.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  font-size: 1.5rem;
}

.video-unmute-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,.5);
  background: var(--comic-orange);
}

.video-unmute-btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0,0,0,.4);
}

/* === BORING LINKS FOOTER === */
.boring-footer {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-top: 1px solid #dee2e6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.boring-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.boring-footer a {
  color: #495057;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.boring-footer a:hover {
  color: #212529;
}

.boring-footer .separator {
  color: #dee2e6;
}

/* === IMAGE LIGHTBOX === */
.image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.image-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  cursor: default;
}

/* === MODAL/POPUP === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--comic-red);
  margin: 0;
  letter-spacing: 2px;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f5f5f5;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e0e0e0;
  color: #333;
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem 2.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--comic-black);
  margin: 1.5rem 0 1rem;
  letter-spacing: 1px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.modal-body strong {
  color: var(--comic-red);
  font-weight: 600;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.modal-body ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.modal-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--comic-red);
  font-weight: bold;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 2rem 1.5rem 1rem;
  }

  .modal-header h2 {
    font-size: 2rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .two-cards {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid > div:nth-child(n) {
    grid-column: span 1;
  }

  .reviews-grid > div:nth-child(odd) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
  }

  .hero-logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    padding: 1.2rem 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .two-cards {
    grid-template-columns: 1fr;
    gap: var(--card-gap);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .edition-card {
    padding: 2.5rem;
  }

  .edition-card h3 {
    font-size: 2.5rem;
  }

  .edition-card p {
    font-size: 1.1rem;
  }

  .schedule-section {
    padding: 2rem 1.5rem;
    margin: 0 auto;
  }

  .schedule-section h2 {
    font-size: 1.75rem;
  }

  .consignment-section {
    padding: 2rem;
    margin: var(--section-gap) auto;
  }

  .consignment-section h2 {
    font-size: 2.5rem;
  }

  .consignment-section p {
    font-size: 1.1rem;
  }

  .reviews-section {
    padding: 2rem;
    margin: var(--section-gap) 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--card-gap);
  }

  .reviews-grid > div:nth-child(n) {
    grid-column: span 1;
  }

  .review-card {
    padding: 1.8rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-subtitle {
    padding: 1rem 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .edition-card {
    padding: 1.5rem;
  }

  .schedule-section {
    padding: 1.5rem 1rem;
  }

  .consignment-section {
    padding: 1.5rem;
  }

  .reviews-section {
    padding: 1.5rem;
  }
}

/* === SCHEDULE MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
  .show-item {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1.5rem 0 !important;
  }

  .show-icon {
    justify-content: flex-start !important;
    order: -1;
  }

  .show-icon img {
    width: 50px !important;
    height: 50px !important;
  }

  .show-date {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    text-align: left !important;
  }

  .show-date > div:first-child {
    font-size: 2rem !important;
  }

  .show-date > div:nth-child(2) {
    font-size: 0.8rem !important;
  }

  .show-date > div:last-child {
    font-size: 0.7rem !important;
  }

  .show-info {
    order: 2;
  }

  .show-info h3 {
    font-size: 1.1rem !important;
  }

  .show-info span {
    font-size: 0.7rem !important;
  }

  .show-info div {
    font-size: 0.85rem !important;
  }

  .show-actions {
    order: 3;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.75rem !important;
    flex-wrap: wrap;
  }

  .show-actions a {
    font-size: 0.7rem !important;
    padding: 0.5rem 0.75rem !important;
    flex: 0 1 auto;
  }
}
