:root {
  --font-display: "Bungee", system-ui, sans-serif;
  --glow-pink: rgba(255, 59, 141, 0.45);
  --glow-blue: rgba(0, 229, 255, 0.35);
  --glow-gold: rgba(255, 176, 31, 0.4);
  --shadow-deep: 0 30px 60px rgba(6, 3, 15, 0.65);
  --shadow-card: 0 18px 40px rgba(6, 3, 15, 0.35);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  background: var(--color-background);
  color: var(--color-text);
}

.site-shell {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 59, 141, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.18), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 176, 31, 0.16), transparent 40%),
    var(--color-background);
  min-height: 100vh;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 4, 12, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, #ff3b8d, #ffb01f);
  color: var(--color-primaryContrast);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-card);
}

.brand-text {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, #ff3b8d, #ffb01f);
  color: #1a0f16;
  box-shadow: 0 14px 30px rgba(255, 59, 141, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 80%;
  background: radial-gradient(circle at 20% 20%, var(--glow-pink), transparent 45%),
    radial-gradient(circle at 70% 30%, var(--glow-blue), transparent 40%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe7f2;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2.2rem + 2vw, 4.2rem);
  margin: 16px 0 12px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero-sub {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.hero-badges {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.badge-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-media {
  position: relative;
  padding: 16px;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.hero-float {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #140b1a;
  padding: 10px 16px;
  border-radius: 16px;
  display: grid;
  gap: 4px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  animation: floatChip 6s ease-in-out infinite;
}

.hero-float.alt {
  bottom: auto;
  top: 20px;
  right: 24px;
  left: auto;
  background: rgba(0, 229, 255, 0.9);
}

.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.about-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 22px;
  position: relative;
}

.checklist li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffb01f;
}

.about-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  min-height: 230px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(6, 3, 15, 0.5);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.fb-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 24px;
}

.fb-post {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 10px;
}

.fb-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.fb-link {
  color: #ffb01f;
  text-decoration: none;
  font-weight: 600;
}

.fb-media {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fb-media-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.fb-media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fb-media-card figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.host-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.host-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.host-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-list a,
.contact-card a {
  color: #ffb01f;
  text-decoration: none;
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 4, 12, 0.85);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.header-row {
  gap: 16px;
}

.nav {
  flex: 1;
  justify-content: center;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch select {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch select:hover,
.lang-switch select:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
  outline: none;
}

.lang-switch select option {
  color: #111;
}

.site-header .btn-primary {
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .header-row {
    flex-wrap: wrap;
  }
  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  .lang-switch {
    order: 2;
  }
  .site-header .btn-primary {
    order: 4;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .lang-switch {
    width: 100%;
  }
  .lang-switch select {
    width: 100%;
  }
  .event-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-footer .btn {
    width: auto;
  }
}
