* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background-color: #faf2e6;
  color: #3c2e1f;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-header img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.logo-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3c2e1f;
}

/* Main Content */
.hero {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  position: relative;
}

.headline {
  font-family: "Limelight", cursive;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #3c2e1f;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #3c2e1f;
  max-width: 800px;
  width: 80%;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-download {
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(135deg, #4a3a2a 0%, #3c2e1f 50%, #2a1f14 100%);
  color: #f5ecd8;
  border-radius: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow:
    0 4px 12px rgba(60, 46, 31, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-download:hover {
  background: linear-gradient(135deg, #5a4a3a 0%, #4a3a2a 50%, #3c2e1f 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(60, 46, 31, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-download:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(60, 46, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Hero Section with Phone and Cows */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
  min-height: 600px;
  width: 150%;
  left: -25%;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(75%);
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(212, 165, 116, 0.15) 0%,
    #EDDBC6
  );
  padding-bottom: 20px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

/* Future sections placeholder */
.content-sections {
  min-height: 400px;
  background: linear-gradient(
    180deg,
    #EDDBC6,
    rgba(186, 131, 77, 0.25) 100%
  );
  position: relative;
  margin-top: -10px;
}

.cow-container {
  position: absolute;
  width: 400px;
  height: auto;
  z-index: 5;
}

.cow-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.cow-container::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 175px;
  height: 50px;
  background: radial-gradient(
    ellipse at center,
    rgba(60, 46, 31, 0.45) 0%,
    rgba(60, 46, 31, 0.3) 50%,
    transparent 80%
  );
  border-radius: 50%;
  z-index: -1;
}

.cow-left {
  left: 50%;
  bottom: 30%;
  transform: translateX(-110%);
}

.cow-right {
  right: 50%;
  bottom: 30%;
  transform: translateX(110%);
}

.phone-mockup {
  position: relative;
  z-index: 10;
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 25px;
  border-width: 2px;
  border-color: #3c2e1f33;
  border-style: solid;
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .logo-header h1 {
    font-size: 1.25rem;
  }

  .logo-header img {
    height: 40px;
    width: 40px;
  }

  .cta-buttons {
    scale: 0.8;
    gap: 1rem;
  }

  .subheadline {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 4rem;
  }

  .hero-visual::before {
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  }

  .cow-container {
    width: 240px;
  }
  .cow-container::after {
    width: 140px;
    height: 35px;
    bottom: 8px;
  }
  .cow-left {
    transform: translateX(-120%);
  }
  .cow-right {
    transform: translateX(120%);
  }

  .phone-mockup {
    max-width: 220px;
  }
}

@media screen and (max-width: 480px) {
  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 0.95rem;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-visual::before {
    border-radius: 50% 50% 0 0 / 50% 50% 0 0;
  }

  .cow-container {
    width: 160px;
  }
  .cow-container::after {
    width: 80px;
    height: 20px;
    bottom: 5px;
  }
  .cow-left {
    transform: translateX(-130%);
  }
  .cow-right {
    transform: translateX(130%);
  }

  .phone-mockup {
    max-width: 180px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline {
  animation: fadeInUp 0.8s ease-out;
}

.subheadline {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* ============================================
   SCRAPBOOK SECTION
   ============================================ */

.scrapbook-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Marquee Header */
.marquee-header {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 4rem 1rem 2.5rem;
  margin-bottom: 12rem;
  padding-top: 10rem;
  text-align: center;
  isolation: isolate;
}

.marquee-sign {
  position: relative;
  width: min(1100px, 100%);
  padding: 2.75rem 3.25rem;
  border-radius: 48px;
  background: linear-gradient(135deg, #f9a548 0%, #d95726 100%);
  box-shadow: 0 20px 40px rgba(25, 7, 0, 0.35);
  isolation: isolate;
  --slot-thickness: clamp(10px, 2vw, 24px);
  --bulb-spacing: 29px;
  --bulb-diameter: calc(var(--slot-thickness) * 0.9);
  --bulb-radius: calc(var(--bulb-diameter) / 1.7);
  --slot-offset: calc(var(--slot-thickness) / 100);
}

.marquee-sign::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  padding: var(--slot-thickness);
  --bulb-gradient: radial-gradient(
    circle,
    rgba(255, 248, 215, 0.95) 0 calc(var(--bulb-radius) * 0.6),
    #ffd36a calc(var(--bulb-radius) * 0.6) calc(var(--bulb-radius) * 0.95),
    rgba(167, 73, 22, 0.35) calc(var(--bulb-radius) * 0.95) calc(var(--bulb-radius) * 1.05),
    transparent calc(var(--bulb-radius) * 1.05)
  );
  /* Layered radial gradients render the bulbs centered in the orange slot */
  background:
    var(--bulb-gradient) center var(--slot-offset) / var(--bulb-spacing) var(--slot-thickness) repeat-x,
    var(--bulb-gradient) center calc(100% - var(--slot-offset)) / var(--bulb-spacing) var(--slot-thickness) repeat-x,
    var(--bulb-gradient) var(--slot-offset) center / var(--slot-thickness) var(--bulb-spacing) repeat-y,
    var(--bulb-gradient) calc(100% - var(--slot-offset)) center / var(--slot-thickness) var(--bulb-spacing) repeat-y,
    linear-gradient(145deg, #fba44a 0%, #e07227 100%);
  background-origin: border-box;
  background-clip: border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.95;
  z-index: 0;
}

.marquee-sign::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: -28px;
  height: 36px;
  border-radius: 0 0 42px 42px;
  background: #4a1f16;
  opacity: 0.55;
  filter: blur(6px);
  z-index: -1;
}

.marquee-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fffaf1 0%, #fce5cf 100%);
  border-radius: 34px;
  border: 5px solid #35150b;
  padding: 2.5rem 4rem;
  box-shadow:
    inset 0 8px 18px rgba(0, 0, 0, 0.08),
    0 3px 0 rgba(255, 255, 255, 0.5);
  color: #35150b;
}

.marquee-panel::before,
.marquee-panel::after {
  content: "";
  position: absolute;
  left: 2.8rem;
  right: 2.8rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(151, 108, 72, 0),
    rgba(151, 108, 72, 0.8),
    rgba(151, 108, 72, 0)
  );
}

.marquee-panel::before {
  top: 1.25rem;
}

.marquee-panel::after {
  bottom: 1.25rem;
}

.marquee-panel h2 {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #341109;
  margin: 0;
  letter-spacing: 0.14em;
  text-shadow: none;
  text-transform: uppercase;
}

.marquee-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #5b3a2b;
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
  font-style: normal;
}

.marquee-tape {
  position: absolute;
  width: clamp(200px, 15vw, 220px);
  height: clamp(60px, 6vw, 110px);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: normal;
}

.marquee-tape.tape-left {
  background-image: url("/static/tapeLong3.png");
  top: -0px;
  left: -60px;
  transform: rotate(-39deg);
}

.marquee-tape.tape-right {
  background-image: url("/static/tapeLong4.png");
  top: -10px;
  right: -70px;
  transform: rotate(40deg);
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem 2rem;
  row-gap: 5rem;
  padding-bottom: 10rem;
}

/* Base Feature Item */
.feature-item {
  position: relative;
  padding: 2rem;
  transition: transform 0.3s ease;
  --scale: 1;
  transform-origin: center center;
}

.feature-item:hover {
  transform: scale(calc(var(--scale) * 1.02)) translateY(-5px);
}

/* Tape Decorations */
.tape {
  position: absolute;
  height: auto;
  max-width: 120px;
  width: auto;
  z-index: 10;
  pointer-events: none;
  opacity: 0.85;
  object-fit: contain;
}

.tape-top-left {
  top: -20px;
  left: 20px;
  transform: rotate(-5deg);
}

.tape-top-right {
  top: -20px;
  right: 20px;
  transform: rotate(8deg);
}

.tape-top-center {
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.tape-bottom-left {
  bottom: -20px;
  left: 30px;
  transform: rotate(3deg);
}

.tape-bottom-right {
  bottom: -20px;
  right: 30px;
  transform: rotate(-7deg);
}

.tape-middle-left {
  top: 50%;
  left: -30px;
  transform: translateY(-50%) rotate(90deg);
  max-width: 100px;
}

.tape-middle-right {
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(-90deg);
  max-width: 100px;
}

.tape-corner-top-right {
  top: -15px;
  right: -15px;
  transform: rotate(45deg);
  max-width: 80px;
}

.tape-corner-bottom-left {
  bottom: -15px;
  left: -15px;
  transform: rotate(-45deg);
  max-width: 80px;
}

/* 5-Second Lobby Ticket */
.lobby-ticket {
  width: 400px;
  height: 200px;
  background: transparent;
  transform: rotate(-3deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  position: relative;
  flex-shrink: 0;
  margin-bottom: 50px;
}

.lobby-ticket .ticket-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}

.ticket-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #3c2e1f;
  position: relative;
  z-index: 1;
}

.ticket-side-text {
  min-height: 140px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  color: #3c2e1f;
  padding: 0 0.75rem;
}

.ticket-left {
  border-left: 2px solid #3c2e1f;
}

.ticket-right {
  border-right: 2px solid #3c2e1f;
}

.ticket-center {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 1rem;
  /* margin: 0.5rem 0; */
}

.ticket-stars {
  font-size: 1.5rem;
  color: #3c2e1f;
  margin: 0.5rem 0;
  letter-spacing: 0.3em;
}

.ticket-content h3 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.1;
  margin: 0.5rem 0;
  color: #3c2e1f;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ticket-bottom-label {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #3c2e1f;
  white-space: nowrap;
  z-index: 1;
}

/* Watchlist Blender */
.blender-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-2deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  flex-shrink: 0;
  position: relative;
}

.blender-title {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #3c2e1f;
  letter-spacing: 0.02em;
}

.blender-frame {
  position: relative;
  width: 380px;
  height: 340px;
  background: #fff url("/static/paper-texture.png");
  background-size: cover;
  background-position: center;
  border: 2px solid #3c2e1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venn-diagram {
  position: relative;
  width: 320px;
  height: 280px;
}

.circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #3c2e1f;
}

.circle-top {
  background: rgba(244, 208, 63, 0.7);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding-bottom: 100px;
}

.circle-bottom-left {
  background: rgba(230, 126, 34, 0.7);
  bottom: 0;
  left: 0;
  z-index: 2;
  padding-top: 65px;
  padding-right: 55px;
}

.circle-bottom-right {
  background: rgba(205, 92, 92, 0.7);
  bottom: 0;
  right: 0;
  z-index: 2;
  padding-top: 55px;
  padding-left: 65px;
}

.cow-icon-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  z-index: 10;
}

.venn-poster {
  width: 60px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Corner tape positions for blender card */
.blender-frame .tape-corner-tl {
  top: 0px;
  left: -40px;
  transform: rotate(-45deg);
  max-width: 100px;
}

.blender-frame .tape-corner-tr {
  top: -20px;
  right: -25px;
  transform: rotate(45deg);
  max-width: 100px;
}

.blender-frame .tape-corner-bl {
  bottom: -20px;
  left: -25px;
  transform: rotate(45deg);
  max-width: 100px;
}

.blender-frame .tape-corner-br {
  bottom: -25px;
  right: -35px;
  transform: rotate(-225deg);
  max-width: 100px;
}

/* Vibe Receipt */
.vibe-receipt {
  width: 340px;
  height: 480px;
  top: -40px;
  background: transparent;
  transform: rotate(4deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
}

/* Torn paper edge image as border overlay */
.vibe-receipt .torn-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.receipt-content {
  padding: 2.5rem 2rem 2.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.receipt-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.receipt-title {
  font-family: "Courier New", monospace;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  color: #3c2e1f;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.receipt-divider {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: #5a4a3a;
  letter-spacing: 0.1em;
  text-align: center;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  display: block;
}

.receipt-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.receipt-line {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  color: #3c2e1f;
  margin: 0.4rem 0;
  text-align: left;
  display: flex;
  align-items: center;
}

.receipt-symbol {
  display: inline-block;
  width: 1.2rem;
  text-align: center;
  margin-right: 0.3rem;
  text-decoration: none;
}

.receipt-total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.receipt-total-text {
  text-decoration: underline;
}

.receipt-calculation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
}

.calc-poster {
  width: 42px;
  height: 58px;
  background: #f5f0e8;
  border: 2px solid #3c2e1f;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.poster-icon {
  font-size: 1.4rem;
}

.poster-icon-svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.calc-operator {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3c2e1f;
}

/* Film Strip */
.film-strip {
  width: 420px;
  height: auto;
  background: transparent;
  padding: 1.5rem 1rem 1rem;
  transform: rotate(-2deg);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  flex-shrink: 0;
  margin-bottom: 50px;
  position: relative;
}

.film-strip .tape-top-center {
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  max-width: 140px;
  z-index: 20;
}

.film-frame {
  background: #4a2c2a;
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 3px solid #3c2e1f;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.film-holes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 4px;
}

.film-hole {
  width: 16px;
  height: 28px;
  background: #EAD6BF99;
  border-radius: 4px;
}

.film-image {
  flex: 1;
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #d4a574;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.film-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Tie-Breaker Raffle Ticket */
.raffle-ticket {
  width: 400px;
  height: 200px;
  background: transparent;
  transform: rotate(3deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  position: relative;
  flex-shrink: 0;
  margin-bottom: 50px;
}

.raffle-ticket .ticket-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}

.raffle-ticket .ticket-content {
  color: #3c2e1f;
}

.raffle-side {
  color: #3c2e1f;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.raffle-center {
  border: none;
  background: transparent;
}

.raffle-wheel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raffle-wheel {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.raffle-arrow {
  position: absolute;
  top: -2px;
  right: -40px;
  width: 60px;
  height: 50px;
  rotate: 60deg;
  object-fit: contain;
}

.raffle-tape-circle {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 116, 1) 0%,
    rgba(186, 131, 77, 1) 100%
  );
  border-radius: 50%;
  border: 2px solid rgba(60, 46, 31, 0.3);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 15;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Bottom Tickets Row */
.bottom-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.admit-ticket {
  background: linear-gradient(135deg, #fff9e6 0%, #f4ecd8 100%);
  border: 2px dashed #8b6914;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  transform: rotate(-2deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.admit-ticket::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 10px;
  width: 40px;
  height: 20px;
  background-image: url("/static/tapeSmall01.png");
  background-size: cover;
  transform: rotate(5deg);
  opacity: 0.8;
}

.admit-ticket.brown {
  background: linear-gradient(135deg, #8b6914 0%, #6b5010 100%);
  color: #fff;
  transform: rotate(1deg);
}

.admit-ticket.orange {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: #fff;
  border-color: #8b4513;
  transform: rotate(-1deg);
}

.admit-ticket.dark {
  background: linear-gradient(135deg, #3c2e1f 0%, #2a1f14 100%);
  color: #fff;
  border-color: #1a1410;
  transform: rotate(2deg);
}

.button-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.ticket-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ticket-btn.btn-primary {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: #fff;
  border: none;
}

.ticket-btn.btn-dark {
  background: #3c2e1f;
  color: #fff;
  border: none;
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .features-grid {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .scrapbook-container {
    padding: 2rem 1.5rem;
  }

  .marquee-header {
    margin-top: 6rem;
    padding: 3rem 1.25rem 1.5rem;
    margin-bottom: 3rem;
  }

  .marquee-panel h2 {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }

  .marquee-sign {
    border-radius: 36px;
    padding: 2rem;
  }

  .marquee-sign::before {
    inset: 10px;
  }

  .marquee-panel {
    padding: 2rem;
  }

  .marquee-panel::before,
  .marquee-panel::after {
    left: 1.75rem;
    right: 1.75rem;
  }

  .marquee-tape {
    width: 120px;
    height: 50px;
  }
  .marquee-tape.tape-right {
    top: -10px;
    right: -40px;
  }

  .marquee-tape.tape-left {
    top: -0px;
    left: -30px;
  }

  .features-grid {
    gap: 1.5rem;
    row-gap: 3rem;
    padding-bottom: 4rem;
  }

  /* Scale feature items proportionally */
  .feature-item {
    --scale: 0.85;
  }

  .lobby-ticket {
    transform: scale(var(--scale)) rotate(-3deg);
  }

  .blender-card {
    transform: scale(var(--scale)) rotate(-2deg);
  }

  .vibe-receipt {
    transform: scale(var(--scale)) rotate(4deg);
  }

  .film-strip {
    transform: scale(var(--scale)) rotate(-2deg);
  }

  .raffle-ticket {
    transform: scale(var(--scale)) rotate(3deg);
  }

  .bottom-tickets {
    flex-direction: column;
    gap: 1rem;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .ticket-btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .marquee-header {
    padding: 2.5rem 1rem 0.5rem;
  }

  .marquee-sign {
    border-radius: 24px;
    padding: 1.5rem;
  }

  .marquee-sign::before {
    inset: 8px;
  }

  .marquee-panel {
    padding: 1.5rem 1.25rem;
  }

  .marquee-panel::before,
  .marquee-panel::after {
    left: 1rem;
    right: 1rem;
  }

  .marquee-panel h2 {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }

  .marquee-subtitle {
    font-size: 0.9rem;
  }

  .marquee-tape {
    display: none;
  }

  /* Scale feature items for small mobile */
  .feature-item {
    --scale: 0.8;
  }

  .features-grid {
    gap: 1rem;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 380px) {
  /* Extra small screens */
  .feature-item {
    --scale: 0.7;
  }

  .features-grid {
    row-gap: 1.5rem;
  }

  .marquee-panel h2 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
  background: linear-gradient(
    180deg,
    rgba(186, 131, 77, 0.25) 0%,
    #d4a574 100%
  );
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Footer Tickets Row */
.footer-tickets-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 280px;
  margin-bottom: 2rem;
}

.footer-ticket {
  position: relative;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

/* Orange Ticket - FINAL */
.footer-ticket-orange {
  width: 170px;
  height: 220px;
  background: linear-gradient(135deg, #e07a3a 0%, #c75d2a 100%);
  border-radius: 12px;
  border: 3px solid #8b4513;
  transform: rotate(-15deg);
  z-index: 2;
  margin-right: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.footer-ticket-orange::before,
.footer-ticket-orange::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.3) 8px,
    rgba(255, 255, 255, 0.3) 10px
  );
}

.footer-ticket-orange::before {
  left: 5px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.footer-ticket-orange::after {
  right: 5px;
}

.footer-ticket-orange .ticket-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Fraunces", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 8px;
  letter-spacing: 0.05em;
}

.footer-ticket-orange .ticket-label-right {
  right: 8px;
  left: auto;
}

.footer-ticket-orange .ticket-main {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
}

.footer-ticket-orange .ticket-sub {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: #fff;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* Cream Ticket with Cow */
.footer-ticket-cream {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, #f5ecd8 0%, #e8dcc4 100%);
  border-radius: 12px;
  border: 3px solid #8b6914;
  transform: rotate(-5deg);
  z-index: 3;
  margin-right: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: visible;
}

.footer-ticket-cream .cow-peek {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: auto;
  z-index: 10;
}

.footer-ticket-cream .zzz {
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 1.2rem;
  color: #3c2e1f;
  font-weight: bold;
}

.footer-ticket-cream .barcode {
  width: 60px;
  height: 80px;
  background: repeating-linear-gradient(
    90deg,
    #3c2e1f,
    #3c2e1f 2px,
    transparent 2px,
    transparent 4px
  );
  margin-bottom: 0.5rem;
}

.footer-ticket-cream .barcode-text {
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  color: #3c2e1f;
  letter-spacing: 0.2em;
}

/* Dark Ticket - ADMIT TICKET */
.footer-ticket-dark {
  width: 140px;
  height: 200px;
  background: linear-gradient(135deg, #2d2016 0%, #1a1410 100%);
  border-radius: 12px;
  border: 3px solid #3c2e1f;
  transform: rotate(5deg);
  z-index: 4;
  margin-right: -25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.footer-ticket-dark .admit-text {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #f5ecd8;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* Center CTA Area */
.footer-cta-center {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, #f0d890 0%, #e6c864 100%);
  border-radius: 16px;
  border: 4px solid #8b6914;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer-cta-center::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed #8b6914;
  border-radius: 12px;
  pointer-events: none;
}

.footer-download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-download-buttons .btn-download {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}

.footer-download-buttons .btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* Cream ticket with Cow (right side) */
.footer-ticket-cream-right {
  width: 180px;
  height: 220px;
  background: linear-gradient(135deg, #f5ecd8 0%, #e8dcc4 100%);
  border-radius: 12px;
  border: 3px solid #c9a227;
  transform: rotate(8deg);
  z-index: 3;
  margin-left: -35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: visible;
}

.footer-ticket-cream-right .cow-peek {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
  z-index: 10;
}

.footer-ticket-cream-right .ticket-inner {
  width: 100%;
  height: 100%;
  border: 2px dashed #c9a227;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.footer-ticket-cream-right .admit-label {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3c2e1f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Yellow/Gold ticket (far right) */
.footer-ticket-gold {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f0d890 0%, #d4a574 100%);
  border-radius: 12px;
  border: 3px solid #8b6914;
  transform: rotate(15deg);
  z-index: 2;
  margin-left: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.footer-ticket-gold::before,
.footer-ticket-gold::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(139, 105, 20, 0.3) 8px,
    rgba(139, 105, 20, 0.3) 10px
  );
}

.footer-ticket-gold::before {
  left: 5px;
}

.footer-ticket-gold::after {
  right: 5px;
}

.footer-ticket-gold .ticket-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Fraunces", serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #3c2e1f;
  position: absolute;
  left: 6px;
  letter-spacing: 0.05em;
}

.footer-ticket-gold .ticket-label-right {
  right: 6px;
  left: auto;
}

.footer-ticket-gold .brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3c2e1f;
  background: #2d2016;
  color: #f5ecd8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Footer Links Row */
.footer-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px dashed rgba(60, 46, 31, 0.3);
  flex-wrap: wrap;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3c2e1f;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3c2e1f;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.3);
}

.footer-link:hover {
  background: #3c2e1f;
  color: #f5ecd8;
  transform: translateY(-2px);
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #5a4a3a;
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
  .footer-tickets-row {
    flex-wrap: wrap;
    gap: 1rem;
    min-height: auto;
  }

  .footer-ticket {
    margin: 0 !important;
  }

  .footer-ticket-orange,
  .footer-ticket-cream,
  .footer-ticket-dark,
  .footer-ticket-cream-right,
  .footer-ticket-gold {
    transform: rotate(0deg) !important;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-tickets-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-ticket-orange,
  .footer-ticket-cream,
  .footer-ticket-dark,
  .footer-ticket-gold {
    display: none;
  }

  .footer-ticket-cream-right {
    display: none;
  }

  .footer-cta-center {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 2rem 1.5rem;
  }

  .footer-download-buttons {
    flex-direction: row;
    width: 100%;
  }

  .footer-download-buttons .btn-download {
    width: 100%;
    text-align: center;
  }

  .footer-links-row {
    gap: 1rem;
  }

  .footer-link {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-cta-center {
    padding: 1.5rem 1rem;
  }

  .footer-download-buttons .btn-download {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}
