/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Bounded';
  src: url('assets/Bounded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold-start: #d6aa66;
  --gold-end: #91603c;
  --gold-text: #d0a462;
  --gold-light: #f8e6a2;
  --gold-mid: #ccae78;
  --dark-bg: #000000;
  --dark-card: #050505;
  --text-white: #ffffff;
  --text-muted: #5b5b5b;
  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Bounded', 'Trebuchet MS', sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.4;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
  background: linear-gradient(75deg, var(--gold-start) 0%, var(--gold-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  color: var(--gold-mid);
}

.light-text {
  -webkit-text-fill-color: #eee;
}

.uppercase {
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(88deg, #FFF 0.37%, #D1D1D1 99.38%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214, 170, 102, 0.3);
  border-color: #F8E6A2;
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(81deg, var(--gold-start) 0%, var(--gold-end) 100%);
  color: #000;
  font-size: 24px;
  padding: 16px 50px;
  height: 64px;
}

.btn--hero {
  font-size: 24px;
  padding: 16px 40px;
  width: 259px;
}

.btn--footer {
  width: 317px;
  font-size: 25px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-wordmark {
  width: 122px;
  height: 27px;
  flex-shrink: 0;
  display: block;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header__logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header__logo-line {
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
}

.header__logo-line--gold {
  color: #D0A462;
}

.header__divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
}

.header__nav {
  display: flex;
  gap: 32px;
  margin-left: 16px;
}

.header__link {
  font-size: 18px;
  color: var(--text-white);
  transition: color 0.3s;
}

.header__link:hover {
  color: var(--gold-text);
}

.header__cta-btn {
  margin-left: auto;
  background: linear-gradient(96deg, #d8ab69 0%, #ca9a5b 46%, #9b673f 100%);
  color: #000;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 12px;
  border: 1px solid rgba(246, 226, 181, 0.62);
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.header__cta-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(96deg, #ffffff 0%, #ececec 100%);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.22);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #d0a462;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.95);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.header__mobile-menu.is-open {
  max-height: 320px;
  padding: 12px 20px 20px;
}

.header__mobile-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.header__mobile-link:hover {
  color: #d0a462;
}

.header__mobile-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 40px;
  border-radius: 12px;
  border: 1px solid rgba(246, 226, 181, 0.62);
  background: linear-gradient(96deg, #d8ab69 0%, #ca9a5b 46%, #9b673f 100%);
  color: #000;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.hero__hands {
  position: absolute;
  left: 20%;
  top: -15%;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  
}

.hero__content {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 75px;
  line-height: 0.9;
  max-width: 587px;
  margin-bottom: 46px;
}

.hero__title .gold-text {
  color: var(--gold-mid);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__tg-btn {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.hero__tg-btn:hover {
  transform: scale(1.05);
}

.hero__tg-btn img {
  width: 64px;
  height: 64px;
}

.hero__ingame {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.hero__ingame-arrow {
  width: 22px;
  height: auto;
}

.hero__ingame-info {
  display: flex;
  flex-direction: column;
}

.hero__ingame-count {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.hero__ingame-label {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2.25px;
  color: var(--gold-text);
  text-transform: uppercase;
}

.hero__socials {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__social-link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.hero__social-link:hover {
  opacity: 0.7;
}

/* ============================================
   FREE TO PLAY
   ============================================ */
.free-to-play {
  padding: 60px 0 20px;
  position: relative;
}

.free-to-play__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.free-to-play__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.free-to-play__desc {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 20px;
  max-width: 597px;
  line-height: 1.2;
}

.free-to-play__divider {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.free-to-play__divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(191, 149, 63, 0.3) 15%, rgba(191, 149, 63, 0.45) 50%, rgba(191, 149, 63, 0.3) 85%, transparent 100%);
}

.free-to-play__divider-arrow {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(191, 149, 63, 0.5);
  background: #0a0a0a;
  display: grid;
  place-items: center;
  color: #bf953f;
}

.free-to-play__divider-arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #bf953f;
  border-bottom: 1.5px solid #bf953f;
  transform: rotate(45deg);
  margin-top: -2px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 40px 0 30px;
}

.features__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature__icon {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature__text {
  font-size: 18px;
  line-height: 1.2;
}

.features__line {
  margin-top: 40px;
}

.features__line img {
  width: 100%;
  height: 2px;
  object-fit: cover;
}

/* ============================================
   QUALITY GRAPHICS
   ============================================ */
.quality-section {
  padding: 80px 0;
}

.quality-section__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.quality-section__visual {
  position: relative;
  flex: 0 0 460px;
  min-height: 550px;
}

.quality-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(214, 170, 102, 0.25), transparent 70%);
  pointer-events: none;
}

.quality-section__phone-wrap {
  position: relative;
  z-index: 2;
}

.quality-section__phone {
  width: 460px;
  height: auto;
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.quality-section__screen {
  position: absolute;
  top: 10px;
  left: 90px;
  width: 205px;
  height: auto;
  z-index: 3;
}

.quality-section__play-btn {
  position: absolute;
  top: 5px;
  left: 145px;
  width: 175px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  z-index: 2;
}

.quality-section__coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.quality-section__coin {
  position: absolute;
  width: 100px;
}

.quality-section__coin--1 {
  top: 0;
  left: -20px;
  width: 100px;
  transform: rotate(-24deg);
}

.quality-section__coin--2 {
  bottom: 30px;
  right: -40px;
  width: 120px;
}

.quality-section__coin--3 {
  bottom: 60px;
  right: -60px;
  width: 80px;
  transform: rotate(-37deg);
}

.quality-section__text {
  flex: 1;
}

.quality-section__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}

.quality-section__desc {
  font-size: 18px;
  line-height: 1.4;
  max-width: 571px;
}

/* ============================================
   CLASSIC GAMES
   ============================================ */
.classic-games {
  padding: 28px 0 64px;
}

.classic-games__block {
  position: relative;
  width: 100%;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 0 30px rgba(191, 149, 63, 0.35),
    0 0 60px rgba(191, 149, 63, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.classic-games__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(191, 149, 63, 0.45) 0%, rgba(140, 100, 30, 0.2) 30%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(170, 130, 50, 0.4) 0%, rgba(140, 100, 30, 0.15) 40%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(170, 130, 50, 0.4) 0%, rgba(140, 100, 30, 0.15) 40%, transparent 70%),
    radial-gradient(ellipse 90% 30% at 50% 100%, rgba(160, 120, 40, 0.25) 0%, transparent 60%);
  border: 1px solid rgba(191, 149, 63, 0.3);
  border-radius: 16px;
}

.classic-games__char {
  position: absolute;
  z-index: 2;
}

.classic-games__char--left {
  left: -30px;
  bottom: -30px;
  width: 350px;
}

.classic-games__char--left img {
  width: 100%;
}

.classic-games__char--right {
  right: -20px;
  bottom: -125px;
  width: 340px;
}

.classic-games__char--right img {
  width: 100%;
  border-radius: 25px;
}

.classic-games__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 680px;
  padding: 28px 24px;
}

.classic-games__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.classic-games__desc {
  font-size: 18px;
  line-height: 1.45;
  max-width: 505px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* ============================================
   NON-NFT CARDS
   ============================================ */
.nft-cards {
  padding: 80px 0;
}

.nft-cards__inner {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(520px, 620px);
  align-items: center;
  gap: 28px;
}

.nft-cards__text {
  max-width: 470px;
  position: relative;
  z-index: 5;
}

.nft-cards__title {
  font-family: var(--font-heading);
  font-size: clamp(110px, 10.5vw, 150px);
  line-height: 0.86;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nft-cards__title-white {
  color: white;
}

.nft-cards__title-gradient {
  background: linear-gradient(74deg, #ebbf7b 5%, var(--gold-end) 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nft-cards__desc {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 18px;
  max-width: 442px;
  color: #dadada;
}

.nft-cards__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #000;
  padding: 16px 24px;
  border-radius: 15px;
  max-width: 420px;
}

.nft-cards__arrow {
  width: 22px;
  flex-shrink: 0;
}

.nft-cards__cta-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0.6px;
  color: #d7bc82;
  text-transform: uppercase;
}

.nft-cards__visual {
  position: relative;
  min-height: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nft-cards__character {
  position: relative;
  width: 330px;
  z-index: 2;
}

.nft-cards__char-bg {
  width: 100%;
  height: 535px;
  border-radius: 30px;
  background: linear-gradient(180deg, #9d6a43 4%, #3f2c25 52%, #171311 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.nft-cards__char-img {
  position: absolute;
  top: 22px;
  width: 356px;
  height: auto;
}

.nft-cards__items {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.nft-cards__item {
  position: relative;
  width: 98px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.nft-cards__item-card {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 1px solid;
}

.nft-cards__item-img {
  position: absolute;
  width: 92%;
  height: auto;
}

.nft-cards__item--hat {
  position: absolute;
  top: 72px;
  right: 182px;
  transform: rotate(-24deg);
}

.nft-cards__item--gun {
  position: absolute;
  top: 188px;
  right: 150px;
  transform: rotate(12deg);
}

.nft-cards__item--cloak {
  position: absolute;
  top: 84px;
  right: 52px;
  transform: rotate(-17deg);
}

.nft-cards__item--vest {
  position: absolute;
  top: 286px;
  right: 164px;
  transform: rotate(-24deg);
}

.nft-cards__item--helmet {
  position: absolute;
  top: 250px;
  right: 40px;
  transform: rotate(20deg);
}

.nft-cards__item--pickaxe {
  position: absolute;
  top: 430px;
  right: 108px;
  transform: rotate(-28deg);
}

.nft-cards__item--glasses {
  position: absolute;
  top: 384px;
  right: 12px;
  transform: rotate(-2deg);
}

.nft-cards__safe-img {
  position: absolute;
  bottom: 0;
  right: 28px;
  width: 325px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

/* ============================================
   COIN SECTION
   ============================================ */
.coin-section {
  padding: 80px 0;
}

.coin-section__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.coin-section__cards {
  position: relative;
  flex: 0 0 450px;
  height: 520px;
}

.coin-section__card {
  position: absolute;
  width: 260px;
  height: auto;
  border-radius: 16px;
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(214, 170, 102, 0.35))
    drop-shadow(0 0 52px rgba(145, 96, 60, 0.28));
  transition: transform 0.4s ease, filter 0.35s ease;
}

.coin-section__card--1 {
  top: 60px;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.coin-section__card--2 {
  top: 20px;
  left: 160px;
  transform: rotate(6deg);
  z-index: 2;
}

.coin-section__card--1:hover {
  transform: rotate(-4deg) translateY(-8px);
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 34px rgba(240, 196, 120, 0.45))
    drop-shadow(0 0 60px rgba(145, 96, 60, 0.35));
}

.coin-section__card--2:hover {
  transform: rotate(2deg) translateY(-8px);
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 34px rgba(240, 196, 120, 0.45))
    drop-shadow(0 0 60px rgba(145, 96, 60, 0.35));
}

.coin-section__text {
  flex: 1;
}

.coin-section__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}

.coin-section__desc {
  font-size: 18px;
  line-height: 1.4;
  max-width: 470px;
}

.coin-section__desc p {
  margin-bottom: 16px;
}

/* ============================================
   DR. HARTLAND
   ============================================ */
.hartland {
  padding: 60px 0 80px;
}

.hartland__inner {
  position: relative;
  text-align: center;
}

.hartland__title {
  font-family: var(--font-heading);
  font-size: 220px;
  line-height: 0.85;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: -80px;
}

.hartland__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 800px;
}

.hartland__card-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 1;
  opacity: 0.4;
}

.hartland__map {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 72%);
  z-index: 2;
  opacity: 0.62;
  pointer-events: none;
}

.hartland__professor {
  position: relative;
  z-index: 3;
  width: 708px;
  height: auto;
  margin-top: 20px;
}

.hartland__shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 578px;
  z-index: 2;
}

.hartland__coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.hartland__coin {
  position: absolute;
  width: 100px;
}

.hartland__coin--1 {
  top: 0;
  left: 15%;
  width: 100px;
  transform: rotate(-24deg);
}

.hartland__coin--2 {
  bottom: 100px;
  left: 5%;
  width: 170px;
  transform: rotate(-49deg);
}

.hartland__coin--3 {
  top: 200px;
  right: 8%;
  width: 120px;
  transform: rotate(37deg);
}

.hartland__coin--4 {
  bottom: 80px;
  right: 5%;
  width: 170px;
  transform: rotate(24deg);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  padding: 40px 0 80px;
}

.story__block {
  position: relative;
  min-height: 557px;
  padding: 50px 60px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 0 30px rgba(191, 149, 63, 0.3),
    0 0 60px rgba(191, 149, 63, 0.12),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.story__block-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000;
  background-image:
    radial-gradient(ellipse 70% 20% at 50% 0%, rgba(160, 120, 40, 0.3) 0%, rgba(130, 90, 25, 0.12) 40%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(160, 120, 40, 0.35) 0%, rgba(130, 90, 25, 0.12) 40%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(160, 120, 40, 0.35) 0%, rgba(130, 90, 25, 0.12) 40%, transparent 70%),
    radial-gradient(ellipse 80% 25% at 50% 100%, rgba(150, 110, 35, 0.2) 0%, transparent 60%);
  border: 1px solid rgba(160, 120, 40, 0.25);
  border-radius: 16px;
}

.story__columns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.story__col {
  flex: 1;
}

.story__col-title {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--gold-text);
  text-transform: none;
  margin-bottom: 16px;
  white-space: nowrap;
  line-height: 1.2;
}

.story__col-text {
  font-size: 18px;
  line-height: 1.4;
}

.story__bottom-text {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.4;
}

/* ============================================
   WHEEL OF FORTUNE
   ============================================ */
.wheel-section {
  padding: 60px 0;
}

.wheel-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.wheel-section__inner--reverse {
  flex-direction: row-reverse;
}

.wheel-section__text {
  flex: 0 0 400px;
}

.wheel-section__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}

.wheel-section__desc {
  font-size: 18px;
  line-height: 1.4;
}

.wheel-section__visual {
  position: relative;
  flex: 1;
  min-height: 700px;
}

.wheel-section__wheel {
  position: relative;
  width: 570px;
  height: auto;
  z-index: 2;
}

.wheel-section__character {
  position: absolute;
  right: 0;
  bottom: 0px;
  height: auto;
  z-index: 3;
}

.wheel-section__coins-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 4;
}

.wheel-section__coin-stack {
  width: 108px;
}

.wheel-section__coin-single {
  width: 80px;
  margin-top: -20px;
  margin-left: -30px;
  transform: rotate(-37deg);
}

.wheel-section__rock {
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 600px;
  z-index: 1;
  transform: scaleY(-1);
}

/* Wheel section 2 */
.wheel-section--2 .wheel-section__visual-2 {
  position: relative;
  flex: 0 0 535px;
  width: 535px;
  height: 300px;
  border-radius: 30px;
  overflow: visible;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.wheel-section--2 .wheel-section__visual-bg {
  position: absolute;
  border-radius: 30px;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, var(--gold-light) 13%, var(--gold-end) 41%, #25201c 96%);
}

.wheel-section--2 .wheel-section__char-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 60px 0;
}

.partners__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partners__item {
  background: var(--dark-card);
  height: 102px;
  border-radius: 4px;
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  padding: 80px 0;
}

.roadmap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.roadmap__title {
  font-family: var(--font-accent);
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
}

.roadmap__arrows {
  display: flex;
  gap: 16px;
}

.roadmap__arrow {
  --btn-bg: #101114;
  --icon-color: rgba(255, 255, 255, 0.38);
  border: 1px solid transparent;
  cursor: pointer;
  width: 100px;
  height: 38px;
  border-radius: 10px;
  background: var(--btn-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.roadmap__arrow--next {
  --btn-bg: #cf9d58;
  --icon-color: #19140f;
}

.roadmap__arrow--prev {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.roadmap__arrow:hover {
  transform: translateY(-1px);
}

.roadmap__arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.roadmap__arrow-icon {
  position: relative;
  width: 44px;
  height: 12px;
}

.roadmap__arrow-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--icon-color);
  transform: translateY(-50%);
}

.roadmap__arrow-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--icon-color);
  border-right: 2px solid var(--icon-color);
  right: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.roadmap__arrow--prev .roadmap__arrow-icon::after {
  left: 2px;
  right: auto;
  transform: translateY(-50%) rotate(-135deg);
}

.roadmap__track-wrapper {
  overflow: hidden;
}

.roadmap__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.roadmap__card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 458px;
  border-radius: 25px;
  padding: 60px 40px;
  cursor: pointer;
  background: var(--dark-card);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.roadmap__card--active {
  background: linear-gradient(21deg, #91603c 4%, #51341e 50%, #25201c 98%);
  border: 1px solid var(--gold-light);
}

.roadmap__card-title {
  font-family: var(--font-accent);
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}

.roadmap__card:not(.roadmap__card--active) .roadmap__card-title,
.roadmap__card:not(.roadmap__card--active) .roadmap__card-text {
  color: var(--text-muted);
}

.roadmap__card:hover {
  background: linear-gradient(21deg, #91603c 4%, #51341e 50%, #25201c 98%);
  border: 1px solid var(--gold-light);
  box-shadow: 0 14px 34px rgba(145, 96, 60, 0.28);
}

.roadmap__card:hover .roadmap__card-title,
.roadmap__card:hover .roadmap__card-text {
  color: var(--text-primary);
}

.roadmap__card-title,
.roadmap__card-text {
  transition: color 0.3s ease;
}

.roadmap__card-text {
  font-size: 18px;
  line-height: 1.4;
}

.roadmap__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.roadmap__card-list li {
  position: relative;
  padding-left: 20px;
}

.roadmap__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(145, 96, 60, 0.45);
}

.roadmap__item-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(7deg, #91603c 0%, #25201c 100%);
  padding: 50px 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer__logo {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo img {
  width: 122px;
  height: auto;
}

.footer__logo-text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.footer__divider {
  width: 1px;
  height: 138px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.footer__contact {
  flex: 0 0 264px;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer__contact-text {
  font-size: 18px;
  line-height: 1.4;
}

.footer__newsletter {
  margin-left: auto;
  max-width: 317px;
}

.footer__newsletter .btn {
  margin-top: 20px;
}

.footer__legal {
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__legal-link {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: #ffffff;
}

.footer__legal-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}

.footer__designed-by {
  margin: 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.footer__designed-by span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero__title {
    font-size: 56px;
  }

  .hartland__title {
    font-size: 140px;
  }

  .nft-cards__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nft-cards__text {
    max-width: 100%;
  }

  .nft-cards__visual {
    min-height: 620px;
  }

  .classic-games__char--left {
    width: 300px;
  }

  .classic-games__char--right {
    width: 280px;
  }
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .hero__content {
    padding-top: 50px;
  }

  .hero__hands {
    width: 55%;
    right: -3%;
    top: -5%;
  }

  .quality-section__inner {
    flex-direction: column;
  }

  .quality-section__visual {
    flex: none;
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
  }

  .quality-section__phone {
    width: 340px;
  }

  .quality-section__play-btn {
    left: 110px;
    width: 128px;
  }

  .coin-section__inner {
    flex-direction: column;
  }

  .coin-section__cards {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .wheel-section__inner,
  .wheel-section__inner--reverse {
    flex-direction: column;
  }

  .wheel-section__text {
    flex: none;
  }

  .wheel-section__visual {
    min-height: 400px;
  }

  .wheel-section--2 .wheel-section__visual-2 {
    flex: none;
    width: min(100%, 535px);
    margin: 0 auto;
  }

  .hartland__title {
    font-size: 100px;
  }

  .nft-cards__inner {
    gap: 24px;
  }

  .nft-cards__text {
    text-align: center;
    margin: 0 auto;
  }

  .nft-cards__desc,
  .nft-cards__cta {
    margin-left: auto;
    margin-right: auto;
  }

  .nft-cards__cta-text {
    font-size: 25px;
  }

  .nft-cards__visual {
    min-height: 590px;
  }

  .nft-cards__character {
    width: 302px;
  }

  .nft-cards__char-bg {
    height: 500px;
  }

  .nft-cards__char-img {
    width: 328px;
  }

  .nft-cards__item {
    width: 88px;
    height: 108px;
  }

  .nft-cards__item--hat {
    top: 62px;
    right: 152px;
  }

  .nft-cards__item--gun {
    top: 170px;
    right: 124px;
  }

  .nft-cards__item--cloak {
    top: 74px;
    right: 40px;
  }

  .nft-cards__item--vest {
    top: 258px;
    right: 140px;
  }

  .nft-cards__item--helmet {
    top: 224px;
    right: 24px;
  }

  .nft-cards__item--pickaxe {
    top: 388px;
    right: 88px;
  }

  .nft-cards__item--glasses {
    top: 348px;
    right: 0;
  }

  .nft-cards__safe-img {
    right: 10px;
    width: 205px;
  }

  .classic-games__char {
    display: none;
  }

  .roadmap__card {
    flex: 0 0 calc(50% - 12px);
  }

  .footer__inner {
    flex-wrap: wrap;
  }

  .footer__newsletter {
    margin-left: 0;
  }

  .footer__legal {
    margin-left: auto;
  }

  .free-to-play__title {
    font-size: 36px;
  }

  .free-to-play__desc {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .header__nav {
    display: none;
  }

  .header__divider {
    display: none;
  }

  .header__cta-btn {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__mobile-menu {
    display: flex;
  }

  .header__inner {
    padding: 0 12px;
    gap: 12px;
  }

  .header__logo img {
    height: 32px;
  }

  .header__logo-wordmark {
    width: 90px;
    height: auto;
  }

  .hero__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .hero__content {
    padding-top: 30px;
  }

  .hero__hands {
    width: 50%;
    right: 0;
    top: 0;
    opacity: 0.7;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .btn--primary {
    font-size: 18px;
    padding: 14px 30px;
    height: auto;
  }

  .btn--hero {
    width: auto;
  }

  .features__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .feature {
    flex: 0 0 calc(50% - 20px);
  }

  .quality-section__title,
  .classic-games__title,
  .coin-section__title,
  .wheel-section__title,
  .partners__title,
  .roadmap__title,
  .free-to-play__title {
    font-size: 32px;
  }

  .hartland__title {
    font-size: 60px;
  }

  .nft-cards__text {
    width: 100%;
  }

  .nft-cards__title {
    font-size: clamp(66px, 19vw, 88px);
  }

  .nft-cards__cta {
    padding: 14px 16px;
  }

  .nft-cards__cta-text {
    font-size: 16px;
  }

  .nft-cards__inner {
    grid-template-columns: 1fr;
  }

  .nft-cards__visual {
    min-height: 500px;
  }

  .nft-cards__character {
    width: 250px;
  }

  .nft-cards__char-bg {
    height: 420px;
  }

  .nft-cards__char-img {
    top: 20px;
    width: 272px;
  }

  .nft-cards__item {
    width: 70px;
    height: 86px;
  }

  .nft-cards__item--hat {
    top: 48px;
    right: 122px;
  }

  .nft-cards__item--gun {
    top: 136px;
    right: 98px;
  }

  .nft-cards__item--cloak {
    top: 52px;
    right: 26px;
  }

  .nft-cards__item--vest {
    top: 212px;
    right: 108px;
  }

  .nft-cards__item--helmet {
    top: 186px;
    right: 16px;
  }

  .nft-cards__item--pickaxe {
    top: 320px;
    right: 68px;
  }

  .nft-cards__item--glasses {
    top: 286px;
    right: -4px;
  }

  .nft-cards__safe-img {
    right: 0;
    width: 205px;
    bottom: 0;
  }

  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap__card {
    flex: 0 0 100%;
    padding: 36px 24px;
    min-height: auto;
  }

  .roadmap__card-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .roadmap__card-text,
  .roadmap__card-list li {
    font-size: 15px;
  }

  .roadmap__arrows {
    gap: 8px;
  }

  .roadmap__arrow {
    width: 60px;
  }

  .feature__icon img {
    width: 48px;
    height: 48px;
  }

  .feature__text {
    font-size: 14px;
  }

  .story__columns {
    flex-direction: column;
    gap: 24px;
  }

  .story__block {
    padding: 24px 16px;
    min-height: auto;
  }

  .story__col-title {
    font-size: 22px;
    white-space: normal;
  }

  .story__col-text,
  .story__bottom-text {
    font-size: 15px;
  }

  .classic-games__block {
    min-height: 300px;
  }

  .classic-games__title {
    font-size: 26px;
  }

  .classic-games__desc {
    font-size: 15px;
  }

  .quality-section__desc {
    font-size: 15px;
  }

  .wheel-section__title {
    font-size: 28px;
  }

  .wheel-section__desc {
    font-size: 15px;
  }

  .wheel-section__visual {
    min-height: 300px;
  }

  .wheel-section__text {
    flex: none;
    width: 100%;
  }

  .coin-section__title {
    font-size: 28px;
  }

  .coin-section__desc p {
    font-size: 15px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__divider {
    width: 80%;
    height: 1px;
  }

  .btn--footer {
    width: 100%;
    max-width: 317px;
  }

  .footer__legal {
    margin-left: 0;
    align-items: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  .hartland__professor {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hartland__visual {
    min-height: auto;
  }

  .hartland__title {
    font-size: 44px;
    margin-bottom: -40px;
  }

  .hartland {
    padding: 40px 0 50px;
  }

  .hartland__shadow {
    width: 80%;
  }

  .hartland__coin {
    width: 60px;
  }

  .hartland__coin--2,
  .hartland__coin--4 {
    width: 100px;
  }

  .coin-section__cards {
    height: 320px;
  }

  .coin-section__card {
    width: 180px;
  }

  .wheel-section__wheel {
    width: 100%;
  }

  .wheel-section__character {
    width: 200px;
    top: inherit;
    bottom: -15px;
    right: -5px;
  }

  .wheel-section__visual {
    overflow: hidden;
  }

  .wheel-section--2 .wheel-section__visual-2 {
    height: 230px;
    border-radius: 24px;
  }

  .wheel-section--2 .wheel-section__char-2 {
    width: 300px;
  }
}
