.wrapper {
  min-height: 100vh;
  background-color: var(--ice-white);
}
.header {
  position: fixed;
  z-index: 10;
  top: 1.625rem;
  left: 0;
  width: 100%;
}
.header__body,
.header__container {
  display: flex;
  justify-content: center;
}
.header__body {
  position: relative;
  z-index: 2;
  padding: 0.75rem 1.5rem;
  align-items: center;
  gap: 2rem;
  border-radius: 7.5rem;
  border: 0.125rem solid var(--arctic-navy);
  background: rgba(244, 248, 251, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.25rem 1rem rgba(11, 28, 45, 0.1);
  min-height: 3.5rem;
}
.header__logo {
  flex-shrink: 0;
  display: none;
}
.header__logo img {
  width: 100%;
  max-width: 5rem;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__social-item {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 0.125rem solid var(--arctic-navy);
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.header__social-item:hover {
  border-color: var(--imperial-red);
  transform: scale(1.05);
}
.header__social-item img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 0.25rem;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.menu__item.logo {
  flex-shrink: 0;
}
.menu__logo-text {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--imperial-red) 0,
    var(--royal-gold) 25%,
    var(--imperial-red) 50%,
    var(--royal-gold) 75%,
    var(--imperial-red) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: neonGlow 3s linear infinite;
  position: relative;
  filter: drop-shadow(0 0 0.5rem rgba(177, 18, 38, 0.5));
}
@keyframes neonGlow {
  0% {
    background-position: 0 50%;
    filter: drop-shadow(0 0 0.5rem rgba(177, 18, 38, 0.5))
      drop-shadow(0 0 1rem rgba(212, 175, 55, 0.3));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 0.75rem rgba(212, 175, 55, 0.6))
      drop-shadow(0 0 1.5rem rgba(177, 18, 38, 0.4));
  }
  to {
    background-position: 0 50%;
    filter: drop-shadow(0 0 0.5rem rgba(177, 18, 38, 0.5))
      drop-shadow(0 0 1rem rgba(212, 175, 55, 0.3));
  }
}
.menu__link {
  position: relative;
  display: inline-flex;
  color: var(--arctic-navy);
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.menu__link:after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--imperial-red);
  transition: width 0.2s ease;
}
.menu__link:hover {
  color: var(--imperial-red);
}
.menu__link:hover:after {
  width: 100%;
}
.header__buy {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  height: 3rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6.25rem;
  border: 0.125rem solid var(--imperial-red);
  background: var(--imperial-red);
  color: var(--pure-white);
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.header__buy:hover {
  background: var(--imperial-red-dark);
  border-color: var(--imperial-red-dark);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(177, 18, 38, 0.3);
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero__bg {
  top: 0;
  left: 0;
  overflow: hidden;
}
.hero__bg,
.hero__video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__video {
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  filter: blur(2px);
}
.hero__bg:before {
  background: var(--arctic-navy);
  opacity: 0.55;
  z-index: 1;
}
.hero__bg:after,
.hero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__bg:after {
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(11, 28, 45, 0.7) 100%
  );
  z-index: 2;
}
.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 90rem;
  padding: 56.25rem 2rem 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__content {
  width: 100%;
  text-align: center;
  position: relative;
}
.hero__logo {
  position: absolute;
  top: -20rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 4;
  animation: logo-descend 3s ease-out forwards;
  opacity: 0;
  pointer-events: none;
}
.hero__logo-image {
  max-width: clamp(12rem, 30vw, 24rem);
  height: auto;
  filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 0, 0, 0.5));
  transition: opacity 0.5s ease;
}
@keyframes logo-descend {
  0% {
    transform: translateX(-50%) translateY(-100vh);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(calc(20rem - 470px));
    opacity: 1;
  }
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.hero__title-line {
  font-family:
    DM Sans,
    sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--ice-gray);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero__title-empire {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--pure-white);
  letter-spacing: 0.05em;
  text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.5);
  line-height: 1;
}
.hero__title-empire,
.hero__title-subtitle {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  text-transform: uppercase;
}
.hero__title-subtitle {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--imperial-red);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.coronation {
  position: relative;
  padding: 8rem 2rem;
  background: var(--arctic-navy);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.03) 0,
      rgba(143, 175, 184, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.03) 0,
      rgba(143, 175, 184, 0.03) 4px
    );
  border-top: 1px solid var(--royal-gold);
  color: var(--pure-white);
}
.coronation__container {
  max-width: 90rem;
  margin: 0 auto;
}
.coronation__content {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}
.coronation__title {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.coronation__title-line {
  display: block;
}
.coronation__text {
  font-family:
    DM Sans,
    sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.coronation__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.coronation__button-wrapper {
  flex-direction: column;
}
.coronation__button,
.coronation__button-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.coronation__button {
  padding: 0.875rem 1.5rem;
  border-radius: 6.25rem;
  border: 0.125rem solid var(--royal-gold);
  background: transparent;
  color: var(--pure-white);
  font-family:
    DM Sans,
    sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.5rem;
}
.coronation__button:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--royal-gold);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(212, 175, 55, 0.2);
}
.coronation__button:active {
  transform: translateY(0);
}
.coronation__button-label {
  color: var(--pure-white);
}
.coronation__button-address {
  color: var(--pure-white);
  font-weight: 700;
}
.coronation__button-copied {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--royal-gold);
  font-weight: 700;
  animation: fadeIn 0.2s ease;
  white-space: nowrap;
  z-index: 10;
}
.kingdom {
  position: relative;
  padding: 6rem 2rem;
  background: var(--frost-blue);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(140, 163, 184, 0.04) 0,
      rgba(140, 163, 184, 0.04) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(140, 163, 184, 0.04) 0,
      rgba(140, 163, 184, 0.04) 4px
    );
  border-top: 1px solid var(--royal-gold);
}
.kingdom__container {
  max-width: 90rem;
  margin: 0 auto;
}
.kingdom__title {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--arctic-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 4rem;
}
.kingdom__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.kingdom__card-image {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 0.5rem;
}
.kingdom__card_3 {
  /* background: var(--pure-white); */
  border: 0.125rem solid var(--frost-blue);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.kingdom__card_3:hover {
  border-color: var(--royal-gold);
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 2rem rgba(11, 28, 45, 0.1);
}
.kingdom__card {
  background: var(--pure-white);
  border: 0.125rem solid var(--frost-blue);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.kingdom__card:hover {
  border-color: var(--royal-gold);
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 2rem rgba(11, 28, 45, 0.1);
}
.kingdom__card-title {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--arctic-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.kingdom__card-text {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ice-gray);
  line-height: 1.6;
}
.join-empire {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(
    180deg,
    var(--arctic-navy) 0,
    var(--deep-polar-blue) 100%
  );
  color: var(--pure-white);
  overflow: hidden;
}
.join-empire__container {
  position: relative;
  z-index: 2;
  max-width: 90rem;
  margin: 0 auto;
}
.join-empire__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.join-empire__title {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
}
.join-empire__subtitle,
.join-empire__title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.join-empire__subtitle {
  font-family:
    DM Sans,
    sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--ice-gray);
  margin-bottom: 0.5rem;
}
.join-empire__text {
  font-family:
    DM Sans,
    sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--pure-white);
  margin-bottom: 2rem;
}
.join-empire__passport-button {
  padding: 1rem 2.5rem;
  border: 0.125rem solid var(--royal-gold);
  background: transparent;
  color: var(--royal-gold);
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: border-glow 2s ease-in-out infinite;
}
.join-empire__passport-button:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--royal-gold);
  border-radius: 0.5rem;
  opacity: 0;
  animation: border-pulse 2s ease-in-out infinite;
}
@keyframes border-glow {
  0%,
  to {
    box-shadow:
      0 0 0.5rem rgba(212, 175, 55, 0.5),
      0 0 1rem rgba(212, 175, 55, 0.3),
      inset 0 0 0.5rem rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow:
      0 0 1rem rgba(212, 175, 55, 0.8),
      0 0 2rem rgba(212, 175, 55, 0.5),
      inset 0 0 1rem rgba(212, 175, 55, 0.4);
  }
}
@keyframes border-pulse {
  0%,
  to {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}
.join-empire__passport-button:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(212, 175, 55, 0.4);
}
.slot-machine {
  max-width: 50rem;
  margin: 3rem auto;
  width: 100%;
}
.slot-machine__score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(11, 28, 45, 0.9),
    rgba(20, 36, 68, 0.9)
  );
  border: 0.25rem solid var(--royal-gold);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(212, 175, 55, 0.3);
}
.slot-machine__hud-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.slot-machine__hud-label {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ice-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.slot-machine__hud-value {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--royal-gold);
  line-height: 1;
}
.slot-machine__hud-value--win {
  color: #10b981;
  animation: win-pulse 0.5s ease-in-out;
}
.slot-machine__score-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.slot-machine__score-label {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ice-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.slot-machine__score-value {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--royal-gold);
  line-height: 1;
}
.slot-machine__win {
  animation: win-pulse 0.5s ease-in-out;
}
.slot-machine__win-text {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--royal-gold);
  text-shadow: 0 0 1rem rgba(212, 175, 55, 0.8);
}
@keyframes win-pulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.slot-machine__combo-message {
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    145deg,
    var(--royal-gold),
    rgba(212, 175, 55, 0.9)
  );
  color: var(--arctic-navy);
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.5rem rgba(212, 175, 55, 0.6);
  animation: combo-appear 0.5s ease-out;
}
@keyframes combo-appear {
  0% {
    opacity: 0;
    transform: translateY(-1rem) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.slot-machine__grid-container {
  position: relative;
  margin-bottom: 2rem;
}
.slot-machine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(11, 28, 45, 0.9),
    rgba(20, 36, 68, 0.9)
  );
  border: 0.375rem solid var(--royal-gold);
  border-radius: 0.75rem;
  box-shadow:
    0 0 0 0.125rem rgba(212, 175, 55, 0.3),
    inset 0 0 2rem rgba(212, 175, 55, 0.1),
    0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}
.slot-machine__paylines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}
.slot-machine__payline {
  stroke-width: 3;
  stroke-linecap: round;
  animation: payline-draw 0.4s ease-out;
}
@keyframes payline-draw {
  0% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.slot-machine__grid.spinning .slot-machine__cell-image {
  animation: slot-spin 0.1s linear infinite;
}
@keyframes slot-spin {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.slot-machine__cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--arctic-navy);
  border: 0.125rem solid var(--royal-gold);
  box-shadow: inset 0 0 1rem rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.slot-machine__cell.dimmed {
  opacity: 0.5;
  filter: brightness(0.7);
}
.slot-machine__cell.winning {
  border: 0.25rem solid var(--royal-gold);
  box-shadow:
    0 0 1rem rgba(212, 175, 55, 0.8),
    0 0 2rem rgba(212, 175, 55, 0.6),
    inset 0 0 1rem rgba(212, 175, 55, 0.3);
  animation: cell-win 0.5s ease-in-out infinite;
  transform: scale(1.05);
}
@keyframes cell-win {
  0%,
  to {
    box-shadow:
      0 0 1rem rgba(212, 175, 55, 0.8),
      0 0 2rem rgba(212, 175, 55, 0.6),
      inset 0 0 1rem rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow:
      0 0 1.5rem #d4af37,
      0 0 3rem rgba(212, 175, 55, 0.8),
      inset 0 0 1.5rem rgba(212, 175, 55, 0.5);
  }
}
.slot-machine__cell-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slot-machine__cell-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.slot-machine__spin-button {
  width: 100%;
  padding: 1.25rem 3rem;
  border: 0.25rem solid var(--royal-gold);
  background: linear-gradient(
    145deg,
    var(--royal-gold),
    rgba(212, 175, 55, 0.8)
  );
  color: var(--arctic-navy);
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 1rem rgba(212, 175, 55, 0.5),
    0 0.25rem 1rem rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.slot-machine__spin-button:hover:not(:disabled) {
  background: linear-gradient(145deg, gold, var(--royal-gold));
  transform: translateY(-0.125rem);
  box-shadow:
    0 0 1.5rem rgba(212, 175, 55, 0.7),
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
}
.slot-machine__spin-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow:
    0 0 0.5rem rgba(212, 175, 55, 0.5),
    inset 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
}
.slot-machine__spin-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.6),
    rgba(212, 175, 55, 0.4)
  );
}
.slot-machine__bet-controls {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(11, 28, 45, 0.9),
    rgba(20, 36, 68, 0.9)
  );
  border: 0.25rem solid var(--royal-gold);
  border-radius: 3rem;
  box-shadow: 0 0 1rem rgba(212, 175, 55, 0.3);
}
.slot-machine__bet-button,
.slot-machine__bet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot-machine__bet-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.125rem solid var(--royal-gold);
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.9),
    rgba(212, 175, 55, 0.7)
  );
  color: var(--arctic-navy);
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.slot-machine__bet-button:hover:not(:disabled) {
  background: linear-gradient(
    145deg,
    var(--royal-gold),
    rgba(212, 175, 55, 0.9)
  );
  transform: scale(1.1);
  box-shadow: 0 0 1rem rgba(212, 175, 55, 0.5);
}
.slot-machine__bet-button:active:not(:disabled) {
  transform: scale(0.95);
}
.slot-machine__bet-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slot-machine__bet-button--minus {
  background: linear-gradient(
    145deg,
    rgba(239, 68, 68, 0.9),
    rgba(239, 68, 68, 0.7)
  );
  border-color: #ef4444;
}
.slot-machine__bet-button--minus:hover:not(:disabled) {
  background: linear-gradient(145deg, #ef4444, rgba(239, 68, 68, 0.9));
  box-shadow: 0 0 1rem rgba(239, 68, 68, 0.5);
}
.slot-machine__bet-button--plus {
  background: linear-gradient(
    145deg,
    rgba(16, 185, 129, 0.9),
    rgba(16, 185, 129, 0.7)
  );
  border-color: #10b981;
}
.slot-machine__bet-button--plus:hover:not(:disabled) {
  background: linear-gradient(145deg, #10b981, rgba(16, 185, 129, 0.9));
  box-shadow: 0 0 1rem rgba(16, 185, 129, 0.5);
}
.slot-machine__bet-display {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--royal-gold);
  min-width: 8rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.join-empire__button {
  padding: 1rem 3rem;
  border: 0.125rem solid var(--imperial-red);
  background: var(--imperial-red);
  color: var(--pure-white);
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.join-empire__button:hover {
  background: var(--imperial-red-dark);
  border-color: var(--imperial-red-dark);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(177, 18, 38, 0.4);
}
.passport-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 45, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.passport-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.passport-modal__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border: 0.125rem solid var(--royal-gold);
  background: rgba(11, 28, 45, 0.9);
  color: var(--royal-gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.passport-modal__close:hover {
  background: var(--royal-gold);
  color: var(--arctic-navy);
  transform: rotate(90deg);
  box-shadow: 0 0 1rem rgba(212, 175, 55, 0.6);
}
.passport-modal__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}
.map {
  position: relative;
  padding: 4rem 2rem;
  background: var(--arctic-navy);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.02) 0,
      rgba(143, 175, 184, 0.02) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.02) 0,
      rgba(143, 175, 184, 0.02) 4px
    );
  border-top: 1px solid var(--royal-gold);
  overflow: hidden;
}
.map__container {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__image {
  width: 100%;
  max-width: 40rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0.9);
  opacity: 0.8;
  transition: all 0.4s ease;
  position: relative;
}
.map__image:hover {
  opacity: 1;
  filter: brightness(1.4) drop-shadow(0 0 0.5rem rgba(255, 235, 59, 0.9))
    drop-shadow(0 0 1rem rgba(255, 235, 59, 0.8))
    drop-shadow(0 0 1.5rem rgba(255, 235, 59, 0.7))
    drop-shadow(0 0 2rem rgba(255, 235, 59, 0.6))
    drop-shadow(0 0 2.5rem rgba(255, 193, 7, 0.5))
    drop-shadow(0 0 3rem rgba(255, 193, 7, 0.4));
  transform: scale(1.03);
}
.footer {
  position: relative;
  padding: 3rem 2rem;
  background: var(--arctic-navy);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.02) 0,
      rgba(143, 175, 184, 0.02) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(143, 175, 184, 0.02) 0,
      rgba(143, 175, 184, 0.02) 4px
    );
  color: var(--pure-white);
  border-top: 1px solid var(--deep-polar-blue);
}
.snow-container {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.snow-container,
.snow-gif {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.snow-gif {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.footer__container {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer__text {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ice-gray);
  text-align: center;
}
.menu-open-bg {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 45, 0.8);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-open .menu-open-bg {
  opacity: 1;
  pointer-events: all;
}
.icon-menu {
  display: none;
  position: relative;
  width: 1.875rem;
  height: 1.125rem;
  z-index: 5;
  background: transparent;
  border: none;
  cursor: pointer;
}
.icon-menu span,
.icon-menu:after,
.icon-menu:before {
  content: "";
  transition: all 0.3s ease;
  right: 0;
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: var(--arctic-navy);
}
.icon-menu:before {
  top: 0;
}
.icon-menu:after {
  bottom: 0;
}
.icon-menu span {
  top: calc(50% - 0.0625rem);
}
.menu-open .icon-menu span {
  width: 0;
}
.menu-open .icon-menu:before {
  top: calc(50% - 0.0625rem);
  transform: rotate(-45deg);
}
.menu-open .icon-menu:after {
  bottom: calc(50% - 0.0625rem);
  transform: rotate(45deg);
}
@media (max-width: 47.99875em) {
  .header__body {
    padding: 0.375rem 1rem 0.375rem 0.5rem;
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3rem;
  }
  .header__logo {
    display: block;
    width: 3rem;
    max-width: 3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: -0.25rem;
  }
  .header__logo:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--arctic-navy);
    z-index: -1;
  }
  .header__logo img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .header__social {
    gap: 0.375rem;
  }
  .header__social-item {
    width: 1.75rem;
    height: 1.75rem;
  }
  .header__social-item img {
    width: 60%;
    height: 60%;
    padding: 0.2rem;
  }
  .header__buy {
    display: none;
  }
  .menu__body {
    position: fixed;
    width: calc(100% - 1.875rem);
    height: auto;
    max-height: 90vh;
    right: -100%;
    top: 7.5rem;
    overflow: auto;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    border-radius: 2.5rem;
    border: 0.125rem solid var(--arctic-navy);
    background: var(--ice-white);
    box-shadow: 0 0.5rem 2rem rgba(11, 28, 45, 0.2);
  }
  .menu-open .menu__body {
    right: 0.9375rem;
  }
  .menu__list {
    display: none;
  }
  .menu__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 0.125rem solid var(--arctic-navy);
  }
  .menu__mobile-logo {
    font-family:
      SnowPlay,
      Cinzel,
      Playfair Display,
      serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(
      90deg,
      var(--imperial-red) 0,
      var(--royal-gold) 25%,
      var(--imperial-red) 50%,
      var(--royal-gold) 75%,
      var(--imperial-red) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: neonGlow 3s linear infinite;
    filter: drop-shadow(0 0 0.5rem rgba(177, 18, 38, 0.5));
  }
  .menu__mobile-close {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 0.125rem solid var(--arctic-navy);
    background: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--arctic-navy);
    padding: 0;
  }
  .menu__mobile-close svg {
    width: 1rem;
    height: 1rem;
  }
  .menu__mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .menu__mobile-title {
    color: var(--arctic-navy);
    font-family:
      DM Sans,
      sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 140%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .icon-menu {
    display: block;
    width: 1.5rem;
    height: 0.875rem;
  }
  .hero__container {
    padding: 40.5rem 1.5rem 12rem;
  }
  .coronation {
    padding: 5rem 1.5rem;
  }
  .join-empire,
  .kingdom {
    padding: 4rem 1.5rem;
  }
  .map {
    padding: 3rem 1.5rem;
  }
  .map__image,
  .slot-machine {
    max-width: 100%;
  }
  .slot-machine {
    margin: 2rem auto;
  }
  .slot-machine__hud,
  .slot-machine__score {
    padding: 0.875rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .slot-machine__score-value {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
  .slot-machine__win-text {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  .slot-machine__combo-message {
    padding: 0.875rem 1rem;
    font-size: clamp(0.875rem, 3vw, 1.25rem);
  }
  .slot-machine__grid {
    gap: 0.75rem;
    padding: 1rem;
  }
  .slot-machine__bet-controls {
    padding: 0.625rem 1rem;
    gap: 1rem;
  }
  .slot-machine__bet-button {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  .slot-machine__bet-display {
    font-size: clamp(1rem, 4vw, 1.25rem);
    min-width: 6rem;
  }
  .slot-machine__spin-button {
    padding: 1rem 2rem;
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  .join-empire__passport-button {
    padding: 0.875rem 2rem;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    margin-bottom: 2rem;
  }
  .passport-modal__close {
    top: -2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .coronation__title {
    font-size: clamp(1.5rem, 8vw, 3.5rem);
    gap: 0.375rem;
  }
  .coronation__text {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    margin-bottom: 2rem;
  }
  .coronation__buttons {
    gap: 1rem;
  }
  .coronation__button {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
  .kingdom__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .prank-button {
    width: 3.5rem;
    height: 3.5rem;
    font-size: clamp(0.4rem, 1vw, 0.6rem);
    border: 0.1rem solid var(--royal-gold);
  }
}
@media (min-width: 47.99875em) {
  .header__logo,
  .menu__mobile-content,
  .menu__mobile-header {
    display: none;
  }
  .menu__list {
    display: flex;
  }
}
.prank-button {
  width: 5rem;
  height: 5rem;
  padding: 0;
  background: linear-gradient(
    145deg,
    var(--imperial-red),
    rgba(177, 18, 38, 0.8)
  );
  color: var(--pure-white);
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50%;
  border: 0.15rem solid var(--royal-gold);
  cursor: pointer;
  box-shadow:
    0 0 0.5rem rgba(212, 175, 55, 0.5),
    0 0.25rem 0.75rem rgba(177, 18, 38, 0.4);
  transition: all 0.2s ease;
  pointer-events: all;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  animation: prank-button-float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}
.prank-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow:
    0 0 0.75rem rgba(212, 175, 55, 0.7),
    0 0.375rem 1rem rgba(177, 18, 38, 0.6);
}
@keyframes prank-button-float {
  0%,
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(2deg);
  }
}
.prank-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 45, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.prank-modal__content {
  background: linear-gradient(
    145deg,
    rgba(177, 18, 38, 0.9),
    rgba(177, 18, 38, 0.7)
  );
  border: 0.5rem solid var(--royal-gold);
  border-radius: 1rem;
  padding: 3rem 4rem;
  text-align: center;
  box-shadow:
    0 0 2rem rgba(212, 175, 55, 0.8),
    0 1rem 3rem rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.3s ease;
}
.prank-modal__title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--pure-white);
  margin-bottom: 2rem;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
}
.prank-modal__button,
.prank-modal__title {
  font-family:
    SnowPlay,
    Cinzel,
    Playfair Display,
    serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.prank-modal__button {
  padding: 1rem 3rem;
  background: var(--royal-gold);
  color: var(--arctic-navy);
  font-size: clamp(1.25rem, 3vw, 2rem);
  border: 0.25rem solid var(--pure-white);
  border-radius: 3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}
.prank-modal__button:hover {
  background: gold;
  transform: scale(1.05);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.4);
}
.prank-modal__button:active {
  transform: scale(0.95);
}
.prank-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.prank-overlay--white {
  background: var(--pure-white);
}
.prank-overlay--black {
  background: #000;
}
.prank-video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.1s linear;
  overflow: hidden;
}
.prank-video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}
@font-face {
  font-family: SnowPlay;
  src: url(/SnowPlayPersonaluse-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --ice-white: #f4f8fb;
  --frost-blue: #dceaf4;
  --arctic-navy: #0b1c2d;
  --deep-polar-blue: #142c44;
  --imperial-red: #b11226;
  --imperial-red-dark: #8f0f1f;
  --royal-gold: #d4af37;
  --ice-gray: #8fa3b8;
  --pure-white: #fff;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body,
html {
  max-width: 100vw;
  overflow-x: hidden;
  font-family:
    DM Sans,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  background-color: var(--ice-white);
  color: var(--arctic-navy);
}
a {
  color: inherit;
  text-decoration: none;
}
