:root {
  --color-gold: #DBB42A;
  --color-gold-dark: #B78311;
  --color-gold-light: #FFDB76;
  --color-bg: #000A1E;
  --color-text: #FFFFFF;
  --font-title: 'Philosopher', Georgia, serif;
  --font-text: 'Rajdhani', system-ui, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg) url('/assets/img/poster.jpg') center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 10, 30, 0.65), rgba(0, 10, 30, 0.35) 40%, rgba(0, 10, 30, 0) 70%),
    linear-gradient(to top, var(--color-bg), rgba(0, 10, 30, 0.4) 60%, rgba(0, 10, 30, 0.2));
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px 160px;
  text-align: center;
}

.hero__logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0px -1px 0px #FFF4D2) drop-shadow(0px 6px 30px rgba(0, 0, 0, 0.7));
}

.hero__title {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  border: 1px solid var(--color-gold);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: scale(1.05);
  background: rgba(219, 180, 42, 0.15);
  border-color: var(--color-gold-light);
  outline: none;
}

.hero__cta-icon {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero__stores {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

.hero__store-icon {
  height: 40px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

@media (max-width: 850px) {
  .hero__inner {
    gap: 22px;
    padding: 30px 16px 130px;
  }

  .hero__logo {
    width: 170px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero__cta-icon {
    height: 20px;
  }

  .hero__stores {
    bottom: 25px;
    gap: 25px;
  }

  .hero__store-icon {
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__cta {
    transition: none;
  }

  .hero__cta:hover,
  .hero__cta:focus-visible {
    transform: none;
  }
}
