﻿:root {
  --space-900: #0a0b16;
  --space-800: #101428;
  --space-700: #1a1f3b;
  --glow-purple: #7a2dff;
  --glow-blue: #1a78ff;
  --glow-pink: #c04bff;
  --gold-1: #f5e3b3;
  --gold-2: #d5b26c;
  --gold-glow: rgba(245, 227, 179, 0.35);
  --text-main: #eef0ff;
  --text-muted: rgba(238, 240, 255, 0.68);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sora", "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--space-900);
  color: var(--text-main);
}

.countdown-bar {
  background: linear-gradient(120deg, rgba(13, 14, 28, 0.95), rgba(20, 14, 30, 0.95));
  border-bottom: 1px solid rgba(213, 178, 108, 0.25);
  position: relative;
  z-index: 5;
}

.main-nav {
  background: rgba(10, 12, 28, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 4;
}

.main-nav .navbar-brand {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-main);
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.main-nav .navbar-brand:hover {
  color: var(--text-main);
}

.main-nav .nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.main-nav .nav-link:hover {
  color: var(--text-main);
}

.main-nav .nav-cta {
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
}

.main-nav .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav .navbar-toggler-icon {
  filter: invert(1);
}

.countdown-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0.25rem;
  justify-content: center;
  text-align: center;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
}

.countdown-date {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  color: var(--gold-1);
  text-shadow: 0 0 12px var(--gold-glow);
}

.countdown-timer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.time-box {
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(213, 178, 108, 0.2);
  border-radius: 16px;
  padding: 0.4rem 0.7rem;
  min-width: 70px;
  box-shadow: 0 10px 20px rgba(8, 10, 24, 0.4);
}

.time-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
}

.time-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  background-image: radial-gradient(circle at 70% 10%, rgba(122, 45, 255, 0.25), transparent 50%),
    radial-gradient(circle at 15% 20%, rgba(26, 120, 255, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(10, 11, 22, 0.95), rgba(16, 20, 40, 0.9) 45%, rgba(11, 12, 27, 0.95) 100%),
    url("img/space-plants.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.8), transparent 40%),
    radial-gradient(1px 1px at 70% 25%, rgba(255, 255, 255, 0.7), transparent 45%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(1px 1px at 10% 85%, rgba(255, 255, 255, 0.7), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10% -20% 0;
  background: radial-gradient(circle at 50% 70%, rgba(122, 45, 255, 0.25), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(26, 120, 255, 0.25), transparent 55%);
  filter: blur(10px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
}

.hero-title span {
  display: block;
  color: rgba(238, 240, 255, 0.75);
  font-weight: 600;
  margin-top: 0.4rem;
}

.hero-mini {
  max-width: 180px;
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-mini img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(8, 10, 24, 0.4), 0 0 20px rgba(122, 45, 255, 0.2);
}

.hero-mini-float {
  animation: spaceImageFloat 6s ease-in-out infinite, spaceGlow 4.5s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-mini {
    top: 64%;
  }
}

@media (max-width: 575px) {
  .hero-mini {
    position: static;
    transform: none;
    margin: 1.2rem auto 0;
  }
}

.hero-kicker {
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
}

.hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 26rem;
  margin-left: auto;
}

.hero-aside {
  max-width: 26rem;
  margin-left: auto;
}

.space-photo-frame {
  position: relative;
  display: inline-block;
  overflow: visible !important;
  z-index: 2;
  max-width: 320px;
  width: 100%;
  margin: 1rem auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.space-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(213, 178, 108, 0.2), rgba(122, 45, 255, 0.2));
  padding: 10px;
  box-shadow: 0 0 40px rgba(77, 131, 255, 0.18), 0 0 25px rgba(213, 178, 108, 0.2);
  animation: spaceImageFloat 6s ease-in-out infinite, spaceGlow 4.5s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.space-photo-frame::before {
  content: none;
}

.space-photo-frame::after {
  content: none;
}

@keyframes spaceImageFloat {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(-2deg);
  }
}

@keyframes spaceCardFloat {
  0% {
    transform: translateY(0px) translateX(0px) rotate(3deg);
  }
  50% {
    transform: translateY(-5px) translateX(2px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(3deg);
  }
}

@keyframes spaceGlow {
  0% {
    box-shadow: 0 0 40px rgba(77, 131, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 60px rgba(140, 90, 255, 0.22);
  }
  100% {
    box-shadow: 0 0 40px rgba(77, 131, 255, 0.18);
  }
}

.hero-actions {
  margin-top: 2.5rem;
}

.btn-ghost {
  color: var(--text-main);
  border: 1px solid rgba(238, 240, 255, 0.4);
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  background: rgba(14, 18, 36, 0.5);
  backdrop-filter: blur(6px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 10px 20px rgba(8, 10, 24, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--text-main);
  border-color: rgba(238, 240, 255, 0.7);
  background: rgba(20, 26, 50, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(8, 10, 24, 0.45), 0 0 18px rgba(213, 178, 108, 0.12);
}

.btn-solid {
  color: #0b0c1b;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(135deg, #fff7e6 0%, var(--gold-1) 55%, #ffffff 100%);
  border: none;
  box-shadow: 0 12px 25px rgba(15, 20, 40, 0.35), 0 0 20px var(--gold-glow);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-solid:hover {
  color: #0b0c1b;
  background: linear-gradient(135deg, #ffffff 0%, #f1ddb4 55%, #fff3dd 100%);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 20, 40, 0.45), 0 0 26px var(--gold-glow);
  filter: saturate(1.05);
}

.about {
  padding: 5rem 0;
  background-image: radial-gradient(circle at 70% 10%, rgba(122, 45, 255, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(10, 11, 22, 0.9) 0%, rgba(11, 15, 35, 0.9) 60%, rgba(10, 11, 22, 0.95) 100%),
    url("img/planeten.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.about-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--gold-1);
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.video-frame {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(213, 178, 108, 0.18), rgba(122, 45, 255, 0.12));
  border: 1px solid rgba(213, 178, 108, 0.2);
  box-shadow: 0 30px 60px rgba(8, 10, 24, 0.5), 0 0 30px rgba(122, 45, 255, 0.2);
}

.video-frame video {
  width: 100%;
  border-radius: 20px;
  display: block;
  background: #0a0b16;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(213, 178, 108, 0.4);
  background: rgba(12, 16, 32, 0.7);
  box-shadow: 0 12px 30px rgba(8, 10, 24, 0.45), 0 0 20px var(--gold-glow);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-play:hover {
  transform: scale(1.05);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold-1);
  margin-left: 4px;
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.hall {
  padding: 5rem 0 6rem;
  background-image: radial-gradient(circle at 30% 20%, rgba(26, 120, 255, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(10, 11, 22, 0.92) 0%, rgba(11, 15, 35, 0.92) 60%, rgba(10, 11, 22, 0.95) 100%),
    url("img/Stars.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  position: relative;
}

.hall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(213, 178, 108, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.4), rgba(8, 10, 24, 0.7));
  pointer-events: none;
  opacity: 0.6;
}

.hall .container {
  position: relative;
  z-index: 1;
}

.hall-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hall-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.6rem;
}

.hall-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0;
  color: var(--gold-1);
}

.hall-carousel {
  border-radius: 28px;
  padding: 1.5rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 30, 0.6);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5);
  position: relative;
  --hall-gap: 1rem;
  --hall-per-view: 4;
  cursor: grab;
  user-select: none;
}

.hall-carousel.is-dragging {
  cursor: grabbing;
}

.hall-viewport {
  overflow: hidden;
}

.hall-track {
  display: flex;
  gap: var(--hall-gap);
  transition: transform 0.5s ease;
}

.hall-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(18, 28, 60, 0.75), rgba(12, 16, 40, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 230px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 calc((100% - (var(--hall-gap) * (var(--hall-per-view) - 1))) / var(--hall-per-view));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.hall-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(213, 178, 108, 0.18), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.hall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(8, 10, 24, 0.55), 0 0 24px rgba(213, 178, 108, 0.12);
}

.hall-year {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hall-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(8, 10, 24, 0.4);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.hall-content {
  position: relative;
  z-index: 1;
}

.hall-card h3 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
  color: var(--gold-1);
}

.hall-card p {
  color: var(--text-muted);
  margin: 0;
}

.hall-card-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hall-carousel .carousel-control-prev,
.hall-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 16, 32, 0.8);
  border: 1px solid rgba(213, 178, 108, 0.3);
  border-radius: 50%;
  opacity: 1;
}

.hall-carousel .carousel-control-prev {
  left: 1rem;
}

.hall-carousel .carousel-control-next {
  right: 1rem;
}

.international {
  padding: 6rem 0 7rem;
  background: radial-gradient(circle at 20% 20%, rgba(122, 45, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(26, 120, 255, 0.22), transparent 50%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 55%, #0a0b16 100%);
  position: relative;
  overflow: hidden;
}

.international::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(213, 178, 108, 0.15), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.international .container {
  position: relative;
  z-index: 1;
}

.intl-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.intl-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  margin-bottom: 1.1rem;
  color: var(--gold-1);
}

.intl-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
}

.intl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 0.6rem;
}

.modal-space .modal-content {
  background: linear-gradient(160deg, rgba(10, 12, 30, 0.95), rgba(8, 10, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(8, 10, 24, 0.6);
  color: var(--text-main);
}

.modal-space .modal-body {
  padding: 2rem;
}

.modal-space .btn-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 5;
  filter: invert(1);
  opacity: 0.8;
}

.modal-space .btn-close:hover {
  opacity: 1;
}

.modal-space h3 {
  color: var(--text-main);
}

.modal-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.modal-text {
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-feedback .modal-content {
  background: #ffffff;
  border: 1px solid rgba(10, 12, 30, 0.12);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(8, 10, 24, 0.25);
  color: #0a0b16;
}

.modal-feedback .btn-close {
  filter: none;
  opacity: 0.7;
}

.modal-feedback .btn-close:hover {
  opacity: 1;
}

.modal-feedback .modal-kicker,
.modal-feedback .modal-text {
  color: #3b3f55;
}

.modal-feedback h3 {
  color: #0a0b16;
}

.modal-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.modal-image {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 45px rgba(8, 10, 24, 0.5);
}

.modal-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(8, 10, 24, 0.5);
}

.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.signup {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 20% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.signup-head {
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.signup-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.signup-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.signup-lead {
  color: var(--text-muted);
}

.signup-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5);
}

.signup .form-label {
  color: var(--text-main);
  font-weight: 500;
}

.signup .form-control {
  background: rgba(8, 10, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}

.signup .form-control::placeholder {
  color: rgba(238, 240, 255, 0.5);
}

.signup .form-control:focus {
  border-color: rgba(213, 178, 108, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(213, 178, 108, 0.15);
}

.signup .form-text {
  color: rgba(238, 240, 255, 0.75) !important;
}

.contact {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 20% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.contact-head {
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.contact-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.contact-lead {
  color: var(--text-muted);
}

.contact-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5);
}

.contact-info {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5);
}

.contact-info h2 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.contact-block p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.contact-block span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.contact .form-label,
.contact .form-control {
  color: var(--text-main);
}

.contact .form-control {
  background: rgba(8, 10, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}

.contact .form-control::placeholder {
  color: rgba(238, 240, 255, 0.5);
}

.contact .form-control:focus {
  border-color: rgba(213, 178, 108, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(213, 178, 108, 0.15);
}

.policy {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 20% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.policy-head {
  max-width: 820px;
  margin: 0 auto 2.8rem;
}

.policy-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.policy-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.policy-lead {
  color: var(--text-muted);
}

.policy-card {
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(12, 16, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5);
  line-height: 1.75;
  color: var(--text-muted);
}

.policy-card h2 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: 1.35rem;
  margin: 2rem 0 0.8rem;
}

.policy-card p {
  margin: 0 0 1rem;
}

.policy-card ul {
  padding-left: 1.2rem;
  margin: 0 0 1.4rem;
}

.policy-card li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.policy-card code {
  color: var(--gold-1);
  background: rgba(213, 178, 108, 0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.partners {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 20% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.partners-head {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.partners-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.partners-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.partners-lead {
  color: var(--text-muted);
}

.partners-group {
  margin-bottom: 3rem;
}

.partners-group h2 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.partner-card {
  padding: 1.2rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(12, 16, 32, 0.08);
  box-shadow: 0 14px 30px rgba(8, 10, 24, 0.2);
  display: grid;
  place-items: center;
  min-height: 120px;
}

.partner-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.partner-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1f3b;
  text-align: center;
  font-size: 0.85rem;
}

.intl-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.intl-card {
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: rgba(15, 20, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(8, 10, 24, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(8, 10, 24, 0.55), 0 0 24px rgba(213, 178, 108, 0.15);
}

.intl-card h3 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
  color: var(--gold-1);
}

.intl-card p {
  margin: 0;
  color: var(--text-muted);
}

.intl-visual {
  position: relative;
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(213, 178, 108, 0.15), rgba(122, 45, 255, 0.15));
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.55), 0 0 30px rgba(122, 45, 255, 0.2);
}

.intl-visual img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  object-position: top;
  max-height: 520px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 30% 10%, rgba(26, 120, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.showcase-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.showcase-inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.showcase-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 2rem;
  color: var(--gold-1);
}

.showcase-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(12, 16, 32, 0.7);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(213, 178, 108, 0.2);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.5), 0 0 30px rgba(122, 45, 255, 0.2);
  width: 100%;
}

.shows {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 25% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.shows-head {
  max-width: 820px;
  margin: 0 auto 2.8rem;
}

.shows-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.shows-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.shows-lead {
  color: var(--text-muted);
}

.shows-list .showcase {
  padding: 3.5rem 0;
  background: none;
}

.shows-list .showcase + .showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shows-video-alt {
  background-image: radial-gradient(circle at 50% 30%, rgba(213, 178, 108, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(12, 16, 32, 0.9), rgba(10, 12, 30, 0.95));
}

.candidates {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 25% 10%, rgba(122, 45, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a0b16 0%, #0b0f23 60%, #0a0b16 100%);
}

.candidates-head {
  max-width: 820px;
  margin: 0 auto 2.8rem;
}

.candidates-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-shadow: 0 0 18px rgba(213, 178, 108, 0.25);
  margin-bottom: 0.8rem;
}

.candidates-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.candidates-lead {
  color: var(--text-muted);
}

.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.candidate-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(12, 16, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(8, 10, 24, 0.45);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.candidate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(8, 10, 24, 0.55), 0 0 22px rgba(213, 178, 108, 0.12);
}

.candidate-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 35px rgba(8, 10, 24, 0.4);
  display: block;
  cursor: pointer;
}

.candidate-photo {
  position: relative;
}

.candidate-photo::after {
  content: "Bekijk";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 10, 24, 0.45);
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.candidate-photo:hover::after {
  opacity: 1;
}

.candidate-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.candidate-info h3 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: 1.1rem;
  margin: 0;
}

.candidates-empty {
  text-align: center;
  color: var(--text-muted);
}

.candidate-cta {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 18, 0.85);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(900px, 90vw);
  max-height: 80vh;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(12, 16, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(8, 10, 24, 0.6);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 16, 32, 0.8);
  color: var(--text-main);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.showcase-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showcase-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(213, 178, 108, 0.4);
  background: rgba(12, 16, 32, 0.75);
  box-shadow: 0 20px 45px rgba(8, 10, 24, 0.5), 0 0 30px rgba(213, 178, 108, 0.25);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.showcase-play:hover {
  transform: scale(1.05);
}

.showcase-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--gold-1);
  margin-left: 4px;
}

.showcase-video.is-playing .showcase-play {
  opacity: 0;
  pointer-events: none;
}

.final-cta {
  padding: 5rem 0 6rem;
  background-image: radial-gradient(circle at 50% 20%, rgba(213, 178, 108, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 22, 0.7) 0%, rgba(8, 10, 24, 0.75) 100%),
    url("img/nebula.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  color: var(--gold-1);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 1rem;
}

.final-cta-inner p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.trust-strip {
  background: rgba(8, 10, 24, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(8, 10, 24, 0.4);
  margin: 2.5rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  padding: 1.1rem 0;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-footer {
  padding: 5rem 0 2.5rem;
  background-image: radial-gradient(circle at 20% 10%, rgba(122, 45, 255, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(10, 11, 22, 0.92) 0%, rgba(8, 10, 24, 0.95) 100%),
    url("img/space-globe.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer-brand {
  max-width: 620px;
}

.footer-newsletter {
  margin-left: auto;
  min-width: 280px;
}

.footer-logo {
  display: inline-block;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-main);
}

.footer-tagline {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.footer-title {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 16, 32, 0.7);
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-form input {
  background: transparent;
  border: none;
  color: var(--text-main);
  outline: none;
  flex: 1;
  padding-left: 0.5rem;
}

.footer-form button {
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5d6 0%, var(--gold-2) 70%, #fff0c6 100%);
  color: #0b0c1b;
}

.footer-note {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-info p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.footer-info span {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--text-main);
  text-decoration: none;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.gdpr-consent {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 360px;
  background: rgba(12, 16, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 45px rgba(8, 10, 24, 0.4);
  color: var(--text-main);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.gdpr-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gdpr-consent a {
  color: var(--gold-1);
  text-decoration: none;
}

.gdpr-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(213, 178, 108, 0.4);
  background: rgba(12, 16, 32, 0.85);
  color: var(--gold-1);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(8, 10, 24, 0.45), 0 0 20px rgba(213, 178, 108, 0.2);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-lead {
    margin-left: 0;
    text-align: left;
  }

  .hero-aside {
    max-width: none;
    margin-left: 0;
  }

  .space-photo-frame {
    max-width: 360px;
  }

  .about {
    padding: 4rem 0;
  }

  .hall {
    padding: 4rem 0 5rem;
  }

  .international {
    padding: 4rem 0 5rem;
  }

  .hall-carousel {
    --hall-per-view: 2;
  }
}

@media (min-width: 1400px) {
  .hero {
    min-height: 85vh;
    padding: 4.5rem 0 4rem;
  }

  .space-photo-frame {
    max-width: 400px;
  }

  .hero-aside {
    max-width: 30rem;
  }
}

@media (min-width: 1700px) {
  .hero {
    min-height: 78vh;
    padding: 4rem 0 3.5rem;
  }

  .space-photo-frame {
    max-width: 460px;
  }
}

@media (min-width: 1920px) {
  .hero {
    min-height: 72vh;
    padding: 3.5rem 0 3rem;
  }

  .space-photo-frame {
    max-width: 520px;
  }
}

@media (min-width: 2560px) {
  .hero {
    min-height: 68vh;
    padding: 3rem 0 2.5rem;
  }

  .space-photo-frame {
    max-width: 600px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-aside {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .space-photo-frame {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hall-carousel {
    padding: 1.5rem;
  }

  .hall-carousel {
    --hall-per-view: 1;
  }

  .footer-newsletter {
    margin-left: 0;
    text-align: left;
  }

  .footer-form {
    justify-content: flex-start;
  }

}

@media (max-width: 980px) {
  .space-photo-frame img {
    animation: spaceImageFloatMobile 8s ease-in-out infinite, spaceGlow 5s ease-in-out infinite;
  }
}

@keyframes spaceImageFloatMobile {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(-1.5deg);
  }
  100% {
    transform: translateY(0px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .space-photo-frame img,
  .space-photo-frame::before {
    animation: none !important;
  }
}

.recaptcha-wrap {
  margin-top: 0.9rem;
}

.footer-form {
  flex-wrap: wrap;
}

.footer-form .recaptcha-wrap {
  width: 100%;
}


.recaptcha-notice {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(238, 240, 255, 0.6);
}
.recaptcha-notice a {
  color: var(--gold-1);
  text-decoration: none;
}
.grecaptcha-badge {
  visibility: hidden !important;
}

