:root {
  --blue: #0052cc;
  --blue-dark: #003d99;
  --blue-darker: #001a66;
  --text: #fff;
}

[data-theme="blue"] {
  --blue: #0052cc;
  --blue-dark: #003d99;
  --blue-darker: #001a66;
  --text: #fff;
}

[data-theme="green"] {
  --blue: #0d7377;
  --blue-dark: #14a085;
  --blue-darker: #041e1f;
  --text: #fff;
}

[data-theme="pink"] {
  --blue: #d63384;
  --blue-dark: #b02a5b;
  --blue-darker: #6d1537;
  --text: #fff;
}

[data-theme="white"] {
  --blue: #ffffff;
  --blue-dark: #f8f9fa;
  --blue-darker: #e9ecef;
  --text: #212529;
}

[data-theme="black"] {
  --blue: #000000;
  --blue-dark: #1a1a1a;
  --blue-darker: #333333;
  --text: #ffffff;
}

[data-theme="purple"] {
  --blue: #6b46c1;
  --blue-dark: #553c9a;
  --blue-darker: #44337a;
  --text: #ffffff;
}

[data-theme="orange"] {
  --blue: #ea580c;
  --blue-dark: #c2410c;
  --blue-darker: #9a3412;
  --text: #ffffff;
}

[data-theme="teal"] {
  --blue: #0d9488;
  --blue-dark: #0f766e;
  --blue-darker: #115e59;
  --text: #ffffff;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-star {
  font-size: 4rem;
  color: var(--text);
  opacity: 0.8;
  animation: spin 4s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

body {
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  background: var(--blue);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
  background-size: 20px 20px;
  background-repeat: repeat;
  animation: grain 8s steps(10) infinite;
}


@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, -10%); }
  90% { transform: translate(-10%, 5%); }
}

.main-screen {
  height: 100vh;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.data-section {
  flex: 1;
  padding: clamp(40px, 12vh, 120px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-height: 100vh;
  box-sizing: border-box;
  position: relative; /* For share button positioning */
}

.intro-text {
  font-size: clamp(20px, 11.5vw, 123px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 0;
  width: 100%;
  display: block;
}

.attendance-large {
  font-size: clamp(40px, min(23vw, 20vh), 245px);
  line-height: 0.9;
  display: inline-block;
}

.comma-small {
  font-size: 0.6em;
  vertical-align: baseline;
}

.intro-faded {
  opacity: 0.7;
}

.intro-highlight {
  color: var(--text);
  opacity: 1;
}

.no-wrap {
  white-space: nowrap;
}


.comparison-section {
  background: var(--blue-dark);
  padding: 80px clamp(20px, 5vw, 40px);
  display: none; /* Hidden but functionality preserved */
}

.comparison-header {
  margin-bottom: 40px;
}

.comparison-intro {
  font-size: clamp(16px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  line-height: 1.0;
  display: block;
  width: 100%;
}

.year-dropdown {
  position: relative;
  display: inline;
}

.year-highlight {
  color: #fff !important;
  opacity: 1 !important;
  display: inline;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  user-select: none;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: inherit !important;
  letter-spacing: inherit !important;
  font-family: inherit !important;
  position: relative;
}

.year-highlight:hover {
  border-bottom: none;
}

.year-highlight:hover::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.year-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.3em);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  min-width: max-content;
}

.year-dropdown-menu .year-option {
  padding: 0.05em 0.2em;
  cursor: pointer !important;
  font-size: 6vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  transition: background-color 0.2s ease;
  color: #fff;
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  white-space: nowrap;
}

.year-dropdown-menu .year-option:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.year-dropdown-menu .year-option.selected {
  background: rgba(255, 255, 255, 0.2) !important;
}

.shows-running-text {
  font-size: clamp(16px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.0;
  margin-top: 0;
  display: block;
  width: 100%;
}




.metadata {
  background: var(--blue-darker);
  padding: 40px clamp(20px, 5vw, 40px);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-left {
  flex: 1;
  display: flex;
  align-items: baseline;
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.waitlist-cta {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.waitlist-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.read-more-cta {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.read-more-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}


.footer-logo {
  display: flex;
  align-items: flex-start;
  padding: 10px 0 30px 20px;
}

.logo-star {
  font-size: 3rem;
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  line-height: 1;
  animation: breathe 4s ease-in-out infinite;
}

.logo-star:hover {
  opacity: 1;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
}

@keyframes happyPop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes happyPopMobile {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.theme-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease;
  z-index: 100;
  animation: fadeUpIn 0.8s ease-out 0.3s forwards;
}

.theme-selector:hover {
  opacity: 1;
}

.theme-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
  position: relative;
}

.theme-option:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.theme-option.active {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.theme-option[data-theme="blue"] {
  background: #0052cc;
}

.theme-option[data-theme="green"] {
  background: #0d7377;
}

.theme-option[data-theme="pink"] {
  background: #d63384;
}

.theme-option[data-theme="white"] {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.3);
}

.theme-option[data-theme="white"]:hover,
.theme-option[data-theme="white"].active {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.theme-option[data-theme="black"] {
  background: #000000;
}

.theme-option[data-theme="purple"] {
  background: #6b46c1;
}

.theme-option[data-theme="orange"] {
  background: #ea580c;
}

.theme-option[data-theme="teal"] {
  background: #0d9488;
}

.shuffle-button {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  padding: 0;
}

.shuffle-button:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.shuffle-button.spinning {
  animation: happyPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.share-button {
  /* Desktop: Hidden completely */
  display: none;
}

.share-button:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.preview-button {
  display: none; /* Hidden for now */
}

.image-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image-preview-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-preview-container img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.preview-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.preview-close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}


.fourth-wall-attribution {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
}

.data-source-tag {
  position: absolute;
  top: 50%;
  right: clamp(20px, 5vw, 40px);
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
}

.fourth-wall-attribution a,
.data-source-tag a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0;
  transition: opacity 0.2s ease;
}

.fourth-wall-attribution a:hover,
.data-source-tag a:hover {
  opacity: 0.8;
}

/* Keep theme toggle styles for functionality */
#theme-toggle {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

@keyframes gifCelebration {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  15% {
    opacity: 1;
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  85% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.celebration-gif-overlay {
  user-select: none;
  will-change: transform, opacity;
}

/* Desktop: Hide mobile READ MORE button */
.read-more-mobile {
  display: none;
}

/* Responsive breakpoints for CTA buttons */
@media (max-width: 480px) {
  /* Mobile: Show mobile READ MORE, hide desktop READ MORE */
  .read-more-mobile {
    display: block;
  }
  
  .read-more-desktop {
    display: none;
  }
  
  /* Mobile: Stack buttons vertically and make them full-width */
  .footer-left {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .waitlist-cta,
  .read-more-mobile {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .metadata {
    flex-direction: column;
    gap: 24px;
    padding: 80px clamp(20px, 5vw, 40px) 60px;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  
  /* Override for waitlist page - center the button within footer-left and move up */
  .waitlist-body .footer-left {
    justify-content: center !important;
  }
  
  .waitlist-body .footer-right {
    display: none !important;
  }
  
  .waitlist-body .metadata {
    padding: 30px clamp(20px, 5vw, 40px) 40px !important;
  }
  
  /* Mobile: Show mobile READ MORE, hide desktop READ MORE */
  .read-more-mobile {
    display: inline-block;
  }
  
  .read-more-desktop {
    display: none;
  }
  
  /* Mobile: Position CTAs side by side under color picker */
  .footer-left {
    justify-content: space-between;
    margin-top: 12px;
    display: flex;
    align-items: center;
  }
  
  .footer-right {
    display: none; /* Hide footer-right on mobile since button moved to footer-left */
  }
  
  .footer-center {
    display: none; /* Hide Fourth Wall attribution on mobile */
  }
  
  .waitlist-cta {
    font-size: 18px;
    padding: 12px 24px;
  }
  
  .read-more-cta {
    font-size: 18px;
    padding: 12px 24px;
  }
  
  
  /* Mobile: Larger touch targets for theme options */
  .theme-option {
    width: 48px;
    height: 48px;
  }
  
  .shuffle-button {
    width: 48px;
    height: 48px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
  }
  
  .shuffle-button.spinning {
    animation: happyPopMobile 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .footer-logo {
    display: none; /* Hide Fourth Wall logo on mobile */
  }
  
  /* Mobile: Show and position share button in footer top-right */
  .share-button {
    display: flex;
    position: absolute;
    top: clamp(20px, 5vw, 40px);
    right: clamp(20px, 5vw, 40px);
    bottom: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* Mobile: Move theme selector to footer top-left */
  .theme-selector {
    position: absolute;
    top: clamp(20px, 5vw, 40px);
    left: clamp(20px, 5vw, 40px);
    bottom: auto;
    right: auto;
    flex-direction: row;
  }
  
  
  /* Mobile: Center attributions */
  .fourth-wall-attribution {
    text-align: center;
    font-size: 0.65rem;
  }
  
  .data-source-tag {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.65rem;
  }
}

.error {
  background: #fff;
  color: var(--blue);
  padding: 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

/* Waitlist Page Styles */
.waitlist-body {
  background: var(--blue) !important;
}

/* Native Form Styles */
.native-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 180px 40px 160px 40px;
}

.form-header {
  text-align: left;
  margin-bottom: 25px;
}

.thank-you-header {
  text-align: center;
}

.form-title {
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 8px;
  color: var(--text);
}

.form-description {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.7;
  line-height: 1.4;
}

.native-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.8;
}

.form-group input,
.form-group select {
  padding: 16px 20px;
  font-size: 16px;
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group select option {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  margin: 10px 0 0 0;
  width: 33.33%;
  display: block;
}

.submit-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-message {
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

.form-message.success {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid rgba(0, 255, 0, 0.3);
  color: #00ff00;
}

.form-message.error {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
}
.waitlist-header {
  margin-bottom: 60px;
  text-align: center;
}

.waitlist-title {
  font-size: clamp(40px, 15vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 30px;
  color: var(--text);
}

.waitlist-description {
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  width: 100%;
  margin: 0;
}

.back-link {
  text-align: center;
}

.back-button {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.back-button:hover {
  opacity: 1;
}

.gif-container {
  display: flex;
  justify-content: center;
  margin: 0 0 30px 0;
}

.gif-wrapper {
  width: 400px;
  height: 224px;
  position: relative;
  background: transparent;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.back-button.primary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.back-button.primary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.back-button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
}

.back-button.secondary:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .waitlist-header {
    margin-bottom: 40px;
  }
  
  .submit-btn {
    width: auto;
    min-width: 200px;
    max-width: 100%;
  }
  
  .waitlist-body .footer-left {
    align-items: stretch !important;
    justify-content: stretch !important;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .waitlist-body .waitlist-cta {
    width: auto;
    min-width: 200px;
    max-width: 100%;
    font-size: 16px;
    padding: 12px 24px;
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
    flex: 1;
  }
}


@media (max-width: 480px) {
  .submit-btn {
    width: 100%;
    min-width: auto;
  }
  
  .waitlist-body .footer-left {
    align-items: stretch !important;
    justify-content: stretch !important;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .waitlist-body .waitlist-cta {
    width: 100%;
    min-width: auto;
    font-size: 16px;
    padding: 12px 24px;
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
    flex: 1;
  }
  
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

