/* ============================================================
   CEZER HOSTING — Main Stylesheet v2
   Colors : #e4e2dd (beige primary) | #292929 (dark secondary)
   Font   : Poppins
   ============================================================ */

/* ── 1. Variables & Reset ──────────────────────────────────── */
:root {
  --beige:        #e4e2dd;
  --beige-light:  #f0efec;
  --beige-dark:   #d4d1ca;
  --dark:         #292929;
  --dark-light:   #3a3a3a;
  --dark-lighter: #4a4a4a;
  --white:        #ffffff;
  --black:        #000000;
  --text:         #292929;
  --text-muted:   #6b6b6b;
  --text-light:   #999999;
  --border:       #e0ddd7;
  --border-dark:  #3a3a3a;
  --accent:       #c4b5a0;
  --accent-light: #d8cfc2;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:    0 24px 64px rgba(0,0,0,.16);
  --radius-sm:    4px;
  --radius:       6px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --nav-height:   72px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
  --transition-bounce: .5s cubic-bezier(.34,1.56,.64,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--beige);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

::selection {
  background: var(--dark);
  color: var(--beige);
}

/* ── 2. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { color: var(--text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-label i { width: 16px; height: 16px; }

.section-title {
  margin-bottom: 16px;
  color: var(--dark);
}
.section-desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── 3. Layout & Utilities ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── 4. Buttons (Stripe-style) ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn i { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--dark);
  color: var(--beige);
  border: 1px solid var(--dark);
}
.btn-primary:hover {
  background: var(--dark-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--dark);
  background: rgba(41,41,41,.04);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--beige);
  color: var(--dark);
  border: 1px solid var(--beige);
}
.btn-light:hover {
  background: var(--beige-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--beige);
  border: 1px solid rgba(228,226,221,.3);
}
.btn-outline-light:hover {
  border-color: var(--beige);
  background: rgba(228,226,221,.1);
  transform: translateY(-1px);
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  border: 1px solid #5865F2;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88,101,242,.3);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 12.5px;
}
.btn-lg {
  padding: 13px 28px;
  font-size: 14.5px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── 5. Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
  background: rgba(228,226,221,.92);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border-bottom: 1px solid rgba(41,41,41,.06);
  box-shadow: 0 1px 12px rgba(0,0,0,.04);
}
.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-link i {
  color: var(--dark);
}
.navbar.mega-open {
  background: rgba(228,226,221,.97);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
}
.navbar.mega-open .nav-logo-text,
.navbar.mega-open .nav-link,
.navbar.mega-open .nav-link i {
  color: var(--dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo — with actual image */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.nav-logo:hover { opacity: .85; transform: scale(.98); }
.nav-logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
  transition: all var(--transition);
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--beige);
  transition: color var(--transition);
}

/* Center nav links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(228,226,221,.85);
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 100%;
  cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: all .3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 24px;
}
.nav-link i { width: 14px; height: 14px; transition: transform var(--transition), color var(--transition); }
.nav-link:hover { color: var(--beige) !important; }
.navbar.scrolled .nav-link:hover,
.navbar.mega-open .nav-link:hover { color: var(--dark) !important; }
.nav-link.active i { transform: rotate(180deg); }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  background: #5865F2;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(88,101,242,.25);
}
.nav-btn-discord svg,
.nav-btn-discord .discord-icon { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.nav-btn-client {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar:not(.scrolled):not(.mega-open) .nav-btn-client {
  color: var(--beige);
  background: rgba(228,226,221,.12);
  border-color: rgba(228,226,221,.2);
}
.nav-btn-client:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.nav-btn-client i { width: 14px; height: 14px; }

/* ── 6. Mega Menu ──────────────────────────────────────────── */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.18);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mega-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--beige-light);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scaleY(.97);
  transform-origin: top center;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.05);
  max-height: 0;
  overflow: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
  max-height: 520px;
}

/* Staggered animation for items inside mega */
.mega-menu.active .mega-item,
.mega-menu.active .mega-game-item {
  animation: megaItemIn .4s cubic-bezier(.4,0,.2,1) both;
}
.mega-menu.active .mega-item:nth-child(1),
.mega-menu.active .mega-game-item:nth-child(1) { animation-delay: .05s; }
.mega-menu.active .mega-item:nth-child(2),
.mega-menu.active .mega-game-item:nth-child(2) { animation-delay: .08s; }
.mega-menu.active .mega-item:nth-child(3),
.mega-menu.active .mega-game-item:nth-child(3) { animation-delay: .11s; }
.mega-menu.active .mega-item:nth-child(4),
.mega-menu.active .mega-game-item:nth-child(4) { animation-delay: .14s; }
.mega-menu.active .mega-item:nth-child(5),
.mega-menu.active .mega-game-item:nth-child(5) { animation-delay: .17s; }
.mega-menu.active .mega-item:nth-child(6),
.mega-menu.active .mega-game-item:nth-child(6) { animation-delay: .2s; }
.mega-menu.active .mega-game-item:nth-child(7) { animation-delay: .22s; }
.mega-menu.active .mega-game-item:nth-child(8) { animation-delay: .24s; }
.mega-menu.active .mega-game-item:nth-child(9) { animation-delay: .26s; }
.mega-menu.active .mega-game-item:nth-child(10) { animation-delay: .28s; }
.mega-menu.active .mega-game-item:nth-child(11) { animation-delay: .30s; }
.mega-menu.active .mega-game-item:nth-child(12) { animation-delay: .32s; }
.mega-menu.active .mega-game-item:nth-child(13) { animation-delay: .34s; }
.mega-menu.active .mega-game-item:nth-child(14) { animation-delay: .36s; }

@keyframes megaItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.mega-left {
  display: flex;
  gap: 48px;
}

.mega-category h6 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  position: relative;
}
.mega-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--dark);
  border-radius: 2px;
  transition: height .3s ease;
}
.mega-item:hover::before {
  height: 60%;
}
.mega-item:hover {
  background: rgba(41,41,41,.05);
  transform: translateX(4px);
}
.mega-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.mega-item:hover .mega-item-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: var(--shadow-md);
}
.mega-item-icon i { width: 18px; height: 18px; }
.mega-item-icon .mega-item-svg-icon { width: 18px; height: 18px; object-fit: contain; }
.mega-item-text h5 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark);
  transition: color var(--transition);
}
.mega-item:hover .mega-item-text h5 {
  color: var(--dark-light);
}
.mega-item-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Mega right panel */
.mega-right {
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-right-image {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  overflow: hidden;
  position: relative;
  transition: all .4s ease;
}
.mega-right-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,226,221,.06), transparent);
}
.mega-right-image::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 200px 200px at 70% 40%, rgba(228,226,221,.06), transparent);
  animation: megaImagePulse 4s ease-in-out infinite;
}
@keyframes megaImagePulse {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

.mega-right-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-right-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all .25s ease;
  border: 1px solid transparent;
}
.mega-right-link:hover {
  background: rgba(41,41,41,.04);
  color: var(--dark);
  border-color: var(--border);
  transform: translateX(4px);
}
.mega-right-link i { width: 15px; height: 15px; }

/* Game grid inside mega */
.mega-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mega-game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.mega-game-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 0;
  border-radius: var(--radius-md);
}
.mega-game-item:hover::before {
  transform: scaleX(1);
}
.mega-game-item:hover {
  color: var(--beige);
  border-color: var(--dark);
}
.mega-game-item img,
.mega-game-item i { 
  position: relative; 
  z-index: 1; 
}
.mega-game-item span {
  position: relative;
  z-index: 1;
}
.mega-game-item .game-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.mega-game-item:hover .game-logo {
  transform: scale(1.1);
}
.mega-game-item i { width: 14px; height: 14px; color: var(--text-muted); }
.mega-game-item:hover i { color: var(--beige); }

/* ── 7. Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Hero background photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .65) 0%,
    rgba(20, 20, 20, .72) 40%,
    rgba(30, 30, 30, .80) 100%
  );
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 24px 0;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(228,226,221,.06);
  border: 1px solid rgba(228,226,221,.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(228,226,221,.6);
  margin-bottom: 48px;
  animation: fadeInUp .8s ease .2s both;
  transition: all .3s ease;
}
.hero-badge:hover {
  border-color: rgba(228,226,221,.25);
  background: rgba(228,226,221,.1);
}
.hero-badge i { width: 14px; height: 14px; }
.hero-badge .badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--beige);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0;
  animation: fadeInUp .8s ease .4s both;
  position: relative;
}
.hero-title .title-accent {
  position: relative;
  display: inline-block;
}
.hero-title .title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(228,226,221,.15);
  border-radius: 4px;
  animation: underlineGrow .6s ease .9s both;
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-morph-line {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(228,226,221,.4);
  margin-top: 20px;
  margin-bottom: 28px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: fadeInUp .8s ease .5s both;
}
.hero-morph-word {
  display: inline-block;
  color: rgba(228,226,221,.8);
  font-weight: 500;
  position: relative;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.hero-morph-word::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 15%;
  width: 2px;
  height: 70%;
  background: rgba(228,226,221,.5);
  animation: cursorBlink 1s ease-in-out infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.hero-morph-word.changing {
  opacity: 0;
  transform: translateY(14px) scale(.96);
  filter: blur(6px);
}

.hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(228,226,221,.45);
  max-width: 500px;
  margin: 0 auto 40px;
  animation: fadeInUp .8s ease .6s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 72px;
  animation: fadeInUp .8s ease .7s both;
}

/* Hero bottom badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp .8s ease .9s both;
}
.hero-badges.hero-badges-spaced {
  gap: 40px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(228,226,221,.06);
  border: 1px solid rgba(228,226,221,.1);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}
.hero-badge-item:hover {
  background: rgba(228,226,221,.08);
  border-color: rgba(228,226,221,.15);
  transform: translateY(-3px);
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(228,226,221,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: all .3s ease;
}
.hero-badge-item:hover .hero-badge-icon {
  background: rgba(228,226,221,.14);
  transform: scale(1.08);
}
.hero-badge-icon i { width: 18px; height: 18px; }
.hero-badge-text span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(228,226,221,.9);
}
.hero-badge-text small {
  font-size: 11px;
  color: rgba(228,226,221,.35);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(228,226,221,.25);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  animation: fadeInUp .8s ease 1.2s both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(228,226,221,.2);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 7px;
  background: rgba(228,226,221,.4);
  border-radius: 3px;
  margin-top: 6px;
  animation: scrollMouse 2s ease-in-out infinite;
}
@keyframes scrollMouse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0; }
}

/* ── 8. Partners Section ───────────────────────────────────── */
.partners {
  padding: 56px 0;
  background: var(--beige);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.partners::before,
.partners::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners::before {
  left: 0;
  background: linear-gradient(90deg, var(--beige), transparent);
}
.partners::after {
  right: 0;
  background: linear-gradient(-90deg, var(--beige), transparent);
}

.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-light);
  margin-bottom: 28px;
}

.partners-track {
  display: flex;
  gap: 56px;
  animation: partnerScroll 35s linear infinite;
  width: max-content;
  align-items: center;
  will-change: transform;
}
.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .3;
  filter: grayscale(100%);
  transition: all .4s ease;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text);
  white-space: nowrap;
}
.partner-logo:hover {
  opacity: .65;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes partnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 9. Features Grid V2 — Why Choose Us ───────────────────── */
.features {
  padding: 120px 0;
  background: var(--beige);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header .section-title {
  position: relative;
  display: inline-block;
}
.features-header .section-desc {
  margin: 0 auto;
}

/* Features V2 Grid */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fv2-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.fv2-card:hover {
  border-color: var(--dark);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.fv2-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(196,181,160,.08), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.fv2-card:hover .fv2-card-glow {
  opacity: 1;
}

.fv2-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 32px 32px;
}

.fv2-card-large {
  grid-column: span 2;
}
.fv2-card-large .fv2-card-inner {
  padding: 44px 40px 40px;
}

.fv2-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  font-weight: 800;
  color: rgba(41,41,41,.03);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.fv2-icon-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
}
.fv2-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.fv2-icon i { width: 24px; height: 24px; }
.fv2-card:hover .fv2-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(41,41,41,.2);
}

.fv2-icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(41,41,41,.08);
  animation: fv2Ring 3s ease-in-out infinite;
}
@keyframes fv2Ring {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.15); opacity: 0; }
}

.fv2-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.fv2-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Stats row inside large cards */
.fv2-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.fv2-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fv2-stat strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.fv2-stat span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── 10. Offers Sections ───────────────────────────────────── */
.offer-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.offer-section:nth-child(even) {
  background: var(--white);
}
.offer-section .offer-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(228,226,221,.4) 0, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(228,226,221,.3) 0, transparent 50%);
  pointer-events: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.offer-grid.reversed .offer-content { order: 2; }
.offer-grid.reversed .offer-visual  { order: 1; }

.offer-content {
  max-width: 480px;
}

.offer-content .section-label {
  margin-bottom: 12px;
}
.offer-content .section-title {
  margin-bottom: 16px;
}
.offer-content .section-desc {
  margin-bottom: 28px;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.offer-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: all .3s ease;
}
.offer-feature:hover {
  transform: translateX(6px);
}
.offer-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: rgba(41,41,41,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.offer-feature:hover .offer-feature-icon {
  background: var(--dark);
  color: var(--beige);
}
.offer-feature-icon i { width: 14px; height: 14px; color: var(--dark); }
.offer-feature:hover .offer-feature-icon i { color: var(--beige); }

/* Offer visual / image placeholder */
.offer-visual {
  position: relative;
}
.offer-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(228,226,221,.08);
  transition: all .5s ease;
}
.offer-visual:hover .offer-image {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.offer-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 300px 300px at 30% 40%, rgba(228,226,221,.06), transparent),
    radial-gradient(ellipse 200px 200px at 70% 60%, rgba(196,181,160,.05), transparent);
}
.offer-image-label {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  color: rgba(228,226,221,.35);
  letter-spacing: .05em;
}

/* Floating stats on offer images */
.offer-float-card {
  position: absolute;
  padding: 14px 20px;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  z-index: 3;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(228,226,221,.3);
}
.offer-float-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
.offer-float-card.top-right {
  top: -16px;
  right: -16px;
}
.offer-float-card.bottom-left {
  bottom: -16px;
  left: -16px;
}
.offer-float-card span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.offer-float-card small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Game hosting grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.game-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(41,41,41,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.game-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.game-tag:hover::before {
  transform: scaleX(1);
}
.game-tag:hover {
  border-color: var(--dark);
  color: var(--beige);
}
.game-tag i,
.game-tag span,
.game-tag img { position: relative; z-index: 1; }
.game-tag i { width: 14px; height: 14px; }
.game-tag-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.game-tag:hover .game-tag-icon {
  transform: scale(1.15);
}
.game-tag:hover span {
  color: var(--beige);
}

/* ── 11. Stats Section ─────────────────────────────────────── */
.stats {
  padding: 90px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(228,226,221,.03), transparent),
    radial-gradient(ellipse 500px 300px at 80% 50%, rgba(196,181,160,.02), transparent);
}
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228,226,221,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,226,221,.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 24px 0;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(228,226,221,.1), transparent);
}

.stat-number {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(228,226,221,.45);
}

/* ── 12. Testimonials ──────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--beige);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(41,41,41,.03);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--dark);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars i {
  width: 16px;
  height: 16px;
  color: #f0a500;
  fill: #f0a500;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.testimonial-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-info span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-info small {
  font-size: 11.5px;
  color: var(--text-light);
}

/* ── 13. CTA Section ───────────────────────────────────────── */
.cta {
  padding: 110px 0;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212,209,202,.35), transparent);
  pointer-events: none;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.cta-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(41,41,41,.1);
  border-radius: inherit;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50%      { transform: scale(1.15); opacity: 0; }
}
.cta-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}
.cta-icon i { width: 28px; height: 28px; }

.cta h2 {
  margin-bottom: 16px;
}

.cta .section-desc {
  margin: 0 auto 44px;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 14. Footer ────────────────────────────────────────────── */
/* Wave transition */
.footer-wave {
  position: relative;
  height: 80px;
  background: var(--beige);
  overflow: hidden;
  margin-bottom: -1px;
}
.footer-wave svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 81px;
  display: block;
}

.footer {
  background: var(--dark);
  color: rgba(228,226,221,.7);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 10% 20%, rgba(228,226,221,.02), transparent),
    radial-gradient(ellipse 600px 400px at 90% 80%, rgba(196,181,160,.02), transparent);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228,226,221,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,226,221,.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}

.footer .container-wide {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(228,226,221,.07);
}

/* Footer brand with logo image */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  transition: all var(--transition);
}
.footer-brand .footer-logo:hover { opacity: .8; }
.footer-brand .footer-logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
}
.footer-brand .footer-logo-text {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--beige);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(228,226,221,.45);
  margin-bottom: 24px;
  max-width: 290px;
}

/* Newsletter-style mini form look */
.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.footer-newsletter input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid rgba(228,226,221,.12);
  border-radius: var(--radius);
  background: rgba(228,226,221,.05);
  color: var(--beige);
  font-size: 12.5px;
  outline: none;
  transition: all var(--transition);
}
.footer-newsletter input::placeholder {
  color: rgba(228,226,221,.3);
}
.footer-newsletter input:focus {
  border-color: rgba(228,226,221,.3);
  background: rgba(228,226,221,.08);
}
.footer-newsletter button {
  padding: 9px 16px;
  background: rgba(228,226,221,.1);
  border: 1px solid rgba(228,226,221,.15);
  border-radius: var(--radius);
  color: var(--beige);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.footer-newsletter button:hover {
  background: rgba(228,226,221,.18);
  border-color: rgba(228,226,221,.25);
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(228,226,221,.08);
  background: rgba(228,226,221,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(228,226,221,.45);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.footer-social:hover {
  background: rgba(228,226,221,.12);
  color: var(--beige);
  border-color: rgba(228,226,221,.2);
  transform: translateY(-3px);
}
.footer-social i { width: 16px; height: 16px; }
.footer-social svg { width: 16px; height: 16px; }
.footer-social .discord-icon { width: 16px; height: 16px; filter: brightness(0) invert(1); opacity: .7; transition: opacity .3s ease; }
.footer-social:hover .discord-icon { opacity: 1; }

/* Discord icon in buttons */
.btn-discord .discord-icon { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.footer-col h6 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(228,226,221,.8);
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: rgba(228,226,221,.15);
  border-radius: 2px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(228,226,221,.45);
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  position: relative;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(228,226,221,.4);
  transition: width .3s ease;
}
.footer-col ul li a:hover {
  color: var(--beige);
  transform: translateX(4px);
}
.footer-col ul li a:hover::after {
  width: 100%;
}
.footer-col ul li a i { width: 13px; height: 13px; flex-shrink: 0; }

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 0 40px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

.footer-legal {
  max-width: 620px;
}
.footer-legal p {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(228,226,221,.3);
  margin-bottom: 4px;
}
.footer-legal a {
  color: rgba(228,226,221,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover {
  color: var(--beige);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(228,226,221,.35);
  transition: all .3s ease;
  position: relative;
  padding-bottom: 2px;
}
.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(228,226,221,.4);
  transition: width .3s ease;
}
.footer-bottom-links a:hover {
  color: var(--beige);
}
.footer-bottom-links a:hover::after {
  width: 100%;
}

/* ── 15. Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── 16. Mobile Menu ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  cursor: pointer;
  transition: color var(--transition);
}
.navbar.scrolled .nav-hamburger,
.navbar.mega-open .nav-hamburger {
  color: var(--dark);
}
.nav-hamburger i { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--beige-light);
  z-index: 997;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-link i { width: 18px; height: 18px; }
.mobile-submenu {
  display: none;
  padding: 8px 0 8px 16px;
}
.mobile-submenu.active {
  display: block;
}
.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── 17. Responsive ────────────────────────────────────────── */

/* ── Tablet landscape (≤1024px) ──────────────────────────── */
@media (max-width: 1024px) {
  .mega-inner {
    grid-template-columns: 1fr;
  }
  .mega-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mega-right-image { display: none; }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .offer-grid.reversed .offer-content { order: 1; }
  .offer-grid.reversed .offer-visual  { order: 2; }
  .offer-content { max-width: 100%; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Features v2 grid tablet */
  .features-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
  .fv2-card-large {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-content {
    max-width: 700px;
  }

  section { padding: 88px 0; }

  .features { padding: 100px 0; }
  .features-header { margin-bottom: 56px; }

  .offer-section { padding: 88px 0; }

  .cta { padding: 88px 0; }
}

/* ── Tablet portrait / large phones (≤768px) ─────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .container { padding: 0 20px; }
  .container-wide { padding: 0 20px; }

  .nav-center { display: none; }
  .nav-right .nav-btn-discord,
  .nav-right .nav-btn-client { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-inner { padding: 0 20px; }

  /* ── Hero mobile ──────────────────────────────────────── */
  .hero { min-height: 100svh; }
  .hero-content {
    padding: 24px 8px 0;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 36px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-morph-line {
    font-size: clamp(1rem, 4vw, 1.5rem);
    height: 42px;
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 48px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hero-badge-item {
    width: 100%;
    max-width: 300px;
    padding: 12px 18px;
  }
  .hero-badge-icon {
    width: 36px;
    height: 36px;
  }
  .hero-badge-text span { font-size: 12px; }
  .hero-badge-text small { font-size: 10px; }

  .hero-scroll {
    bottom: 20px;
  }



  /* ── Partners mobile ──────────────────────────────── */
  .partners { padding: 40px 0; }
  .partners-label {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .partners-track { gap: 36px; }
  .partner-logo {
    font-size: 14px;
    height: 22px;
  }

  /* ── Features mobile ──────────────────────────────── */
  .features { padding: 72px 0; }
  .features-header { margin-bottom: 40px; }
  .features-header .section-desc { font-size: 14px; }

  .features-grid-v2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fv2-card-large {
    grid-column: span 1;
  }
  .fv2-card-inner {
    padding: 28px 22px 24px;
  }
  .fv2-card-large .fv2-card-inner {
    padding: 32px 26px 28px;
  }
  .fv2-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
  .fv2-icon i { width: 20px; height: 20px; }
  .fv2-card h4 { font-size: 15px; }
  .fv2-card p { font-size: 13px; }
  .fv2-number { font-size: 42px; }
  .fv2-stats { gap: 16px; margin-top: 20px; padding-top: 18px; }
  .fv2-stat strong { font-size: 14px; }
  .fv2-stat span { font-size: 10px; }

  /* Hero badges spacing mobile */
  .hero-badges.hero-badges-spaced {
    gap: 10px;
  }

  /* ── Offer sections mobile ────────────────────────── */
  .offer-section { padding: 64px 0; }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .offer-grid.reversed .offer-content { order: 1; }
  .offer-grid.reversed .offer-visual  { order: 2; }
  .offer-content { max-width: 100%; }

  .offer-content .section-label { font-size: 11px; }
  .offer-content .section-desc { font-size: 14px; }

  .offer-features { gap: 12px; margin-bottom: 24px; }
  .offer-feature { font-size: 13px; }
  .offer-feature-icon {
    width: 28px;
    height: 28px;
  }

  .offer-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
  }

  .offer-float-card {
    padding: 10px 14px;
  }
  .offer-float-card.top-right {
    top: -10px;
    right: -6px;
  }
  .offer-float-card.bottom-left {
    bottom: -10px;
    left: -6px;
  }
  .offer-float-card span { font-size: 16px; }
  .offer-float-card small { font-size: 10px; }

  .mega-games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .game-tag {
    padding: 8px 10px;
    font-size: 11px;
  }

  /* ── Stats mobile ─────────────────────────────────── */
  .stats { padding: 64px 0; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item { padding: 16px 0; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .stat-label { font-size: 12px; }

  /* ── Testimonials mobile ──────────────────────────── */
  .testimonials { padding: 72px 0; }
  .testimonials-header { margin-bottom: 40px; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card {
    padding: 28px 24px;
  }
  .testimonial-avatar-img { width: 36px; height: 36px; }
  .testimonial-card::before {
    font-size: 80px;
    right: 14px;
  }
  .testimonial-text { font-size: 13px; margin-bottom: 20px; }
  .testimonial-author { gap: 10px; padding-top: 16px; }
  .testimonial-avatar { width: 36px; height: 36px; font-size: 12px; }
  .testimonial-info span { font-size: 12.5px; }
  .testimonial-info small { font-size: 10.5px; }

  /* ── CTA mobile ───────────────────────────────────── */
  .cta { padding: 72px 0; }
  .cta-inner { padding: 0 8px; }
  .cta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }
  .cta-icon i { width: 24px; height: 24px; }
  .cta h2 { margin-bottom: 12px; }
  .cta .section-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 14px;
  }

  /* ── Footer mobile ────────────────────────────────── */
  .footer { padding-top: 56px; }
  .footer-wave { height: 60px; }
  .footer-wave svg { height: 61px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-brand p { max-width: 100%; }

  .footer-newsletter {
    flex-direction: column;
    gap: 8px;
  }
  .footer-newsletter input {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
  }
  .footer-newsletter button {
    width: 100%;
    padding: 11px 16px;
    font-size: 13px;
  }

  .footer-socials {
    gap: 8px;
  }
  .footer-social {
    width: 42px;
    height: 42px;
  }

  .footer-col h6 {
    font-size: 11px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    font-size: 13.5px;
    padding: 4px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 0 32px;
  }
  .footer-legal { max-width: 100%; }
  .footer-legal p { font-size: 11px; }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ── Section spacing mobile ───────────────────────── */
  section { padding: 72px 0; }

  .section-label { font-size: 11px; margin-bottom: 12px; }
  .section-desc { font-size: 14px; }

  /* ── Buttons touch targets ────────────────────────── */
  .btn { min-height: 44px; }
  .btn-sm { min-height: 38px; }
}

/* ── Small phones (≤480px) ───────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .container-wide { padding: 0 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  /* ── Hero small mobile ────────────────────────────── */
  .hero-content { padding: 16px 0 0; }

  .hero-badge {
    font-size: 10.5px;
    padding: 5px 12px;
    gap: 6px;
    margin-bottom: 28px;
  }
  .hero-badge i { width: 12px; height: 12px; }

  .hero-title {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
    letter-spacing: -0.03em;
  }

  .hero-morph-line {
    font-size: clamp(0.9rem, 4.5vw, 1.2rem);
    height: 36px;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .hero-buttons {
    margin-bottom: 36px;
    gap: 8px;
  }
  .hero-buttons .btn {
    max-width: 100%;
    padding: 11px 20px;
    font-size: 13px;
  }

  .hero-badges { gap: 8px; }
  .hero-badge-item {
    max-width: 100%;
    padding: 10px 14px;
    gap: 10px;
  }
  .hero-badge-icon {
    width: 32px;
    height: 32px;
  }
  .hero-badge-icon i { width: 15px; height: 15px; }
  .hero-badge-text span { font-size: 11.5px; }
  .hero-badge-text small { font-size: 9.5px; }

  .hero-scroll { display: none; }



  /* ── Partners small mobile ────────────────────────── */
  .partners { padding: 32px 0; }
  .partners-label { font-size: 9.5px; margin-bottom: 16px; }
  .partners-track { gap: 24px; }
  .partner-logo { font-size: 13px; }

  /* ── Features small mobile ────────────────────────── */
  .features { padding: 56px 0; }
  .features-header { margin-bottom: 32px; }

  .features-grid-v2 { gap: 12px; }
  .fv2-card-inner { padding: 22px 18px 20px; }
  .fv2-card-large .fv2-card-inner { padding: 26px 22px 24px; }
  .fv2-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .fv2-icon i { width: 18px; height: 18px; }
  .fv2-card h4 { font-size: 14px; margin-bottom: 8px; }
  .fv2-card p { font-size: 12.5px; }
  .fv2-number { font-size: 36px; top: 10px; right: 12px; }
  .fv2-stats { flex-wrap: wrap; gap: 12px; }

  /* ── Offers small mobile ──────────────────────────── */
  .offer-section { padding: 48px 0; }

  .offer-content .section-label { font-size: 10.5px; }
  .offer-content .section-title { margin-bottom: 12px; }
  .offer-content .section-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .offer-content .btn { width: 100%; }

  .offer-features { gap: 10px; margin-bottom: 20px; }
  .offer-feature { font-size: 12.5px; gap: 10px; }
  .offer-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
  }
  .offer-feature-icon i { width: 12px; height: 12px; }

  .offer-image { aspect-ratio: 16/9; }

  .offer-float-card {
    padding: 8px 12px;
    border-radius: var(--radius);
  }
  .offer-float-card span { font-size: 14px; }
  .offer-float-card small { font-size: 9px; }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .game-tag {
    padding: 7px 8px;
    font-size: 10.5px;
    gap: 5px;
    border-radius: var(--radius-sm);
  }
  .game-tag i { width: 12px; height: 12px; }

  /* ── Stats small mobile ───────────────────────────── */
  .stats { padding: 48px 0; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-item { padding: 12px 0; }
  .stat-number { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .stat-label { font-size: 11px; }

  /* ── Testimonials small mobile ────────────────────── */
  .testimonials { padding: 56px 0; }
  .testimonials-header { margin-bottom: 32px; }
  .testimonials-grid { gap: 12px; }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-card::before {
    font-size: 60px;
    right: 10px;
    top: -4px;
  }
  .testimonial-stars { margin-bottom: 14px; }
  .testimonial-stars i { width: 14px; height: 14px; }
  .testimonial-text {
    font-size: 12.5px;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .testimonial-author { gap: 8px; padding-top: 14px; }
  .testimonial-avatar-img { width: 32px; height: 32px; }
  .testimonial-info span { font-size: 12px; }
  .testimonial-info small { font-size: 10px; }

  /* ── CTA small mobile ─────────────────────────────── */
  .cta { padding: 56px 0; }
  .cta-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
  }
  .cta-icon i { width: 22px; height: 22px; }
  .cta h2 { margin-bottom: 10px; }
  .cta .section-desc {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .cta-buttons .btn {
    max-width: 100%;
    font-size: 13px;
  }

  /* ── Footer small mobile ──────────────────────────── */
  .footer { padding-top: 40px; }
  .footer-wave { height: 48px; }
  .footer-wave svg { height: 49px; }

  .footer-top {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand .footer-logo-img {
    height: 36px;
  }
  .footer-brand p {
    font-size: 12.5px;
    margin-bottom: 20px;
  }

  .footer-newsletter input { font-size: 13px; }
  .footer-newsletter button { font-size: 12px; }

  .footer-social {
    width: 40px;
    height: 40px;
  }

  .footer-col h6 {
    font-size: 10.5px;
    margin-bottom: 14px;
  }
  .footer-col ul li a {
    font-size: 13px;
    padding: 3px 0;
  }

  .footer-bottom {
    padding: 24px 0 28px;
    gap: 14px;
  }
  .footer-legal p { font-size: 10.5px; }
  .footer-bottom-links { gap: 12px; }
  .footer-bottom-links a { font-size: 11px; }

  /* ── General small mobile ─────────────────────────── */
  section { padding: 56px 0; }

  .section-label { font-size: 10.5px; gap: 6px; }
  .section-label i { width: 14px; height: 14px; }
  .section-desc { font-size: 13px; }
}

/* ── Very small phones (≤360px) ──────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .container-wide { padding: 0 12px; }

  .hero-title { font-size: 2.2rem; }
  .hero-morph-line { font-size: 0.85rem; height: 32px; }
  .hero-desc { font-size: 12.5px; }

  .hero-buttons .btn { padding: 10px 16px; font-size: 12.5px; }

  .hero-badge-item {
    padding: 8px 12px;
    gap: 8px;
  }
  .hero-badge-icon { width: 28px; height: 28px; }
  .hero-badge-icon i { width: 13px; height: 13px; }
  .hero-badge-text span { font-size: 11px; }
  .hero-badge-text small { font-size: 9px; }

  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }

  .features-grid-v2 { gap: 10px; }
  .fv2-card-inner { padding: 18px 14px 16px; }
  .fv2-card-large .fv2-card-inner { padding: 22px 18px 20px; }
  .fv2-icon { width: 40px; height: 40px; }
  .fv2-icon i { width: 16px; height: 16px; }
  .fv2-card h4 { font-size: 13px; }
  .fv2-card p { font-size: 12px; }
  .fv2-number { font-size: 30px; }
  .fv2-stats { flex-wrap: wrap; gap: 10px; margin-top: 14px; padding-top: 14px; }

  .games-grid { grid-template-columns: 1fr; }
  .game-tag { padding: 9px 12px; font-size: 11.5px; }

  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 10.5px; }

  .testimonial-card { padding: 18px 14px; }

  .offer-float-card.top-right { top: -6px; right: -2px; }
  .offer-float-card.bottom-left { bottom: -6px; left: -2px; }

  .cta-icon { width: 46px; height: 46px; }
  .cta-icon i { width: 20px; height: 20px; }

  .footer-brand .footer-logo-text { font-size: 16px; }
  .footer-col h6 { font-size: 10px; }
  .footer-col ul li a { font-size: 12.5px; }
  .footer-bottom-links a { font-size: 10.5px; }
}

/* ── Landscape phones ────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-content { padding: 12px 16px 0; }
  .hero-title { font-size: 2.5rem; }
  .hero-morph-line { height: 32px; margin-top: 8px; margin-bottom: 12px; }
  .hero-desc { margin-bottom: 20px; }
  .hero-buttons { flex-direction: row; margin-bottom: 32px; }
  .hero-buttons .btn { width: auto; max-width: none; }
  .hero-badges { flex-direction: row; }
  .hero-badge-item { width: auto; }
  .hero-scroll { display: none; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .partners-track { animation: none; }
}

/* ── 18. Utility Animations ────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.loading-shimmer {
  background: linear-gradient(90deg, var(--border) 25%, var(--beige-light) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.page-enter {
  animation: fadeInUp .6s ease both;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--beige);
}
::-webkit-scrollbar-thumb {
  background: var(--dark);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-light);
}

/* ── Video Showcase ─────────────────────────────────────────── */
.video-showcase {
  padding: 100px 0 80px;
  background: var(--beige);
  overflow: hidden;
}

.video-showcase-inner {
  text-align: center;
}

.video-showcase-header {
  margin-bottom: 50px;
}

.video-showcase-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 16px;
}

.video-showcase-header .section-label i {
  width: 18px;
  height: 18px;
}

.video-showcase-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.video-showcase-header .section-desc {
  font-size: 1.1rem;
  color: var(--dark);
  opacity: 0.6;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-showcase-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.video-showcase-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at center,
    rgba(41, 41, 41, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.video-showcase-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .video-showcase {
    padding: 70px 0 50px;
  }
  .video-showcase-frame {
    border-radius: 14px;
    margin: 0 -10px;
  }
}

/* ── Performance: respect reduced-motion preference ────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .partners-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Newsletter joke pulse animation ───────────────────────── */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
