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

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

::selection { background: rgba(255, 122, 0, 0.18); color: var(--white); }
::-moz-selection { background: rgba(255, 122, 0, 0.18); color: var(--white); }

:root {
  --bg:           #06060b;
  --bg-2:         #0d0d14;
  --bg-3:         #14141c;
  --orange:       #ff7a00;
  --orange-light: #ffaa44;
  --yellow:       #ffd040;
  --gold:         #f0a800;
  --white:        #f0f0f5;
  --muted:        #6b6b80;
  --glow-orange:  rgba(255, 122, 0, 0.45);
  --glow-yellow:  rgba(255, 208, 64, 0.35);
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
  height: 64px;
  background: rgba(6,6,11,0.6);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,122,0,0.4));
  transition: filter 0.3s;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 14px rgba(255, 122, 0, 0.65));
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,122,0,0.07);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-links a.active { color: var(--white); }

/* ── HAMBURGER ── */
.nav-toggle-input { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* overlay behind open menu */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}
.nav-toggle-input:checked ~ .nav-overlay { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,122,0,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(255,122,0,0.03) 0%, transparent 50%),
              var(--bg);
}

/* animated background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 25s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 80px 80px; } }

/* radial glow behind text */
.hero::after {
  content: '';
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.12) 0%, rgba(255,122,0,0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  top: 15%; left: 8%;
  background: radial-gradient(circle, rgba(255,122,0,0.08) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  bottom: 20%; right: 10%;
  background: radial-gradient(circle, rgba(255,170,68,0.06) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 150px; height: 150px;
  top: 60%; left: 65%;
  background: radial-gradient(circle, rgba(255,122,0,0.05) 0%, transparent 70%);
  animation: orbFloat3 14s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-15px, 20px); }
  66% { transform: translate(20px, -10px); }
}

/* scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(255,122,0,0.5));
  animation: scrollMousePulse 2s ease-in-out infinite;
}
.scroll-wheel {
  animation: scrollWheelMove 2s ease-in-out infinite;
}
@keyframes scrollMousePulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}
@keyframes scrollWheelMove {
  0%   { transform: translateY(0);  opacity: 1; }
  60%  { transform: translateY(7px); opacity: 0.15; }
  100% { transform: translateY(0);  opacity: 1; }
}

/* palm decoration */
.hero-palm {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: brightness(1.4) sepia(1) saturate(3) hue-rotate(10deg);
}

.hero-eyebrow {
  position: relative; z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 6px;
  background: rgba(255,122,0,0.05);
}

.hero-title {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 40px var(--glow-orange),
    0 0 80px rgba(255,122,0,0.2);
  margin-bottom: 0.3em;
}
.hero-title .accent { color: var(--orange); }

.hero-tagline {
  position: relative; z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-desc {
  position: relative; z-index: 1;
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-buttons {
  position: relative; z-index: 1;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: #0a0a0e;
  box-shadow: 0 4px 20px rgba(255,122,0,0.3), 0 0 0 0 rgba(255,122,0,0);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,122,0,0.4), 0 0 0 3px rgba(255,122,0,0.1);
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border: 1px solid rgba(255,122,0,0.35);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: rgba(255,122,0,0.7);
  color: var(--orange-light);
  background: rgba(255,122,0,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Adumu', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.05rem;
  color: #99a;
  max-width: 560px;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,122,0,0.2) 30%, rgba(255,122,0,0.4) 50%, rgba(255,122,0,0.2) 70%, transparent 95%);
}

/* ── FEATURED GAME ── */
.game-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.game-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,160,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* pink game section variant */
.game-section-pink {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0510 20%, #0f0818 50%, #0a0510 80%, var(--bg) 100%);
  padding: 120px 5%;
}
.game-section-pink::before {
  background: radial-gradient(ellipse at 70% 30%, rgba(255,36,117,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(180,40,255,0.06) 0%, transparent 50%);
  width: 100%; height: 100%;
  top: 0; right: 0;
}
.game-section-pink::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,36,117,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.game-section-pink .game-badge {
  background: linear-gradient(135deg, #ff2475, #ff4a8d);
  box-shadow: 0 0 16px rgba(255,36,117,0.3);
}
.game-section-pink .game-title {
  text-shadow: 0 0 40px rgba(255,36,117,0.35), 0 0 80px rgba(255,36,117,0.15);
}
.game-section-pink .glow-tl {
  background: radial-gradient(circle, rgba(255,36,117,0.35) 0%, transparent 70%);
  width: 200px; height: 200px;
}
.game-section-pink .glow-br {
  background: radial-gradient(circle, rgba(180,40,255,0.2) 0%, transparent 70%);
  width: 200px; height: 200px;
}
.game-section-pink .game-art-showcase {
  border-color: rgba(255,36,117,0.2);
  box-shadow: 0 0 80px rgba(255,36,117,0.2), 0 30px 80px rgba(0,0,0,0.7);
  background: radial-gradient(ellipse at 30% 60%, rgba(255,36,117,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 35%, rgba(180,40,255,0.08) 0%, transparent 45%),
              linear-gradient(135deg, #120510 0%, #1a0015 40%, #080810 100%);
  border-radius: 12px;
}
.game-section-pink .game-art-showcase:hover {
  border-color: rgba(255,36,117,0.4);
  box-shadow: 0 0 120px rgba(255,36,117,0.3), 0 30px 80px rgba(0,0,0,0.7);
  transform: translateY(-4px);
}
.game-section-pink .store-btn:hover {
  background: rgba(255,36,117,0.06);
  border-color: rgba(255,36,117,0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.game-section-pink .game-inner {
  max-width: 1080px;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.game-section-pink .game-art-showcase {
  aspect-ratio: 16/8;
}

/* store buttons in pink section */
.game-section-pink .store-btn {
  padding: 0.5rem 0.85rem;
  min-width: auto;
  gap: 0.5rem;
}
.game-section-pink .store-btn svg {
  width: 22px; height: 22px;
}
.game-section-pink .store-btn-text small {
  font-size: 0.52rem;
}
.game-section-pink .store-btn-text strong {
  font-size: 0.85rem;
}

/* smaller action buttons in pink section */
.game-section-pink .game-action-buttons .btn {
  font-size: 0.78rem;
  padding: 0.55rem 1.2rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* right-aligned game text */
.game-text-right {
  text-align: right;
}
.game-text-right .game-badge {
  margin-left: auto;
}
.game-text-right .store-buttons {
  justify-content: flex-end;
}
.game-text-right .game-action-buttons {
  justify-content: flex-end;
}

/* button row layouts */
.store-buttons-row {
  flex-wrap: nowrap;
}
.game-action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}
.game-action-buttons .btn { white-space: nowrap; }

.game-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.game-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  padding: 0.35rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

.game-title {
  font-family: 'Adumu', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255,122,0,0.3);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.game-desc {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.platform-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.platform-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
  border: 1px solid rgba(255,122,0,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  background: rgba(255,122,0,0.07);
}

.game-visual { position: relative; }
.game-art {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: 1px solid rgba(255,122,0,0.25);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(255,100,0,0.2), 0 20px 60px rgba(0,0,0,0.6);
}
.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* scan-line overlay on art */
.game-art::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.12) 3px,
    rgba(0,0,0,0.12) 4px
  );
  pointer-events: none;
}

.glow-corner {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  pointer-events: none;
}
.glow-tl { top: -30px; left: -30px; background: radial-gradient(circle, rgba(255,122,0,0.3) 0%, transparent 70%); }
.glow-br { bottom: -30px; right: -30px; background: radial-gradient(circle, rgba(255,200,0,0.25) 0%, transparent 70%); }

/* ── FEATURES ── */
.features-section { background: linear-gradient(180deg, var(--bg) 0%, #0c0c12 100%); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,122,0,0.15);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(255,122,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,122,0,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: block;
}
.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.feature-card p { color: #889; font-size: 0.95rem; line-height: 1.65; }

/* ── STATS ── */
.stats-section {
  background: linear-gradient(180deg, #0d0d14 0%, var(--bg) 100%);
  padding: 60px 5%;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 20px var(--glow-orange);
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── ABOUT ── */
.about-section { background: linear-gradient(180deg, var(--bg) 0%, #0e0e15 50%, var(--bg) 100%); position: relative; overflow: hidden; }
.about-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.about-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}
.about-text p {
  color: #99a;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.about-logo img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(255,122,0,0.3));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid rgba(255,122,0,0.12);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.3s;
}
.value-item:hover { border-color: rgba(255,122,0,0.35); }
.value-icon { font-size: 1.6rem; flex-shrink: 0; }
.value-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.2rem;
}
.value-item p { color: #778; font-size: 0.9rem; }

/* ── COMMUNITY CTA ── */
.cta-section {
  text-align: center;
  padding: 120px 5%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(2.8rem, 6vw, 5rem); position: relative; z-index: 1; }
.cta-section .section-sub { margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-buttons { position: relative; z-index: 1; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* game-site button */
.btn-game-site {
  background: linear-gradient(135deg, #ff2475 0%, #ff4a8d 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,36,117,0.3);
}
.btn-game-site:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,36,117,0.4), 0 0 0 3px rgba(255,36,117,0.1);
}
.btn-game-site img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* discord button */
.btn-discord {
  background: #5865F2;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(88,101,242,0.3);
}
.btn-discord:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88,101,242,0.4), 0 0 0 3px rgba(88,101,242,0.1);
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid rgba(255,122,0,0.1);
  padding: 80px 5% 40px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand .footer-logo {
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand .footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px var(--glow-orange));
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 260px;
}
.footer-links h5 {
  font-family: 'Adumu', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
h5 {
  font-family: 'Adumu', 'Barlow Condensed', sans-serif;
  font-weight: 400;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  padding: 8px;
}
.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s;
}
.social-btn:hover {
  border-color: rgba(255,122,0,0.4);
  background: rgba(255,122,0,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.social-btn:hover img { filter: brightness(1.15); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .game-section-pink .game-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Nav: always visible inline, no hamburger, bigger on mobile */
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.6rem 3%;
    gap: 0;
  }
  .nav-hamburger { display: none !important; }
  .nav-overlay { display: none !important; }
  .nav-toggle-input:checked ~ .nav-links { right: auto; position: static; }
  .nav-links {
    position: static;
    transform: none;
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.3rem 0 0.5rem;
    gap: 0;
    border-left: none;
    box-shadow: none;
    background: none;
    height: auto;
    flex-direction: row;
  }
  .nav-links a { font-size: 0.85rem; padding: 0.4rem 0.7rem; }
  .nav-language { margin-left: auto; }

  section { padding: 60px 5%; }
  .game-section-pink { padding: 60px 5%; }
  .hero { padding: 110px 5% 50px; min-height: auto; }
  .hero-scroll-indicator { display: none; }
  .hero-orb { display: none; }
  .page-hero { padding: 100px 5% 50px; }

  .game-inner, .about-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .game-title { white-space: normal; }
  .game-title br { display: none; }
  .game-section-pink .game-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .game-section-pink .game-art-showcase { aspect-ratio: 16/9; }
  .game-section-pink .game-visual { order: 2; }
  .game-section-pink .game-text-right { order: 1; }

  /* center alignment on mobile */
  .game-text-right { text-align: center; }
  .game-text-right .game-badge { margin-left: auto; margin-right: auto; }
  .game-text-right .store-buttons { justify-content: center; }
  .game-text-right .game-action-buttons { justify-content: center; }
  .game-badge { margin-left: auto; margin-right: auto; }
  .store-buttons { justify-content: center; }
  .game-action-buttons { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .game-text div[style] { justify-content: center !important; }

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

  .about-logo-showcase { aspect-ratio: auto; padding: 2rem 0; }
  .about-logo-showcase img { max-width: 50%; }

  /* Compact footer on mobile */
  footer { padding: 40px 5% 24px; }
  .footer-top { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .footer-brand { width: 100%; text-align: center; }
  .footer-brand .footer-logo { display: flex; justify-content: center; }
  .footer-brand p { max-width: none; }
  .footer-socials { justify-content: center; }
  .footer-links { flex: 1; min-width: 120px; text-align: left; }
  .footer-links h5 { font-size: 0.75rem; margin-bottom: 0.6rem; }
  .footer-links a { font-size: 0.82rem; }
  .footer-links ul { gap: 0.35rem; }
  .footer-socials { margin-top: 0.8rem; }
  .social-btn { width: 36px; height: 36px; padding: 6px; }
  .footer-bottom { padding-top: 1rem; }
  .footer-bottom p { font-size: 0.78rem; }

  .cta-section { padding: 80px 5%; }
  .hero-buttons .btn { white-space: nowrap; }
}

@media (max-width: 480px) {
  nav { padding: 0.5rem 1rem; }
  .nav-logo img { height: 32px; }
  .nav-links a { font-size: 0.78rem; padding: 0.35rem 0.5rem; letter-spacing: 0; }

  section { padding: 44px 1rem; }
  .game-section-pink { padding: 44px 1rem; }
  .hero { padding: 90px 1rem 44px; }
  .page-hero { padding: 84px 1rem 36px; }

  .hero-logo-img { max-width: 260px; }
  .hero-desc { font-size: 0.9rem; }
  .hero-tagline { letter-spacing: 0.05em; font-size: 0.95rem; margin-bottom: 1.2rem; }
  .hero-buttons { gap: 0.5rem; }
  .hero-buttons .btn { font-size: 0.75rem; padding: 0.55rem 1rem; white-space: nowrap; }

  .section-title { font-size: clamp(2rem, 6vw, 3rem); }
  .game-title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Keep buttons in rows, scale down */
  .store-buttons { gap: 0.4rem; }
  .store-buttons-row { gap: 0.3rem; flex-wrap: nowrap; }
  .store-btn { padding: 0.3rem 0.45rem; min-width: auto; gap: 0.3rem; }
  .store-btn svg { width: 16px; height: 16px; }
  .store-btn-text small { font-size: 0.4rem; white-space: nowrap; }
  .store-btn-text strong { font-size: 0.65rem; }
  .game-action-buttons { gap: 0.4rem; flex-wrap: wrap; }
  .game-action-buttons .btn { font-size: 0.68rem; padding: 0.45rem 0.7rem; white-space: nowrap; }

  .game-section-pink .game-inner { max-width: 100%; margin: 0 auto; }
  .game-section-pink .store-btn { padding: 0.35rem 0.55rem; }
  .game-section-pink .store-btn svg { width: 18px; height: 18px; }
  .game-section-pink .store-btn-text small { font-size: 0.45rem; }
  .game-section-pink .store-btn-text strong { font-size: 0.72rem; }
  .game-section-pink .game-action-buttons .btn { font-size: 0.62rem; padding: 0.4rem 0.6rem; }

  .game-section-games .store-btn { padding: 0.3rem 0.45rem; gap: 0.3rem; }
  .game-section-games .store-btn svg { width: 16px; height: 16px; }
  .game-section-games .store-btn-text small { font-size: 0.4rem; }
  .game-section-games .store-btn-text strong { font-size: 0.65rem; }

  .stats-section { padding: 40px 1rem; }
  .stat-number { font-size: 2.4rem; }
  .stats-inner { gap: 1.2rem; }

  .features-grid, .contact-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { padding: 1.5rem 1.2rem; }

  .about-inner { gap: 2rem; }
  .about-logo img { max-width: 200px; }
  .about-logo-showcase img { max-width: 60%; }

  .cta-section { padding: 50px 1rem; }

  /* Even more compact footer */
  footer { padding: 30px 1rem 20px; }
  .footer-top { gap: 1rem; }
  .footer-links { min-width: 100px; }
  .footer-links h5 { font-size: 0.7rem; margin-bottom: 0.5rem; }
  .footer-links a { font-size: 0.78rem; }
  .footer-links ul { gap: 0.3rem; }
  .social-btn { width: 32px; height: 32px; padding: 5px; }
  .footer-brand .footer-logo img { height: 40px; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; padding-top: 0.8rem; }
  .footer-legal { justify-content: center; }
}

/* ── HERO LOGO IMAGE ── */
.hero-logo-img {
  position: relative; z-index: 1;
  max-width: 480px;
  width: 75%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 50px rgba(255,122,0,0.4)) drop-shadow(0 0 15px rgba(255,122,0,0.2));
  animation: fadeInUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── PALM WATERMARK ── */
.palm-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.palm-watermark img {
  display: block;
  width: 100%;
  height: auto;
}
.palm-wm-hero {
  width: min(680px, 90vw);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.055;
  filter: blur(3px) brightness(1.5) sepia(0.3);
}
.palm-wm-features {
  width: min(500px, 60vw);
  bottom: -80px; right: -60px;
  opacity: 0.04;
  filter: blur(2px) brightness(1.2);
}
.palm-wm-cta {
  width: min(560px, 70vw);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  filter: blur(4px) brightness(1.3);
}

/* ── STORE BUTTONS ── */
.store-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 145px;
  backdrop-filter: blur(4px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-text small {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}
.store-btn-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ── GAME ART SHOWCASE ── */
.game-art-showcase {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid rgba(255,122,0,0.2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 80px rgba(255,100,0,0.15), 0 25px 70px rgba(0,0,0,0.7);
  background: radial-gradient(ellipse at 30% 60%, rgba(255,80,0,0.28) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 35%, rgba(255,180,0,0.15) 0%, transparent 45%),
              linear-gradient(135deg, #1a0e05 0%, #2d1800 40%, #0a0a0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.game-art-showcase::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 2;
}
.game-art-showcase-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.game-art-showcase-inner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 30px var(--glow-orange);
}
.game-art-showcase-inner span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--orange);
  margin-top: 0.4rem;
  text-transform: uppercase;
}
.game-art-showcase:hover .game-art-showcase-inner h3 {
  text-shadow: 0 0 50px rgba(255,122,0,0.9);
}
.game-art-showcase .showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
.game-art-showcase:hover .showcase-img { transform: scale(1.04); }

/* ── ABOUT LOGO SHOWCASE ── */
.about-logo-showcase {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(255,122,0,0.04) 0%, transparent 70%);
}
.about-logo-showcase img {
  max-width: 65%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,122,0,0.25)) drop-shadow(0 0 10px rgba(255,122,0,0.15));
  animation: floatLogo 6s ease-in-out infinite;
}

/* ── SUB-PAGE HERO ── */
.page-hero {
  padding: 130px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 25s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 0.6rem; }
.page-hero .section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--orange-light) 0%, var(--white) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p { position: relative; z-index: 1; color: #99a; font-size: 1.05rem; max-width: 560px; margin: 1rem auto 0; }
.page-hero .hero-eyebrow { position: relative; z-index: 1; }
.page-hero .hero-buttons { position: relative; z-index: 1; }

/* Contact page: push footer to bottom, center content vertically */
.contact-page { display: flex; flex-direction: column; min-height: 100vh; }
.contact-page > footer { margin-top: auto; }
.contact-page > .page-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 5% 3rem;
}

/* Page-hero entrance animations (all pages) */
.page-hero .section-title {
  opacity: 0;
  animation: fadeInUp 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero > p {
  opacity: 0;
  animation: fadeInUp 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Contact page hero entrance animations */
.contact-page .page-hero .hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Credits page: keep page-hero small, let section fill remaining space */
.credits-page > .page-hero { flex: 0 0 auto; padding: 100px 5% 40px; }
.credits-page > section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Games page pink hero variant */
.games-page-hero::after {
  background: radial-gradient(ellipse, rgba(255,36,117,0.12) 0%, transparent 70%);
}
.games-page-hero .hero-eyebrow {
  color: #ff2475;
  border-color: rgba(255,36,117,0.25);
  background: rgba(255,36,117,0.05);
}

/* Games page pink game section */
.game-section-games {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0510 20%, #0f0818 50%, #0a0510 80%, var(--bg) 100%);
}
.game-section-games .store-btn {
  padding: 0.5rem 0.85rem;
  min-width: auto;
  gap: 0.5rem;
}
.game-section-games .store-btn svg {
  width: 22px; height: 22px;
}
.game-section-games .store-btn-text small {
  font-size: 0.52rem;
  white-space: nowrap;
}
.game-section-games .store-btn-text strong {
  font-size: 0.85rem;
}
.game-section-games::before {
  background: radial-gradient(ellipse at 70% 30%, rgba(255,36,117,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(180,40,255,0.05) 0%, transparent 50%);
  width: 100%; height: 100%;
  top: 0; right: 0;
}
.game-section-games .game-badge {
  background: linear-gradient(135deg, #ff2475, #ff4a8d);
  box-shadow: 0 0 16px rgba(255,36,117,0.3);
}
.game-section-games .game-title {
  text-shadow: 0 0 40px rgba(255,36,117,0.35), 0 0 80px rgba(255,36,117,0.15);
}
.game-section-games .game-art-showcase {
  aspect-ratio: 16/8;
  border-color: rgba(255,36,117,0.2);
  box-shadow: 0 0 80px rgba(255,36,117,0.2), 0 30px 80px rgba(0,0,0,0.7);
}
.game-section-games .game-art-showcase:hover {
  border-color: rgba(255,36,117,0.4);
  box-shadow: 0 0 120px rgba(255,36,117,0.3), 0 30px 80px rgba(0,0,0,0.7);
}
.game-section-games .store-btn:hover {
  background: rgba(255,36,117,0.06);
  border-color: rgba(255,36,117,0.3);
}
.game-section-games .glow-tl {
  background: radial-gradient(circle, rgba(255,36,117,0.3) 0%, transparent 70%);
}
.game-section-games .glow-br {
  background: radial-gradient(circle, rgba(180,40,255,0.2) 0%, transparent 70%);
}
/* Games features section pink theme */
.features-section-pink .game-badge {
  background: linear-gradient(135deg, #ff2475, #ff4a8d);
  box-shadow: 0 0 16px rgba(255,36,117,0.3);
}
.features-section-pink .feature-card:hover {
  border-color: rgba(255,36,117,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,36,117,0.1);
}
.features-section-pink .feature-card::before {
  background: linear-gradient(90deg, transparent, #ff2475, transparent);
}

/* ── ABOUT PAGE HERO ── */
.about-page-hero {
  background: radial-gradient(ellipse at 50% 100%, rgba(255,122,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(255,122,0,0.04) 0%, transparent 50%),
              var(--bg);
}
.about-page-hero::after {
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,122,0,0.18) 0%, rgba(255,122,0,0.06) 40%, transparent 70%);
}
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.page-hero-orb-1 {
  width: 260px; height: 260px;
  top: 10%; left: 5%;
  background: radial-gradient(circle, rgba(255,122,0,0.07) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.page-hero-orb-2 {
  width: 180px; height: 180px;
  bottom: 15%; right: 8%;
  background: radial-gradient(circle, rgba(255,170,68,0.05) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}

/* ── LEGAL / CONTENT PAGES ── */
.features-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin: 1.8rem 0 0.5rem;
}
.features-section h3:first-child { margin-top: 0; }
.features-section p {
  line-height: 1.7;
}
.features-section a:not(.btn):not(.store-btn):not(.social-btn) {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.features-section a:not(.btn):not(.store-btn):not(.social-btn):hover {
  color: var(--gold);
}

/* ── CONTACT SECTION ── */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,122,0,0.15);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.contact-card:hover {
  border-color: rgba(255,122,0,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px var(--glow-orange);
}
.contact-card .contact-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  margin-bottom: 0.4rem;
}
.contact-card p { color: #889; font-size: 0.9rem; }

/* ── COMMUNITY SOCIALS GRID ── */
.socials-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-3);
  border: 1px solid rgba(255,122,0,0.15);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s;
}
.social-card:hover {
  border-color: rgba(255,122,0,0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 24px var(--glow-orange);
}
.social-card img { width: 48px; height: 48px; object-fit: contain; }
.social-card span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ── LANGUAGE SWITCHER ── */
.nav-language {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 4px;
  padding: 0.3rem 0.65rem;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  margin-left: 1rem;
}
.nav-language:hover {
  border-color: var(--orange);
  background: rgba(255,122,0,0.1);
}
.nav-language img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* language toggle visibility */
html.lang-en .lang-de { display: none !important; }
html.lang-de .lang-en { display: none !important; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* Staggered feature card reveal */
.reveal.revealed .feature-card { opacity: 0; animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .feature-card:nth-child(1) { animation-delay: 0s; }
.reveal.revealed .feature-card:nth-child(2) { animation-delay: 0.1s; }
.reveal.revealed .feature-card:nth-child(3) { animation-delay: 0.2s; }
.reveal.revealed .feature-card:nth-child(4) { animation-delay: 0.3s; }

/* Game section inner elements stagger on reveal */
.reveal.revealed .game-badge { opacity: 0; animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .game-title { opacity: 0; animation: fadeInUp 0.6s 0.08s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .game-desc { opacity: 0; animation: fadeInUp 0.6s 0.14s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .store-buttons { opacity: 0; animation: fadeInUp 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .game-action-buttons { opacity: 0; animation: fadeInUp 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .game-visual { opacity: 0; animation: fadeInUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal.revealed .about-logo-showcase { opacity: 0; animation: fadeInUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Footer subtle entrance */
footer .footer-inner { opacity: 1; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Divider glow pulse */
.divider {
  animation: dividerGlow 3s ease-in-out infinite alternate;
}
@keyframes dividerGlow {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* Button hover glow pulse for feature cards */
.feature-card .btn { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* Floating animation for page hero orbs */
.page-hero-orb { transition: opacity 0.4s; }
