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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff8d9;
  color: #2b1830;
}

.navbar {
  width: 100%;
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 217, 0.9);
  position: fixed;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: #ff4fa3;
  text-decoration: none;
}

.logo span {
  color: #f5b700;
  margin-left: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #2b1830;
  font-weight: 600;
}

nav a.nav-login {
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ff4fa3;
  color: white !important;
  box-shadow: 0 8px 24px rgba(255, 79, 163, 0.3);
}

nav a.nav-login:hover {
  filter: brightness(1.05);
}

nav a.nav-staff {
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffe066;
  color: #2b1830 !important;
}

.hero {
  min-height: 100vh;
  padding: 140px 7% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, #ffd1e8, transparent 35%),
    radial-gradient(circle at 80% 30%, #ffe066, transparent 35%),
    linear-gradient(135deg, #fff8d9, #fff0f8);
}

.badge {
  display: inline-block;
  background: #ff4fa3;
  color: white;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
  color: #5f4568;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: #ff4fa3;
  color: white;
  box-shadow: 0 12px 30px rgba(255, 79, 163, 0.35);
}

.secondary {
  background: #ffe066;
  color: #2b1830;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.ticket {
  width: 320px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(160deg, #ff4fa3, #ffe066);
  box-shadow: 0 30px 80px rgba(255, 79, 163, 0.35);
  color: white;
  transform: rotate(3deg);
}

.ticket .small {
  font-size: 13px;
  opacity: 0.9;
}

.ticket h3 {
  font-size: 34px;
  margin: 10px 0;
}

.qr-box {
  width: 120px;
  height: 120px;
  background: white;
  color: #ff4fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  border-radius: 22px;
  font-weight: 900;
  font-size: 28px;
}

.ticket .ticket-link {
  display: block;
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
  background: white;
  color: #ff4fa3;
  text-align: center;
  text-decoration: none;
}

.section {
  padding: 100px 7%;
  text-align: center;
}

.section-label {
  color: #ff4fa3;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.section-text {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 19px;
  line-height: 1.7;
  color: #5f4568;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.step-card {
  background: white;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(255, 79, 163, 0.12);
}

.step-card {
  text-align: center;
}

.step-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: linear-gradient(145deg, #fff0f8, #fff8d9);
  box-shadow: 0 8px 24px rgba(43, 24, 48, 0.08);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card h3,
.steps h3 {
  color: #ff4fa3;
  font-size: 24px;
  margin-bottom: 12px;
}

.gradient-section {
  background: linear-gradient(135deg, #ff4fa3, #ffe066);
  color: white;
}

.gradient-section > .section-label,
.gradient-section > h2 {
  color: white;
}

.gradient-section .step-card h3 {
  color: #ff4fa3;
}

.gradient-section .step-card p {
  color: #5f4568;
}

.steps span {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  color: #ff4fa3;
  margin-bottom: 12px;
}

.cta {
  padding: 110px 7%;
  text-align: center;
  background: #fff8d9;
}

.cta p {
  font-size: 20px;
  color: #5f4568;
  margin-bottom: 28px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

input {
  width: min(360px, 100%);
  padding: 17px 20px;
  border-radius: 999px;
  border: 2px solid #ffd1e8;
  font-size: 16px;
}

form button {
  border: none;
  padding: 17px 26px;
  border-radius: 999px;
  background: #ff4fa3;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

#formMessage {
  margin-top: 20px;
  color: #ff4fa3;
  font-weight: 800;
}

footer {
  padding: 28px 7%;
  text-align: center;
  background: #2b1830;
  color: white;
}

footer a {
  color: #ffe066;
  text-decoration: none;
  margin: 0 10px;
}

/* Featured party (this week) */
.featured-party {
  background: linear-gradient(180deg, #fff0f8 0%, #fff8d9 100%);
}

.featured-tagline {
  font-size: 1.25rem;
  color: #ff4fa3;
  font-style: italic;
  margin: -0.5rem auto 2rem;
  max-width: 640px;
}

.featured-party-grid {
  display: grid;
  grid-template-columns: 1fr min(320px, 42vw);
  gap: 40px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.featured-party-info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.featured-desc {
  text-align: left;
  margin: 0 0 1.5rem;
}

.featured-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.featured-meta li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 79, 163, 0.15);
  color: #5f4568;
  line-height: 1.5;
}

.featured-meta strong {
  display: block;
  color: #ff4fa3;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

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

.featured-party-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.featured-cover {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 79, 163, 0.2);
  margin: 0;
  flex-shrink: 0;
  aspect-ratio: 9 / 16;
}

.featured-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-film {
  margin-top: auto;
  padding-top: 1.75rem;
  width: 100%;
  max-width: 320px;
}

.featured-film-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff4fa3;
  margin-bottom: 0.75rem;
}

.featured-film .party-film-grid {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.featured-film .party-film-grid--1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 155px;
}

.featured-film .party-film-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-film .party-film-embed,
.featured-film .party-film-native {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(43, 24, 48, 0.15);
  background: #2b1830;
  width: 100%;
  aspect-ratio: 9 / 16;
}

.featured-film .party-film-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.featured-film .party-film-native video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #2b1830;
}

.ticket--featured .ticket-date {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-top: 0.35rem;
}

.ticket-cover {
  margin: 1rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.ticket-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

@media (max-width: 860px) {
  .navbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a:not(.nav-login):not(.nav-staff) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .subtitle {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .featured-party-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-party-info {
    align-items: center;
  }

  .featured-desc,
  .featured-meta {
    text-align: center;
  }

  .featured-actions {
    justify-content: center;
  }

  .featured-film {
    max-width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .featured-party-media {
    order: -1;
  }

  .featured-cover {
    max-width: min(280px, 72vw);
    margin: 0 auto;
  }

  .featured-film .party-film-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket {
    transform: rotate(0);
  }
}
