/* ==========================================================================
   RONDA BRAVA - Premium Nightclub Landing Page
   Strict 100vh / No-Scroll Architecture with Video, Legal & 5s Spotlight
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #070709;
  --bg-card: rgba(22, 22, 29, 0.75);
  --text-white: #ffffff;
  --text-dim: #a1a1aa;
  --accent-pink: #ff2a6d;
  --accent-blue: #05d9e8;
  --accent-gold: #ffb800;
  --accent-purple: #9d4edd;
  --accent-green: #00f260;
  --accent-orange: #ff4b2b;
  
  /* Fonts */
  --font-logo-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-script: 'Playfair Display', serif;

  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Viewport Constraints */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden; /* Strict no-scroll */
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-white);
  position: relative;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Fullscreen Video Background (Autoplay & Loop for Desktop & Mobile)
   -------------------------------------------------------------------------- */
.video-background-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-dark);
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.68) saturate(1.2);
  display: block;
}

/* Dark & Nightclub Glow Overlay for Contrast & Readability */
.video-tint-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(7, 7, 9, 0.4) 0%,
    rgba(7, 7, 9, 0.72) 70%,
    rgba(7, 7, 9, 0.88) 100%
  );
}

.spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: floatAmbient 14s infinite alternate ease-in-out;
}

.spot-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  left: 15%;
  background: radial-gradient(circle, var(--accent-pink), transparent 70%);
}

.spot-2 {
  width: 600px;
  height: 600px;
  bottom: -180px;
  right: 15%;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.35;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.12); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   Main Container Layout (Exact 100vh fit)
   -------------------------------------------------------------------------- */
.page-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  padding: 0.4rem 2rem 0.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Top-down Drop Animations
   -------------------------------------------------------------------------- */
.animate-drop {
  animation: dropFromTop 0.9s var(--ease-spring) forwards;
  opacity: 0;
}

.animate-drop-delay-1 {
  animation: dropFromTop 0.9s var(--ease-spring) 0.18s forwards;
  opacity: 0;
}

.animate-drop-delay-2 {
  animation: dropFromTop 0.9s var(--ease-spring) 0.32s forwards;
  opacity: 0;
}

.animate-drop-delay-3 {
  animation: dropFromTop 0.9s var(--ease-spring) 0.46s forwards;
  opacity: 0;
}

@keyframes dropFromTop {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --------------------------------------------------------------------------
   Header / Large White Logo Section
   -------------------------------------------------------------------------- */
.header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 170px;
  height: clamp(110px, 18vh, 170px);
}

#main-logo {
  height: 100%;
  max-height: 165px;
  width: auto;
  max-width: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.45)) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

#main-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 50px rgba(255, 42, 109, 0.4));
}

/* --------------------------------------------------------------------------
   Tickets Section (3 Large Redeemable Columns)
   -------------------------------------------------------------------------- */
.tickets-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3.5vw, 3.5rem);
  width: 100%;
  flex: 1;
  max-height: calc(100vh - 205px);
  max-height: calc(100dvh - 205px);
  padding: 0.2rem 0;
  perspective: 1000px;
  position: relative;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: min(280px, 30vw);
  height: 100%;
  max-height: 480px;
  justify-content: space-between;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Prominent Top Badges (MÁS POPULAR / LIMITADO) */
.top-featured-tag {
  position: absolute;
  top: -16px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 20;
  pointer-events: none;
  white-space: nowrap;
}

.tag-popular {
  background: linear-gradient(135deg, #ff007f 0%, #8e2de2 100%);
  box-shadow: 0 0 18px rgba(255, 0, 127, 0.7), 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: pulseGlowPopular 2.5s infinite alternate ease-in-out;
}

.tag-limited {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 50%, #ff7b00 100%);
  box-shadow: 0 0 18px rgba(255, 75, 43, 0.75), 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: pulseGlowLimited 2.5s infinite alternate ease-in-out;
}

@keyframes pulseGlowPopular {
  0% {
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: translateY(0) scale(1);
  }
  100% {
    box-shadow: 0 0 24px rgba(255, 0, 127, 0.9), 0 0 35px rgba(142, 45, 226, 0.6);
    transform: translateY(-2px) scale(1.04);
  }
}

@keyframes pulseGlowLimited {
  0% {
    box-shadow: 0 0 12px rgba(255, 75, 43, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: translateY(0) scale(1);
  }
  100% {
    box-shadow: 0 0 24px rgba(255, 65, 108, 0.95), 0 0 35px rgba(255, 123, 0, 0.7);
    transform: translateY(-2px) scale(1.04);
  }
}

.ticket-card.popular-card {
  transform: scale(1.02);
}

/* Top dash indicator */
.dash-indicator {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.ticket-card:hover .dash-indicator {
  width: 48px;
  background: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink);
}

.popular-card .dash-indicator {
  background: #ff007f;
  box-shadow: 0 0 8px #ff007f;
}

.limited-card .dash-indicator {
  background: #ff4b2b;
  box-shadow: 0 0 8px #ff4b2b;
}

/* Ticket Link Container */
.ticket-link {
  text-decoration: none;
  display: block;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  position: relative;
}

/* Ticket 3D Tilted Mockup Wrapper */
.ticket-mockup-wrapper {
  position: relative;
  width: 85%;
  height: 88%;
  max-height: 330px;
  border-radius: 12px;
  transform: rotate(-10deg);
  transition: transform 0.45s var(--ease-spring), filter 0.3s ease, box-shadow 0.45s ease;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
}

.ticket-card:hover .ticket-mockup-wrapper {
  transform: rotate(-4deg) translateY(-8px) scale(1.05);
  filter: drop-shadow(0 22px 35px rgba(255, 42, 109, 0.45));
}

.ticket-card.popular-card:hover .ticket-mockup-wrapper {
  filter: drop-shadow(0 22px 35px rgba(157, 78, 221, 0.75));
}

.ticket-card.limited-card:hover .ticket-mockup-wrapper {
  filter: drop-shadow(0 22px 35px rgba(255, 75, 43, 0.75));
}

/* Image Ticket Style */
.ticket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* Sold Out Overlay */
.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.sold-out-stamp {
  border: 3px solid #ff2a6d;
  color: #ff2a6d;
  font-family: var(--font-logo-heading);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  transform: rotate(-15deg);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.5);
  text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
}

.ticket-card.sold-out .sold-out-overlay {
  display: flex;
}

.ticket-card.sold-out .ticket-link {
  cursor: not-allowed;
}

.ticket-card.sold-out .ticket-mockup-wrapper {
  filter: grayscale(0.8) opacity(0.65);
}

.ticket-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 8px;
}

.ticket-card:hover .ticket-glare {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Ticket Info & Labels
   -------------------------------------------------------------------------- */
.ticket-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  text-align: center;
  transition: opacity 0.3s ease;
}

.ticket-badge-pill {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: -0.1rem;
}

.pill-limit {
  background: rgba(255, 65, 108, 0.2);
  border: 1px solid rgba(255, 65, 108, 0.6);
  color: #ff6b8b;
  box-shadow: 0 0 8px rgba(255, 65, 108, 0.3);
}

.pill-popular {
  background: rgba(157, 78, 221, 0.2);
  border: 1px solid rgba(157, 78, 221, 0.6);
  color: #c77dff;
  box-shadow: 0 0 8px rgba(157, 78, 221, 0.3);
}

.pill-vip {
  background: rgba(0, 242, 96, 0.15);
  border: 1px solid rgba(0, 242, 96, 0.5);
  color: #00f260;
  box-shadow: 0 0 8px rgba(0, 242, 96, 0.25);
}

.ticket-label {
  font-family: var(--font-logo-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.highlight-text {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.85em;
  opacity: 0.95;
}

.info-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  outline: none;
}

.info-toggle-btn:hover {
  background: rgba(255, 42, 109, 0.25);
  border-color: var(--accent-pink);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 42, 109, 0.4);
}

.info-toggle-btn.active {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #ffffff;
}

.chevron-icon {
  transition: transform 0.3s var(--ease-spring);
}

.info-toggle-btn.active .chevron-icon {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   Collapsible Description Drawer (No Page Overflow)
   -------------------------------------------------------------------------- */
.ticket-desc-drawer {
  position: absolute;
  bottom: 0;
  left: -8%;
  right: -8%;
  background: rgba(15, 15, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 42, 109, 0.25);
  z-index: 25;
  transition: all 0.35s var(--ease-smooth);
  pointer-events: none;
}

.ticket-desc-drawer.open {
  max-height: 240px;
  opacity: 1;
  padding: 0.95rem;
  pointer-events: auto;
  transform: translateY(-42px);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drawer-highlight-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #d8b4fe;
  background: rgba(157, 78, 221, 0.2);
  border: 1px solid rgba(216, 180, 254, 0.5);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
}

.desc-text {
  font-size: 0.72rem;
  line-height: 1.45;
  color: #e4e4e7;
  text-align: left;
}

.desc-text strong {
  color: #ffffff;
}

.drawer-action-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #8e2de2, #ff007f);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.74rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 42, 109, 0.35);
}

.drawer-action-btn:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   5-Seconds Spotlight Attention Mode (Pulsing Neon Ring around Middle Ticket)
   -------------------------------------------------------------------------- */
/* Oval / Rounded Rectangular Neon Ring around Middle Ticket */
.spotlight-oval-ring {
  position: absolute;
  inset: -14px -14px -14px -14px;
  border-radius: 26px;
  border: 3px solid #ff007f;
  box-shadow: 
    0 0 25px rgba(255, 0, 127, 0.95),
    0 0 55px rgba(142, 45, 226, 0.8),
    inset 0 0 20px rgba(255, 0, 127, 0.4);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-spring);
  animation: ovalRingPulse 2.2s infinite alternate ease-in-out;
  z-index: 22;
}

body.spotlight-active .spotlight-oval-ring {
  opacity: 1;
  transform: scale(1);
}

@keyframes ovalRingPulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.85), 0 0 40px rgba(142, 45, 226, 0.6);
    border-color: #ff007f;
  }
  100% {
    box-shadow: 0 0 35px rgba(255, 0, 127, 1), 0 0 70px rgba(0, 242, 96, 0.7), inset 0 0 25px rgba(255, 0, 127, 0.6);
    border-color: #00f260;
  }
}

/* Middle Ticket Enhanced Illumination */
body.spotlight-active #ticket-card-2 {
  filter: drop-shadow(0 0 30px rgba(255, 0, 127, 0.9));
}

/* --------------------------------------------------------------------------
   Footer Section & Legal Links (Centered, Clean & No Underline)
   -------------------------------------------------------------------------- */
.footer-section {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0 auto;
}

.footer-note {
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.45);
  width: 100%;
  margin: 0 auto;
}

.legal-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-family: var(--font-body);
  text-decoration: none; /* Sin subrayado */
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.02em;
  padding: 0.15rem 0.2rem;
  white-space: nowrap;
  outline: none;
}

.legal-link-btn:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

.legal-divider {
  opacity: 0.35;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Legal Glassmorphic Modal Dialog
   -------------------------------------------------------------------------- */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 7, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.legal-modal-card {
  background: rgba(18, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 42, 109, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s var(--ease-spring);
  overflow: hidden;
}

.legal-modal-overlay.active .legal-modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--accent-pink);
  transform: scale(1.08);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  color: #d4d4d8;
  font-size: 0.82rem;
  line-height: 1.6;
}

.modal-body h3 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.25rem;
}

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

.modal-body p {
  margin-bottom: 0.8rem;
  color: #a1a1aa;
}

.modal-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  color: #a1a1aa;
}

.modal-body li {
  margin-bottom: 0.3rem;
}

.modal-body strong {
  color: #ffffff;
}

.legal-highlight-box {
  background: rgba(255, 42, 109, 0.1);
  border-left: 3px solid var(--accent-pink);
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.modal-footer {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

.modal-action-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-action-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

/* --------------------------------------------------------------------------
   Mobile & Responsive Adaptability (Guaranteed 100vh Without Scroll)
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .page-wrapper {
    padding: 0.4rem 1rem 0.2rem 1rem;
  }

  .logo-wrapper {
    height: clamp(80px, 14vh, 110px);
    max-height: 110px;
  }

  #main-logo {
    max-height: 105px;
  }

  .top-featured-tag {
    font-size: 0.58rem;
    padding: 0.18rem 0.65rem;
    top: -12px;
  }

  .tickets-section {
    gap: 0.75rem;
    max-height: calc(100vh - 145px);
    max-height: calc(100dvh - 145px);
  }

  .ticket-card {
    width: 31%;
    max-height: 380px;
  }

  .ticket-mockup-wrapper {
    width: 90%;
    transform: rotate(-6deg);
  }

  .ticket-desc-drawer {
    left: -15%;
    right: -15%;
  }

  .footer-section {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-legal-links {
    font-size: 0.58rem;
    gap: 0.4rem;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .legal-link-btn {
    font-size: 0.58rem;
    text-decoration: none;
  }
}

@media (max-width: 520px) {
  .logo-wrapper {
    height: clamp(65px, 12vh, 90px);
    max-height: 90px;
  }

  #main-logo {
    max-height: 85px;
  }

  .top-featured-tag {
    font-size: 0.52rem;
    padding: 0.15rem 0.5rem;
    top: -10px;
  }

  .ticket-label {
    font-size: 0.95rem;
  }

  .info-toggle-btn {
    font-size: 0.62rem;
    padding: 0.15rem 0.45rem;
  }

  .ticket-badge-pill {
    font-size: 0.55rem;
  }

  .footer-legal-links {
    font-size: 0.54rem;
    gap: 0.3rem;
  }

  .legal-link-btn {
    font-size: 0.54rem;
  }
}
