@font-face {
  font-family: "LT Amber";
  src: url("../fonts/LTAmber.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber";
  src: url("../fonts/LTAmber2.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "LT Amber", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

body:not(.is-loaded) {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 500ms ease, visibility 500ms ease;
}

body.is-loaded .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: min(220px, 54vw);
  height: auto;
  animation: logo-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

.loader-orbit {
  position: absolute;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  animation: loader-spin 7s linear infinite;
}

.loader-orbit span {
  --angle: calc(var(--i) * 45deg);
  --radius: min(158px, 34vw);
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: clamp(0.9rem, 2.6vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--radius) * -1))
    rotate(calc(var(--angle) * -1));
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.background-video,
.video-texture {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background-video {
  object-fit: cover;
  z-index: -2;
  filter: grayscale(1);
}

.video-texture {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.72) 1px, transparent 1.5px) 0 0 / 4px 4px,
    rgba(0, 0, 0, 0.28);
}

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: clamp(36px, 7vh, 72px) 20px 32px;
  overflow: hidden;
}

.landing::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: min(34vh, 260px);
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #000 88%);
}

.landing > :not(.featured-person) {
  position: relative;
  z-index: 2;
}

.featured-person {
  position: absolute;
  bottom: 12px;
  z-index: 1;
  width: min(52vw, 680px);
  max-height: 92vh;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.featured-person-left {
  left: -36px;
  transform: translateX(-18%);
}

.featured-person-right {
  right: -20px;
  transform: translateX(12%);
}

.logo {
  width: min(240px, 52vw);
  height: auto;
  display: block;
  animation: logo-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.2deg);
  }
}

.event-info {
  width: min(100%, 720px);
  display: grid;
  gap: 8px;
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.38),
    0 0 18px rgba(0, 0, 0, 0.8);
}

.event-info p {
  margin: 0;
}

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

.event-date {
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.event-location {
  font-size: clamp(0.95rem, 1.9vw, 1.25rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.event-location {
  margin-top: 8px;
  font-size: clamp(0.82rem, 1.55vw, 1.05rem);
  line-height: 1.35;
  letter-spacing: 0.24em;
}

.event-location:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.open-modal {
  margin-top: 2px;
  min-width: 180px;
  padding-inline: 24px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: button-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36);
}

.open-modal:hover {
  animation-play-state: paused;
}

@keyframes button-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36);
  }

  50% {
    transform: scale(1.045);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.info-button {
  position: relative;
  min-height: 38px;
  margin-top: 4px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(to right, #00a5d6 90%, rgba(0, 0, 0, 0.3) 90%);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: default;
  backdrop-filter: blur(4px);
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.info-button:hover {
  background:
    linear-gradient(to right, #00a5d6 90%, rgba(0, 0, 0, 0.3) 90%);
  transform: none;
}

.countdown {
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-12px);
}

.countdown-item {
  display: grid;
  gap: 3px;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
}

.countdown-item strong {
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.countdown-item span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sponsors {
  width: min(100%, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  margin-top: 0;
  padding-top: 4px;
}

.sponsors img {
  width: 88px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal-panel {
  position: relative;
  width: min(100%, 1000px);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 34px;
  min-width: 0;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-close:hover {
  background: #111;
}

.laylo-embed {
  width: 100%;
  padding: 50px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.laylo-embed iframe {
  display: block;
  width: 1px;
  min-width: 100%;
  max-width: 1000px;
<<<<<<< HEAD
  height: 190px !important;
  min-height: 190px;
=======
  height: 190px;
  min-height: 240px;
>>>>>>> 63ae950f71be01e7ad9b981f3a57f32165757cb2
  border: 0;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 12px 20px;
  background: #fff;
  color: #000;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

button:hover {
  background: #e9e9e9;
  transform: translateY(-1px);
}

button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .background-video {
    inset: auto;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 521px) and (max-width: 1024px) {
  .featured-person-left {
    width: min(43vw, 430px);
  }

  .featured-person-right {
    width: min(52vw, 520px);
  }
}

@media (max-width: 520px) {
  .landing {
    min-height: 100svh;
    gap: 16px;
    padding: 28px 16px 22px;
  }

  .logo {
    width: min(180px, 56vw);
  }

  .featured-person {
    bottom: 36px;
    width: min(66vw, 300px);
    max-height: 46vh;
    opacity: 0.95;
  }

  .featured-person-left {
    left: -22px;
    transform: translateX(-26%);
  }

  .featured-person-right {
    right: -20px;
    transform: translateX(28%);
  }

  .event-info {
    width: min(100%, 360px);
    gap: 8px;
  }

  .event-date {
    font-size: 0.95rem;
    letter-spacing: 0.24em;
  }

  .event-location {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .info-button {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .open-modal {
    min-width: 210px;
    min-height: 44px;
    padding: 12px 20px;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .sponsors {
    position: relative;
    z-index: 2;
    order: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px 10px;
    width: min(100%, 280px);
    margin-top: 0;
    padding-top: 6px;
  }

  .sponsors img {
    width: 100%;
    height: 20px;
  }

  .countdown {
    width: min(100%, 230px);
    gap: 4px;
    margin-top: auto;
    margin-bottom: 0;
    transform: translateY(0);
  }

  .countdown-item {
    padding: 5px 3px;
  }

  .countdown-item strong {
    font-size: 1rem;
  }

  .countdown-item span {
    font-size: 0.46rem;
    letter-spacing: 0.08em;
  }

  .laylo-embed {
    padding: 48px 10px 12px;
  }

  .laylo-embed iframe {
    height: 210px !important;
    min-height: 210px;
  }
}

@media (max-width: 520px) and (max-height: 599px) {
  .landing {
    gap: 10px;
    padding-top: 18px;
  }

  .logo {
    width: min(145px, 48vw);
    margin-top: -6px;
  }

  .event-info {
    gap: 5px;
    margin-top: -6px;
  }

  .event-date {
    font-size: 0.82rem;
  }

  .event-location {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .info-button {
    min-height: 32px;
    margin-top: -2px;
    padding: 7px 13px;
    font-size: 0.66rem;
  }

  .open-modal {
    min-width: 190px;
    min-height: 40px;
    margin-top: -2px;
    padding: 10px 18px;
    font-size: 0.88rem;
  }
}
