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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: #0d0e10;
  color: #ffffff;
  line-height: 1.6;
  overflow: hidden;
}

/* Desktop Layout - No Scroll */
.desktop-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Side - Simplified Hero */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #1a1b1e 0%, #0d0e10 100%);
}

/* Subtle background pattern */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

/* Event Poster */
.event-poster {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 8px 25px rgba(139, 92, 246, 0.3);
  transition: transform 0.3s ease;
}

.event-poster:hover {
  transform: scale(1.02);
}

/* Clean Typography Hierarchy */
.event-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.event-subtitle {
  font-size: 1.1rem;
  color: #8b5cf6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.event-when-where {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.countdown {
  font-size: 1.1rem;
  color: #ff6b6b;
  font-weight: 600;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.credibility-line {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* Right Side - Form */
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 3rem 2rem;
}

.typeform-wrapper {
  width: 100%;
  max-width: 750px;
  /* Let typeform determine height */
  height: auto;
  /* Match Typeform's light background */
  background: #f4f4f5;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.typeform-wrapper [data-tf-live] {
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 16px;
}

/* Footer - Minimal */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1.5rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.8rem;
  background: rgba(13, 14, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(45, 46, 51, 0.3);
  z-index: 10;
}

.footer a {
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #a78bfa;
}

/* Mobile Layout - Allows Scroll */
@media (max-width: 1024px) {
  body {
    overflow: auto;
  }

  .desktop-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 100vh;
  }

  .hero-section {
    min-height: auto;
    padding: 2.5rem 2rem 2rem;
    background: #0d0e10;
  }

  .event-poster {
    width: 220px;
    height: 220px;
    margin-bottom: 1.5rem;
  }

  .event-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }

  .event-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .event-when-where {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .countdown {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1rem;
  }

  .form-section {
    min-height: 60vh;
    padding: 1rem;
  }

  .typeform-wrapper {
    height: 60vh;
    min-height: 500px;
    border-radius: 12px;
    max-width: 100%;
  }

  .typeform-wrapper [data-tf-live] {
    height: 100% !important;
    min-height: 500px !important;
    border-radius: 12px;
  }
}

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

  .event-poster {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }

  .event-title {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
  }

  .event-subtitle {
    font-size: 0.95rem;
  }

  .event-when-where {
    font-size: 0.9rem;
  }

  .countdown {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  .credibility-line {
    font-size: 0.85rem;
  }

  .typeform-wrapper {
    min-height: 450px;
    border-radius: 8px;
  }

  .typeform-wrapper [data-tf-live] {
    min-height: 450px !important;
    border-radius: 8px;
  }

  .footer {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

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

  .event-poster {
    width: 180px;
    height: 180px;
    border-radius: 12px;
  }

  .event-title {
    font-size: 1.7rem;
  }

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

  .event-when-where {
    font-size: 0.85rem;
  }

  .countdown {
    font-size: 0.9rem;
  }
}

/* Focus states */
*:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

/* Smooth animations */
* {
  transition: all 0.2s ease;
}
