@font-face {
  font-family: "Bebas Neue Rounded";
  src:
    url("assets/fonts/BebasNeueRounded-Regular.woff2") format("woff2"),
    url("assets/fonts/BebasNeueRounded-Regular.woff") format("woff");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070707;
  --ink: #fffaf0;
  --muted: rgba(255, 250, 240, 0.72);
  --line: rgba(255, 250, 240, 0.18);
  --aqua: #30dfcb;
  --orange: #ff7444;
  --blue: #2f89ff;
  --panel: rgba(12, 13, 13, 0.76);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.88)),
    url("assets/images/leko-party-pattern.png") center top / 760px auto repeat,
    var(--bg);
  color: var(--ink);
  font-family:
    Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 32px;
  background: #050505;
}

.hero__media,
.hero__pattern,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  opacity: 0.64;
}

.hero__pattern {
  z-index: -2;
  background:
    linear-gradient(rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.62)),
    url("assets/images/leko-party-pattern.png") center / 860px auto repeat;
  mix-blend-mode: screen;
  opacity: 0.24;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.2) 58%, rgba(5, 5, 5, 0.74)),
    linear-gradient(0deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0.12) 54%);
}

.hero__content {
  width: min(1040px, 100%);
  padding: 0 0 34px;
}

.brand-line {
  margin: 0 0 22px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.party-logo {
  width: min(760px, 100%);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.48));
}

.event-line {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Bebas Neue Rounded", Impact, sans-serif;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.36;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button--call {
  background: var(--orange);
  color: #080808;
  box-shadow: 0 18px 42px rgba(255, 116, 68, 0.34);
}

.button--site {
  background: var(--aqua);
  color: #071110;
  box-shadow: 0 18px 42px rgba(48, 223, 203, 0.24);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(48, 223, 203, 0.34);
  background: #070b0b;
  color: var(--aqua);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "Bebas Neue Rounded", Impact, sans-serif;
  font-size: 29px;
  line-height: 1;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 13px 0;
  animation: ticker-loop 18s linear infinite;
}

.ticker span {
  padding-left: 32px;
}

.details {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.story,
.contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(48, 223, 203, 0.08), rgba(255, 116, 68, 0.08)),
    var(--panel);
  padding: 34px;
  backdrop-filter: blur(10px);
}

.label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Bebas Neue Rounded", Impact, sans-serif;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story p,
.contact p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  padding: 0 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-list span:last-child {
  color: var(--aqua);
}

.reels {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.reels__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.reels__head h2 {
  margin-bottom: 0;
}

.reels__head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.final {
  position: relative;
  padding: 68px 24px 76px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.92)),
    url("assets/images/leko-party-pattern.png") center / 680px auto repeat;
}

.final .party-logo {
  width: min(520px, 90vw);
  margin: 0 auto 24px;
}

.final p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.36;
}

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

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .details,
  .reel-grid {
    grid-template-columns: 1fr;
  }

  .reels__head {
    align-items: start;
    flex-direction: column;
  }

  .reel {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 86svh;
    padding: 22px;
  }

  .hero__media video {
    object-position: 50% 44%;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0.08) 62%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.16));
  }

  .brand-line {
    font-size: 12px;
  }

  .event-line {
    font-size: 40px;
  }

  .intro {
    font-size: 18px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .ticker {
    font-size: 24px;
  }

  .details,
  .reels {
    width: min(100% - 28px, 680px);
    padding-block: 42px;
  }

  .story,
  .contact {
    padding: 24px;
  }

  h2 {
    font-size: 44px;
  }

  .story p,
  .contact p,
  .final p {
    font-size: 18px;
  }
}
