body {
  display: flex;
  flex-direction: column;
  background: #121212;
  font-family: 'Inter', sans-serif;
  color: white;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Animation Keyframes */
@keyframes logoFadeInBounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes taglineSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(45, 75, 67, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(45, 75, 67, 0.6), 0 0 20px rgba(45, 75, 67, 0.3);
  }
}

@keyframes lockRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

@keyframes confettiRise {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) rotate(360deg);
  }
}

@keyframes checkmarkDraw {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes inputFocus {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(45, 75, 67, 0.2);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(45, 75, 67, 0.2);
  }
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cardLift {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
}

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

/* Hide mobile sections on desktop */
.mobile-carousel-section,
.bottom-sections {
  display: none;
}

header {
  width: 100%;
  max-width: 100vw;
  padding: 20px 20px 0 20px;
}

header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main logo SVG styling */
.logo-svg {
  height: 40px;
  width: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
  animation: logoFadeInBounce 0.6s ease-out;
}

.logo-svg:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

main {
  display: flex;
  flex-direction: row;
  width: 90%;
  max-width: 1400px;
  gap: 40px;
  margin-top: 5px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  min-width: 0;
}

.content h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.05;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  animation: taglineSlideUp 0.8s ease-out 0.2s both;
}

.content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.4;
  margin-bottom: 0px;
  font-weight: 400;
}

.subtext-line {
  display: inline-block;
  animation: subtextFadeIn 0.5s ease-out both;
  opacity: 0;
}

.event-card-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.carousel {
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: visible;
}

.events-heading {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(45, 75, 67, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0;
  animation: cardFadeInUp 0.8s ease-out 0.8s both;
}

.carousel-arrow:hover {
  background-color: rgba(45, 75, 67, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: -60px;
}

.carousel-arrow-right {
  right: -60px;
}

.event-card {
  background-color: #1C1C1E;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.8;
  animation: cardFadeInUp 0.8s ease-out 0.8s both;
}

.event-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  opacity: 1;
}

.event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.2s ease;
}

.event-card:hover .event-image {
  filter: brightness(1);
}

.time-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #2D4B43;
  padding: 8px 16px;
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  user-select: none;
}

.time-numbers {
  filter: blur(3px);
}

.time-period {
  filter: none;
}

.event-content {
  padding: 20px;
}

.event-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.location-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.location-icon {
  margin-right: 4px;
}

.location {
  color: #666666;
  font-size: 16px;
  user-select: none;
}

.location-text {
  filter: blur(4px);
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 48px;
}

.rsvp-button {
  background-color: #2D4B43;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(45, 75, 67, 0.3);
  animation: buttonPulse 8s ease-in-out infinite;
}

.rsvp-button:active {
  transform: scale(0.95);
}

.rsvp-button .lock-icon {
  transition: transform 0.3s ease;
}

.rsvp-button:active .lock-icon {
  transform: rotate(90deg);
}

.lock-icon {
  flex-shrink: 0;
}

.rsvp-button:hover {
  background-color: #3a5f55;
}

.attendees {
  display: flex;
  min-height: 36px;
  align-items: center;
}

.attendee-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2D4B43;
  border: 2px solid #1C1C1E;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.attendee-avatar-placeholder:first-child {
  margin-left: 0;
}

/* Desktop Carousel Indicators */
.desktop-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
  position: relative;
}

.desktop-indicators .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.desktop-indicators .carousel-dot.active {
  background-color: #2D4B43;
  transform: scale(1.2);
}

.desktop-indicators .carousel-dot:hover {
  background-color: rgba(45, 75, 67, 0.7);
}

.download-app-container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-top: 24px;
  width: fit-content;
  max-width: 100%;
}

.get-app-label {
  color: #999999;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0 0 8px 0;
}

.store-badges {
  display: flex;
  gap: 10px;
  width: fit-content;
  flex-wrap: wrap;
}

.download-app-container a,
.download-app-container .apple-download,
.download-app-container .google-download {
  display: block;
  width: min(215px, 45vw);
  flex-shrink: 0;
}

.download-app-container img,
.download-app-container .apple-download img,
.download-app-container .google-download img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Waitlist Section */
.waitlist-container {
  text-align: left;
  max-width: min(500px, 90vw);
  margin: 8px 0 8px 0;
  width: 100%;
}

.waitlist-heading {
  color: #FFFFFF;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.waitlist-form {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: fit-content;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.waitlist-input {
  background-color: #1a1a1a;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 18px 24px;
  color: #FFFFFF;
  font-size: clamp(16px, 4vw, 18px);
  min-width: min(260px, 60vw);
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.waitlist-input::placeholder {
  color: #999999;
}

.waitlist-input:focus {
  background-color: #2a2a2a;
  box-shadow: none;
  transform: none;
}

.waitlist-button {
  background-color: #2D4B43;
  color: #FFFFFF;
  border: none;
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: clamp(16px, 4vw, 18px);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(45, 75, 67, 0.4);
  flex-shrink: 0;
  box-sizing: border-box;
}

.waitlist-button:active {
  transform: scale(0.95);
}

.waitlist-button:hover {
  background-color: #2D4B43;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 75, 67, 0.5);
}

.waitlist-button:active {
  transform: scale(0.98);
}

/* Input Container */
.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
}

/* Format Hint */
.format-hint {
  font-size: 12px;
  color: #666;
  margin-top: 0;
  margin-left: 0;
  padding: 4px 0 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 100%;
  left: 24px;
  right: 0;
  background-color: transparent;
  text-align: left;
}

.format-hint.show {
  opacity: 1;
}

.format-hint.error {
  color: #ff6b6b;
}

.format-hint.success {
  color: #4CAF50;
}

/* Button with Spinner */
.waitlist-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text {
  transition: opacity 0.2s ease;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

.spinner.show {
  display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Disabled store badges */
.store-badges .disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.store-badges .disabled img {
  filter: grayscale(100%);
}

/* Success Banner */
.success-banner {
  display: none;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(45, 75, 67, 0.1));
  border: 2px solid #4CAF50;
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
  animation: successSlideIn 0.3s ease-out;
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
  max-width: 100%;
}

.success-banner.show {
  display: block;
}

@keyframes successSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-content {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.success-icon {
  width: 48px;
  height: 48px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
  animation: checkPulse 0.6s ease-out 0.2s both;
}

@keyframes checkPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-text h3 {
  margin: 0 0 4px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CAF50;
}

.success-text p {
  margin: 0;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

.success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.add-another-btn {
  background-color: #2D4B43;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

  .add-another-btn:hover {
    background-color: #3a5f56;
    transform: translateY(-1px);
  }

  /* Mobile-specific success banner styling */
  .bottom-sections .success-banner {
    display: none;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(45, 75, 67, 0.1));
    border: 2px solid #4CAF50;
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    animation: successSlideIn 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
    max-width: 100%;
    text-align: center;
  }

  .bottom-sections .success-banner.show {
    display: block;
  }

  .bottom-sections .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .bottom-sections .success-icon {
    width: 48px;
    height: 48px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    animation: checkPulse 0.6s ease-out 0.2s both;
  }

  .bottom-sections .success-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50;
  }

  .bottom-sections .success-text p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
  }

  .bottom-sections .success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .bottom-sections .add-another-btn {
    background-color: #2D4B43;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 200px;
  }

  .bottom-sections .add-another-btn:hover {
    background-color: #3a5f56;
    transform: translateY(-1px);
  }

/* Toast System */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}

.toast {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  min-width: min(320px, calc(100vw - 40px));
  max-width: min(400px, calc(100vw - 40px));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  animation: toastSlideIn 0.3s ease-out;
  backdrop-filter: blur(10px);
}

.toast.removing {
  animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
}

.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.toast-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: #fff;
}

.toast-body {
  color: #ccc;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.toast-action {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.toast-action:hover {
  background: #45a049;
  transform: translateY(-1px);
}

/* Events Near You Section */
.events-near-you {
  width: 90%;
  max-width: 1400px;
  margin: 5px auto 25px auto;
  box-sizing: border-box;
}

.events-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.flame-icon {
  flex-shrink: 0;
}

.events-section-heading {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  margin: 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
  margin-top: 20px;
}

.event-card-small {
  background-color: #1C1C1E;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeInUp 0.6s ease-out forwards;
}

.event-card-small.animate-in {
  animation: cardFadeInUp 0.6s ease-out forwards;
}

.event-card-small:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.event-image-small {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.event-content-small {
  padding: 12px;
}

.event-title-small {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.location-container-small {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.location-icon-small {
  margin-right: 4px;
}

.location-small {
  color: #666666;
  font-size: 13px;
}

.rsvp-button-small {
  background-color: #2D4B43;
  color: #FFFFFF;
  border: none;
  padding: 6px 12px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.rsvp-button-small:hover {
  background-color: #3a5f55;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    padding: 0 16px;
    scroll-behavior: smooth;
  }
  
  main {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
  }
  
  .content {
    width: 100%;
    order: 1;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
  }
  
  .content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    text-align: center;
    margin-bottom: 0;
    padding: 0 20px;
  }
  
  /* Center desktop carousel on smaller screens */
  .event-card-container {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .carousel {
    max-width: 350px;
  }
  
  .carousel-arrow {
    display: none;
  }
  
  /* Hide waitlist and app store from main content on mobile */
  .content .waitlist-container {
    display: none;
  }
  
  .content .download-app-container {
    display: none;
  }
  
  /* Show mobile sections on mobile */
  .mobile-carousel-section {
    display: none;
  }
  
  .bottom-sections {
    display: block;
  }
  
  /* Mobile Carousel Styles */
  .mobile-carousel-section {
    width: 100%;
    padding: 0 16px;
    margin: 32px 0 0 0;
  }
  
  .mobile-carousel-container {
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  
  .mobile-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }
  
  .mobile-event-card {
    background-color: #1C1C1E;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeInUp 0.8s ease-out 0.8s both;
  }
  
  .mobile-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }
  
  .mobile-event-card .event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.2s ease;
  }
  
  .mobile-event-card:hover .event-image {
    filter: brightness(1);
  }
  
  .mobile-event-card .time-chip {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #2D4B43;
    padding: 8px 16px;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
  }
  
  .mobile-event-card .event-content {
    padding: 20px;
  }
  
  .mobile-event-card .event-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
  }
  
  .mobile-event-card .location-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .mobile-event-card .location-icon {
    margin-right: 4px;
  }
  
  .mobile-event-card .location {
    color: #666666;
    font-size: 16px;
    user-select: none;
  }
  
  .mobile-event-card .event-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
  }
  
  .mobile-event-card .attendees {
    display: flex;
    justify-content: center;
  }
  
  .mobile-event-card .attendee-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2D4B43;
    border: 2px solid #1C1C1E;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  .mobile-event-card .attendee-avatar-placeholder:first-child {
    margin-left: 0;
  }
  
  .mobile-event-card .rsvp-button {
    background: linear-gradient(135deg, #2D4B43 0%, #3a5f55 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(45, 75, 67, 0.4);
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-event-card .rsvp-button:hover {
    transform: scale(0.95);
    box-shadow: 0 6px 20px rgba(45, 75, 67, 0.5);
  }
  
  .mobile-event-card .rsvp-button:active {
    transform: scale(0.95);
  }
  
  .mobile-event-card .rsvp-button.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
  }
  
  /* Carousel Indicators */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .carousel-dot.active {
    background-color: #2D4B43;
    transform: scale(1.2);
  }
  
  .carousel-dot:hover {
    background-color: rgba(45, 75, 67, 0.7);
  }
  
  /* Bottom Sections */
  .bottom-sections {
    width: 100%;
    padding: 0 16px;
    margin: 16px 0 20px 0;
  }
  
  .bottom-sections .waitlist-container {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: taglineSlideUp 0.8s ease-out 1.2s both;
  }
  
  
  .bottom-sections .waitlist-form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .bottom-sections .input-container {
    flex: 1;
    margin-bottom: 0;
    position: relative;
  }
  
  .bottom-sections .waitlist-input {
    width: 100%;
    min-width: 0;
    border-radius: 10px 0 0 10px;
    margin-bottom: 0;
    border: none;
    background-color: #1a1a1a;
    color: #FFFFFF;
    font-size: clamp(16px, 4vw, 18px);
    padding: 18px 24px;
    outline: none;
    transition: all 0.2s ease;
  }
  
  .bottom-sections .waitlist-input::placeholder {
    color: #999999;
  }
  
  .bottom-sections .waitlist-input:focus {
    background-color: #2a2a2a;
  }
  
  /* Format hint for mobile waitlist */
  .bottom-sections .format-hint {
    font-size: 12px;
    color: #666;
    margin-top: 0;
    margin-left: 0;
    padding: 4px 0 0 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 0;
    background-color: transparent;
    text-align: left;
    z-index: 10;
  }
  
  .bottom-sections .format-hint.show {
    opacity: 1;
  }
  
  .bottom-sections .format-hint.error {
    color: #ff6b6b;
  }
  
  .bottom-sections .format-hint.success {
    color: #4CAF50;
  }
  
  .bottom-sections .waitlist-button {
    flex: 0 0 40%;
    border-radius: 0 10px 10px 0;
    padding: 18px 24px;
    justify-content: center;
    background: linear-gradient(135deg, #2D4B43 0%, #3a5f55 100%);
    border: none;
    transition: all 0.2s ease;
  }
  
  .bottom-sections .waitlist-button:hover {
    background: linear-gradient(135deg, #3a5f55 0%, #4a6f65 100%);
    transform: translateY(-1px);
  }
  
  .bottom-sections .waitlist-button:active {
    transform: scale(0.98);
  }
  
  
  /* Events Near You Section - Mobile */
  .events-near-you {
    margin: 16px auto 16px auto;
  }
  
  /* Events Grid */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 12px;
  }
  
  /* Center Events Near You heading only */
  .events-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .events-section-heading {
    text-align: center;
  }
  
  /* Toast */
  .toast-container {
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
  }
  
  .toast {
    min-width: 100%;
    max-width: 100%;
  }
  
  /* Scroll animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .carousel-arrow {
    display: none;
  }
  
  .content h1 {
    font-size: 2.5rem;
  }
  
  .event-card-container {
    padding: 0 10px;
  }
  
  body {
    padding: 0 5px;
  }
  
  .desktop-indicators {
    margin-top: 16px;
  }
  
  .desktop-indicators .carousel-dot {
    width: 10px;
    height: 10px;
  }
  
  .content p {
    padding: 0 16px;
  }
  
  .store-badges {
    flex-direction: column; /* Stack vertically on very small screens */
    align-items: center;
  }
  
  .download-app-container a,
  .download-app-container .apple-download,
  .download-app-container .google-download {
    width: 200px; /* Make them larger when stacked */
    max-width: 200px;
  }
}

footer {
  padding-top: 5px;
  margin-top: auto;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.5s both;
}

/* Hide footer divider and coming soon section on desktop */
.footer-divider,
.footer-coming-soon {
  display: none;
}

/* Footer divider and coming soon section - mobile only */
@media (max-width: 768px) {
  .footer-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 8px 0;
  }
  
  .footer-coming-soon {
    display: block;
    margin: 8px 0;
    text-align: center;
  }
  
  .footer-coming-soon-text {
    color: #999999;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0 0 12px 0;
  }
  
  .footer-store-badges {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  
  .footer-store-badges .apple-download,
  .footer-store-badges .google-download {
    width: 120px;
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
  }
  
  .footer-store-badges .apple-download img,
  .footer-store-badges .google-download img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
  }
}

/* Footer Links */
.footer-links {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #333;
  text-decoration: underline;
}

.footer-links span {
  color: #999;
  margin: 0 0.3rem;
  user-select: none;
}

/* Copyright text styling */
.copyright-text {
  color: #999 !important;
  font-size: 0.7rem !important;
  margin-top: 0.5rem !important;
  opacity: 0.8;
}
