/* mybulleye.com — design tokens from Figma */
:root {
  --black: #010101;
  --white: #f9f9f9;
  --violet: #b16de2;
  --blue-3: #09022e;
  --purple: #8f00d2;
  --teal: #004153;
  --glass: rgba(255, 255, 255, 0.3);
  --glass-strong: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);
  --pill-bg: rgba(249, 249, 249, 0.25);
  --gradient-violet: linear-gradient(180deg, #8f00d2 0%, #004153 100%);
  --gradient-btn: linear-gradient(
    -7.74deg,
    rgb(205, 16, 19) 1.19%,
    rgb(255, 0, 4) 1.5%,
    rgb(37, 0, 255) 94.46%
  );
  --font:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --container: min(1200px, calc(100% - clamp(32px, 8.33vw, 240px)));
  --section-pad-y: clamp(40px, 5.56vw, 80px);
  --section-pad-x: clamp(16px, 8.33vw, 120px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: normal;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Typography */
.text-bold {
  font-weight: 700;
}
.text-regular {
  font-weight: 400;
}
.text-light {
  font-weight: 300;
}
.text-medium {
  font-weight: 500;
}
.uppercase {
  text-transform: uppercase;
}

/* Buttons */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 80px;
  border: 1px solid var(--white);
  border-radius: 30px;
  background: var(--gradient-btn);
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.btn-gradient:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
.btn-gradient:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--white);
  border-radius: 33px;
  background: var(--pill-bg);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border: 1px solid var(--violet);
  border-radius: 33px;
  background: var(--pill-bg);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.78vw, 40px);
  padding: 10px 40px;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  background: var(--glass-strong);
  box-shadow: inset 0 4px 3px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.site-nav a:hover {
  opacity: 0.8;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
}

.mobile-header .logo-footer {
  height: 10px;
  width: 77px;
}

.burger-btn {
  width: 40px;
  height: 40px;
  padding: 0;
}
.burger-btn img {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  padding: 24px 16px;
  background: rgba(1, 1, 1, 0.97);
  backdrop-filter: blur(12px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

/* Hero */
.hero {
  position: relative;
  min-height: 630px;
  height: 630px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
  pointer-events: none;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 103.12%;
  height: 100%;
  left: -1.56%;
  object-fit: cover;
  opacity: 0.6;
}

.hero .site-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 40px clamp(16px, 8.33vw, 120px) 80px;
  box-sizing: border-box;
}

.hero__logo {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 57px;
  width: 100%;
  height: clamp(91px, 12.36vw, 178px);
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 40px;
  width: min(616px, calc(100% - 240px));
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 16px;
  font-weight: 400;
}

.hero__text p {
  margin: 0;
  line-height: normal;
}

.hero__cta {
  align-self: flex-start;
}

.hero__bottom {
  position: static;
}

.hero__aside {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 40px;
  width: 211px;
}

.hero__badge {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--glass-strong);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.hero__disclaimer {
  font-size: 16px;
  font-weight: 400;
}

.hero__disclaimer p {
  margin: 0;
  line-height: normal;
}

.hero__disclaimer-gap {
  line-height: normal;
}

.hero__alien {
  position: absolute;
  z-index: 2;
  left: calc(50% + clamp(80px, 14.76vw, 212.5px));
  bottom: 0;
  width: clamp(180px, 20.07vw, 289px);
  height: clamp(315px, 35.14vw, 506px);
  transform: translateX(-50%);
  filter: drop-shadow(27px -2px 4px rgba(255, 255, 255, 0.25));
  pointer-events: none;
}

.hero__alien img {
  width: 152.88%;
  height: 108.17%;
  margin-left: -25.86%;
  margin-top: -8.17%;
  max-width: none;
}

/* Energy section */
.energy {
  position: relative;
  background: var(--black);
  min-height: clamp(600px, 54.1vw, 779px);
  overflow: visible;
}

.energy__curve {
  height: clamp(400px, 37.43vw, 539px);
  background: var(--gradient-violet);
  border-bottom-left-radius: clamp(150px, 20.83vw, 300px);
  width: 100%;
}

.energy__content {
  position: absolute;
  top: clamp(40px, 5.56vw, 80px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  display: flex;
  gap: 30px;
  align-items: center;
  z-index: 2;
}

.energy__visual {
  position: relative;
  flex: 0 0 clamp(260px, 35.97vw, 518px);
  width: clamp(260px, 35.97vw, 518px);
  height: clamp(275px, 38.26vw, 551px);
  overflow: hidden;
  flex-shrink: 0;
}

.energy__portrait {
  position: absolute;
  left: 50%;
  top: calc(50% + 2.5px);
  transform: translate(-50%, -50%) rotate(180deg) scaleY(-1);
  width: clamp(150px, 15.14vw, 218px);
  height: clamp(216px, 21.88vw, 315px);
  z-index: 2;
  overflow: hidden;
}

.energy__portrait img {
  width: 133.91%;
  height: 114.71%;
  margin-left: -14.57%;
  margin-top: -12.55%;
  max-width: none;
}

.energy__trails {
  position: absolute;
  left: calc(50% - 0.16px);
  top: calc(50% + 0.73px);
  transform: translate(-50%, -50%) rotate(76.46deg);
  width: clamp(280px, 31.71vw, 456.627px);
  height: clamp(297px, 33.66vw, 484.746px);
  border-radius: 200px;
  overflow: hidden;
  z-index: 1;
}

.energy__trails img {
  width: 106.16%;
  height: 100%;
  margin-left: -6.16%;
  max-width: none;
}

.energy__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.info-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--glass);
}

.info-card--tall {
  min-height: clamp(141px, 19.24vw, 277px);
  overflow: hidden;
}

.info-card__title {
  font-size: clamp(20px, 1.67vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.info-card__title-mobile {
  display: none;
}

.info-card__text {
  font-size: 16px;
  font-weight: 400;
}

.energy__planet {
  position: absolute;
  left: 64.375%;
  top: clamp(300px, 32.15vw, 463px);
  width: clamp(161px, 29.24vw, 421px);
  height: auto;
  pointer-events: none;
}

/* Teaser */
.teaser {
  background: var(--black);
  padding: var(--section-pad-y) var(--section-pad-x);
  text-align: center;
  position: relative;
}

.teaser__heading {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  max-width: 888px;
  margin: 0 auto 20px;
}

.teaser__sub {
  font-size: 16px;
  max-width: 888px;
  margin: 0 auto 30px;
}

.teaser__media-wrap {
  position: relative;
  max-width: 986px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 986 / 508;
  overflow: hidden;
}

.teaser__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  display: block;
}

.teaser__media-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.teaser__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 1, 1, 0.92);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  height: min(100vh - 32px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 32px);
  object-fit: contain;
  background: var(--black);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(1, 1, 1, 0.6);
}

body.modal-open {
  overflow: hidden;
}

/* Games */
.games {
  background: var(--gradient-violet);
  padding: var(--section-pad-y) var(--section-pad-x);
  overflow-x: hidden;
}

.games__header {
  text-align: center;
  margin-bottom: 30px;
}

.games__title {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.games__intro {
  font-size: 16px;
  margin-bottom: 20px;
}

.games__bonus {
  display: inline-flex;
  align-items: center;
  padding: 10px 40px;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 4px 3px rgba(0, 0, 0, 0.25);
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.game-card {
  padding: 30px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-strong);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.game-card .btn-gradient {
  max-width: 368px;
  align-self: center;
}

.game-card__preview {
  width: 100%;
  aspect-ratio: 525 / 330;
  border-radius: 16px;
  overflow: hidden;
}

.game-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
}

.game-card__desc {
  font-size: 14px;
  font-weight: 400;
  align-self: flex-start;
}

.game-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-self: flex-start;
  width: 100%;
}

.game-stats__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-stats__label {
  font-size: 16px;
  font-weight: 700;
}

.game-divider {
  width: 100%;
  height: 0.5px;
  background: var(--white);
}

.game-section__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-section__text {
  font-size: 14px;
}

.rules-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.rules-header img {
  width: 20px;
  height: 20px;
  transform: rotate(180deg) scaleY(-1);
}

.rules-header span {
  font-size: 20px;
  font-weight: 700;
}

.rules-list {
  font-size: 14px;
}

.rules-list li {
  list-style: disc;
  margin-left: 21px;
  margin-bottom: 6px;
}

/* Slot machine */
.slot-machine {
  width: 100%;
  max-width: 100%;
  padding: 20px clamp(20px, 4.86vw, 70px);
  border-radius: 16px;
  background: var(--gradient-violet);
  overflow: hidden;
  box-sizing: border-box;
}

.slot-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.slot-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.slot-cell {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  aspect-ratio: 1;
  max-width: 68px;
  overflow: hidden;
  position: relative;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-cell--alien {
  background: var(--blue-3);
}

.slot-cell__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition:
    transform 0.1s,
    filter 0.1s;
}

.slot-cell--alien .slot-cell__img {
  width: 70%;
  height: 70%;
  max-width: 48px;
  max-height: 48px;
}

.slot-cell.spinning .slot-cell__img {
  animation: slotBlur 0.08s linear infinite;
}

@keyframes slotBlur {
  0% {
    filter: blur(0);
    transform: translateY(0);
  }
  50% {
    filter: blur(2px);
    transform: translateY(-4px);
  }
  100% {
    filter: blur(0);
    transform: translateY(0);
  }
}

.slot-row--payline .slot-cell {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.slot-win {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffd700;
  min-height: 20px;
  margin-top: 8px;
}

.game-card__fine {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
}

.game-currency-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.game-currency-bar span {
  padding: 8px 16px;
  border-radius: 33px;
  background: var(--pill-bg);
  border: 1px solid var(--white);
}

/* Council */
.council {
  background: var(--black);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.council__header {
  text-align: center;
  margin-bottom: 30px;
}

.council__title {
  font-size: clamp(24px, 1.94vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.council__intro {
  font-size: 16px;
  max-width: 885px;
  margin: 0 auto;
}

.council__layout {
  display: grid;
  grid-template-columns: minmax(280px, 575px) 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
@media (max-width: 1200px) {
  .council__layout {
    grid-template-columns: 1fr;
  }
}

.council__team {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.council__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.member-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--gradient-violet);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-card__photo {
  width: 100%;
  aspect-ratio: 237.5 / 120;
  border-radius: 4px;
  overflow: hidden;
}

.member-card__photo img {
  width: 100%;
  height: 147.78%;
  object-fit: cover;
  object-position: center top;
}

.member-card__name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.member-card__role {
  font-size: 14px;
  font-weight: 700;
}

.member-card__bio {
  font-size: 14px;
  font-weight: 400;
}

.council__story {
  padding: 40px;
  border-radius: 12px;
  background: var(--gradient-violet);
  font-size: 16px;
}

.council__story p {
  margin-bottom: 1em;
}
.council__story p:last-child {
  margin-bottom: 0;
}

.history {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  background: var(--gradient-violet);
}

.history__title {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.history__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.history__body {
  font-size: 16px;
}
.history__body p {
  margin-bottom: 1em;
}
.history__body p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq {
  position: relative;
  background: var(--black);
  padding: var(--section-pad-y) var(--section-pad-x);
  min-height: 559px;
  overflow: hidden;
}

.faq__curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 559px;
  background: var(--gradient-violet);
  border-bottom-left-radius: clamp(300px, 41.67vw, 600px);
  transform: scaleY(-1);
  pointer-events: none;
}

.faq__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 30px;
}

.faq__title {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq__subtitle {
  font-size: 16px;
}

.faq__alien {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: clamp(200px, 27.15vw, 391px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 20.14vw, 290px);
}
.faq__col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item {
  padding: 20px;
  border-radius: 12px;
  background: var(--glass);
}

.faq-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-item__question {
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  flex: 1;
}

.faq-item__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.collapsed .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item.collapsed .faq-item__answer {
  display: none;
}

.faq-item__answer {
  font-size: 16px;
}
.faq-item__answer p {
  margin-bottom: 0.5em;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--black);
  padding: 40px var(--section-pad-x);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.site-footer__top {
  display: flex;
  gap: clamp(30px, 5.56vw, 80px);
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
}

.site-footer__brand {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.site-footer__logo {
  height: 10px;
  width: 77px;
}

.site-footer__disclaimer-title {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

.site-footer__disclaimer-text {
  font-size: 14px;
  max-width: 280px;
}

.site-footer__links-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 143px;
}

.site-footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__company {
  font-size: 14px;
}

.site-footer__divider {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: var(--pill-bg);
}

.site-footer__responsible {
  font-size: 16px;
  text-align: center;
}

.site-footer__helplines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.site-footer__helplines a {
  font-size: 16px;
  color: var(--violet);
  text-decoration: underline;
}

.site-footer__note {
  font-size: 14px;
  text-align: center;
  max-width: 1200px;
}

.site-footer__copy {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

/* Policy pages */
.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.policy-page__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px var(--section-pad-x) 40px;
  width: 100%;
}

.policy-page .site-nav {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.policy-card {
  width: min(1200px, 100%);
  padding: 40px;
  border-radius: 12px;
  background: var(--gradient-violet);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.policy-card__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 211px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--glass-strong);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
}

.policy-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  color: var(--white);
}

.policy-card__title {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.policy-card__body {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  word-break: break-word;
}

.policy-card__body p,
.policy-card__body li {
  margin: 0;
  line-height: normal;
}

.policy-card__body ul {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
}

.policy-card__body a {
  color: var(--white);
  text-decoration: underline;
}

.policy-gap {
  margin: 0;
  line-height: normal;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 20px var(--section-pad-x);
  background: rgba(1, 1, 1, 0.95);
  border-top: 1px solid var(--glass-border);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .btn-gradient {
  padding: 12px 32px;
  font-size: 14px;
}

.cookie-banner .btn-outline {
  padding: 12px 32px;
  border: 1px solid var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

/* Win overlay */
.win-flash {
  animation: winPulse 0.6s ease 3;
}

@keyframes winPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(255, 215, 0, 0.6);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  body {
    padding-top: 60px;
  }
  .hero {
    position: relative;
    min-height: 714px;
    height: auto;
    padding: 0;
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    min-height: 714px;
    height: auto;
    padding: 20px 16px 0;
  }

  .hero .site-nav {
    display: none;
  }

  .hero__bg {
    z-index: 0;
    overflow: hidden;
  }

  .hero__bg img {
    inset: auto;
    top: -0.05%;
    left: -166.55%;
    right: auto;
    bottom: auto;
    width: 345.35%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0.4;
  }

  .hero__logo,
  .hero__content,
  .hero__bottom {
    position: relative;
    z-index: 1;
  }

  .hero__logo {
    top: auto;
    height: 91px;
  }

  .hero__logo img {
    object-position: center center;
  }

  .hero__content {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    gap: 22px;
    text-align: center;
    align-items: center;
    padding: 0;
  }

  .hero__title {
    font-size: 32px;
    width: 100%;
  }

  .hero__text {
    width: 100%;
    text-align: center;
  }

  .hero__cta {
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    max-width: 500px;
    align-self: center;
  }

  .hero__bottom {
    display: grid;
    grid-template-columns: 1.15fr 2.11fr;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(16px, 10.7vw, 46px);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: auto;
  }

  .hero__aside {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 211px;
  }

  .hero__alien {
    position: relative;
    left: auto;
    align-self: end;
    transform: none;
    flex-shrink: 0;
    aspect-ratio: 115 / 202;
    display: block;
    width: 100%;
    height: auto;
  }

  .hero__alien img {
    width: 152.88%;
    height: 108.17%;
    margin-left: -25.86%;
    margin-top: -8.17%;
  }

  .energy {
    min-height: 851px;
    padding-bottom: 40px;
  }

  .energy__curve {
    height: 811px;
    border-bottom-left-radius: 300px;
  }

  .energy__content {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: calc(100% - 32px);
    max-width: 398px;
    margin: 0;
    padding-bottom: 0;
  }

  .energy__cards {
    order: 0;
    width: 100%;
    gap: 10px;
  }

  .energy__visual {
    order: 1;
    flex: none;
    width: 346px;
    max-width: 100%;
    height: 275px;
    margin: 0;
  }

  .energy__portrait {
    width: 150px;
    height: 187px;
    left: calc(50% + 10px);
    top: calc(50% + 6px);
  }

  .energy__trails {
    width: 341.733px;
    height: 329.469px;
    left: calc(50% + 9.87px);
    top: calc(50% - 8.77px);
  }

  .energy__planet {
    left: auto;
    right: 16px;
    top: 467px;
    bottom: auto;
    width: 161px;
  }

  .info-card--tall {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .info-card__title {
    font-size: 20px;
    white-space: normal;
  }

  .info-card__title-desktop {
    display: none;
  }

  .info-card__title-mobile {
    display: inline;
  }

  .games__grid {
    grid-template-columns: 1fr;
  }

  .council__row {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq__alien {
    position: relative;
    transform: none;
    left: auto;
    margin: 0 auto;
    bottom: -55px;
  }
  .site-footer__top {
    flex-direction: column;
  }
  .site-footer__brand {
    width: 100%;
  }
  .site-footer__links-col {
    min-height: auto;
    gap: 20px;
  }
  .site-footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 1025px) {
  .slot-grid {
    gap: 20px;
    align-items: center;
  }

  .slot-row {
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .slot-cell {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    max-width: 68px;
  }
}

@media (max-width: 768px) {
  .slot-machine {
    padding: 20px;
  }

  .btn-gradient {
    padding: 16px clamp(24px, 10vw, 80px);
    white-space: normal;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-card {
    padding: 20px;
  }

  .game-card .btn-gradient {
    width: 100%;
    max-width: 100%;
  }

  .badge-pill {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    font-size: 14px;
  }

  .slot-cell {
    max-width: none;
  }

  .slot-row {
    gap: clamp(6px, 3.125vw, 10px);
  }

  .game-stats {
    flex-direction: column;
  }

  .policy-page__main {
    padding: 0 16px 40px;
    gap: 40px;
  }

  .policy-card {
    padding: 20px;
  }

  .policy-card__back {
    width: auto;
  }

  .policy-page .site-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .games__bonus {
    width: 100%;
    padding: 10px 20px;
  }
  .member-card__photo img {
    height: 120%;
  }
}
