:root {
  --bg-main: #050805;
  --bg-darker: #020402;
  --bg-surface: #0a110a;
  --bg-surface-elevated: #111c11;
  --bg-glass: rgba(10, 17, 10, 0.75);
  --bg-glass-card: rgba(14, 23, 14, 0.7);
  --bg-glass-card-hover: rgba(20, 34, 20, 0.9);
  --border-subtle: rgba(204, 255, 0, 0.15);
  --border-focus: rgba(204, 255, 0, 0.6);
  --border-glow: rgba(204, 255, 0, 0.4);

  --color-volt: #ccff00;
  --color-volt-bright: #d4ff00;
  --color-volt-dark: #a6d400;
  --color-volt-glow: rgba(204, 255, 0, 0.4);

  --color-primary: #ccff00;
  --color-cyan: #00e5ff;
  --color-orange: #ff7700;
  --color-amber: #ffb703;
  --color-rose: #ff2a6d;

  --text-main: #e6f0e6;
  --text-muted: #9ab09a;
  --text-dim: #607560;
  --text-highlight: #ffffff;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.85);
  --shadow-volt: 0 0 30px rgba(204, 255, 0, 0.35);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 25%, rgba(204, 255, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 70%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(204, 255, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-highlight);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background: #020402;
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(204, 255, 0, 0.12);
  color: var(--color-volt);
  border: 1px solid rgba(204, 255, 0, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.top-bar-links span,
.top-bar-links a {
  white-space: nowrap;
}

.top-bar-links a {
  color: var(--text-muted);
}

.top-bar-links a:hover {
  color: var(--color-volt);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 5, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.header-scrolled {
  background: rgba(2, 4, 2, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(204, 255, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: #ffffff;
  white-space: nowrap;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-volt);
  box-shadow: 0 0 18px var(--color-volt-glow);
  flex-shrink: 0;
}

.logo-badge svg {
  width: 22px;
  height: 22px;
  fill: #050805;
}

.logo-text span {
  color: var(--color-volt);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  text-transform: capitalize;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-volt);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--color-volt);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-volt {
  background: var(--color-volt);
  color: #050805;
  box-shadow: 0 4px 24px var(--color-volt-glow);
}

.btn-volt:hover {
  background: var(--color-volt-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204, 255, 0, 0.6);
  color: #000000;
}

.btn-outline {
  background: rgba(14, 23, 14, 0.6);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(204, 255, 0, 0.15);
  border-color: var(--color-volt);
  color: var(--color-volt);
  transform: translateY(-2px);
}

.btn-circle-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-volt);
  color: #050805;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--color-volt-glow);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.btn-circle-arrow:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
}

.btn-circle-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.burger-btn {
  display: none;
  background: rgba(14, 24, 14, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 1010;
  position: relative;
  flex-shrink: 0;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-volt);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-volt);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 4, 2, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 950;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.hero-fatninja {
  position: relative;
  padding: 50px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(18, 55, 18, 0.6) 0%, rgba(5, 8, 5, 0.95) 70%),
    url('../images/hero-globe-bg.webp') center 40% / min(1000px, 100%) no-repeat;
}

.hero-header-center {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 28px;
}

.hero-stage-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-left-widget {
  flex: 0 0 310px;
  max-width: 310px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nft-style-card {
  background: rgba(14, 24, 14, 0.85);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: all var(--transition-normal);
}

.nft-style-card:hover {
  border-color: var(--color-volt);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--shadow-volt);
}

.nft-card-avatar {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #081008;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.nft-style-card:hover .nft-card-avatar img {
  transform: scale(1.06);
}

.nft-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 10, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: var(--radius-full);
}

.rarity-score-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.rarity-score-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
}

.character-caption {
  padding: 0 8px;
}

.character-caption-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
}

.character-caption-title svg {
  width: 18px;
  height: 18px;
  fill: var(--color-volt);
}

.character-caption-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-center-mascot {
  flex: 1 1 auto;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mascot-img-wrap {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
  position: relative;
  z-index: 2;
}

.mascot-platform-shadow {
  width: 320px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(204, 255, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 70%);
  border-radius: 50%;
  margin-top: -20px;
}

.hero-right-widget {
  flex: 0 0 290px;
  max-width: 290px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-row-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.stat-row-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-giant-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-row-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.floating-pills-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 24, 14, 0.85);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.floating-pill:hover {
  background: var(--color-volt);
  color: #050805;
  border-color: var(--color-volt);
}

.floating-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.section-about-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
  width: 100%;
}

.tag-label-small {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-volt);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.about-banner-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
}

.about-banner-title span {
  color: var(--color-volt);
}

.collection-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  margin-bottom: 60px;
}

.speech-bubble-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--color-orange);
  color: #050805;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.4);
  z-index: 5;
  white-space: nowrap;
}

.speech-bubble-tag.tag-volt {
  background: var(--color-volt);
  box-shadow: 0 4px 12px var(--color-volt-glow);
}

.collection-card {
  position: relative;
  background: rgba(14, 24, 14, 0.8);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  max-width: 100%;
  transition: all var(--transition-normal);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-volt);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--shadow-volt);
  background: rgba(18, 30, 18, 0.95);
}

.collection-avatar-wrap {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #081008;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.collection-card:hover .collection-avatar-wrap img {
  transform: scale(1.08);
}

.collection-card-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.collection-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-dark {
  background: #020402;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
  width: 100%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.35);
  color: var(--color-volt);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.spotlight-box {
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95) 0%, rgba(20, 36, 20, 0.85) 100%);
  border: 2px solid rgba(204, 255, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-volt);
  position: relative;
  overflow: hidden;
}

.spotlight-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.spotlight-text-side {
  flex: 1 1 55%;
  width: 100%;
}

.spotlight-visual {
  flex: 1 1 45%;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(204, 255, 0, 0.25);
  box-shadow: var(--shadow-lg);
  background: #081008;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.spotlight-title {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.spotlight-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.spotlight-feature-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.spotlight-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-volt);
  flex-shrink: 0;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
}

.game-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(25% - 22px);
  min-width: 260px;
  max-width: 100%;
  transition: all var(--transition-normal);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-volt);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), var(--shadow-volt);
  background: var(--bg-glass-card-hover);
}

.game-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #081008;
}

.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.game-card:hover .game-thumb {
  transform: scale(1.08);
}

.game-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(5, 10, 5, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(204, 255, 0, 0.3);
  color: var(--color-volt);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 5, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.game-card:hover .game-play-overlay {
  opacity: 1;
}

.play-icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-volt);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--color-volt-glow);
  transform: scale(0.85);
  transition: transform var(--transition-fast);
}

.game-card:hover .play-icon-btn {
  transform: scale(1);
}

.play-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: #050805;
  margin-left: 3px;
}

.game-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.game-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.game-badge-free {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-volt);
  background: rgba(204, 255, 0, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(204, 255, 0, 0.3);
  white-space: nowrap;
}

.leaderboard-table-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th {
  background: rgba(2, 4, 2, 0.95);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-volt);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.custom-table td {
  padding: 18px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.custom-table tr:hover td {
  background: rgba(204, 255, 0, 0.05);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.rank-1 {
  background: var(--color-volt);
  color: #000;
}

.rank-2 {
  background: #e0e0e0;
  color: #000;
}

.rank-3 {
  background: #cd7f32;
  color: #fff;
}

.rank-other {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-volt), var(--color-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #000;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--color-volt);
  background: var(--bg-surface-elevated);
}

.faq-question {
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-volt);
}

.faq-item.active .faq-icon svg {
  fill: #050805;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95) 0%, rgba(22, 40, 22, 0.9) 100%);
  border: 2px solid rgba(204, 255, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-volt);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.cta-desc {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.policy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
}

.policy-clause {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-clause:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.clause-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.clause-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #050805;
  background: var(--color-volt);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--color-volt-glow);
}

.clause-title {
  font-size: 1.3rem;
  color: #ffffff;
}

.clause-content {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  padding-left: 52px;
}

.clause-content p {
  margin-bottom: 12px;
}

.clause-content ul {
  margin: 12px 0 16px 20px;
}

.clause-content li {
  margin-bottom: 6px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  width: 100%;
}

.contact-info-card,
.contact-form-card {
  flex: 1 1 calc(50% - 18px);
  min-width: 280px;
}

.contact-info-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-volt);
}

.contact-details h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--color-volt);
}

.contact-form-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(5, 10, 5, 0.8);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-volt);
  box-shadow: 0 0 14px var(--color-volt-glow);
  background: rgba(5, 10, 5, 0.95);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-checkbox input {
  margin-top: 4px;
  accent-color: var(--color-volt);
}

.form-success-message {
  display: none;
  background: rgba(204, 255, 0, 0.15);
  border: 1px solid var(--color-volt);
  color: var(--color-volt);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-weight: 700;
  text-align: center;
}

.age-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 4, 2, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal.active {
  display: flex;
}

.age-modal-box {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.98) 0%, rgba(20, 36, 20, 0.95) 100%);
  border: 2px solid rgba(204, 255, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--shadow-volt);
  text-align: center;
}

.age-modal-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.age-modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.age-modal-notice {
  background: rgba(5, 10, 5, 0.85);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-size: 0.85rem;
  color: #e6f0e6;
  margin-bottom: 26px;
}

.age-modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 4, 2, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.game-modal.active {
  display: flex;
}

.game-modal-container {
  width: 100%;
  max-width: 1100px;
  height: 85vh;
  background: #081008;
  border: 1px solid rgba(204, 255, 0, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-volt);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.game-modal-header {
  height: 60px;
  background: #050a05;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.game-modal-title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--transition-fast);
}

.modal-action-btn:hover {
  background: var(--color-volt);
  color: #050805;
  border-color: var(--color-volt);
}

.modal-action-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.game-modal-iframe-wrapper {
  flex-grow: 1;
  width: 100%;
  height: calc(100% - 60px);
  position: relative;
  background: #000000;
}

.game-modal-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 50px;
}

.page-title {
  font-size: 3.2rem;
  margin-bottom: 14px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto;
}

.game-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--color-volt);
  color: #050805;
  border-color: var(--color-volt);
  box-shadow: 0 0 16px var(--color-volt-glow);
}

.search-box {
  position: relative;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  background: rgba(5, 10, 5, 0.8);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 42px;
  font-size: 0.9rem;
  color: #ffffff;
}

.search-box input:focus {
  outline: none;
  border-color: var(--color-volt);
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--color-volt);
}

.gameplay-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}

.gameplay-frame {
  width: 100%;
  height: 650px;
  background: #000;
}

.gameplay-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gameplay-toolbar {
  background: #050a05;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
}

.footer {
  background: #020402;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
  color: var(--text-muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col-brand {
  flex: 1 1 320px;
}

.footer-col-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 340px;
}

.footer-col-links {
  flex: 1 1 180px;
}

.footer-col-contact {
  flex: 1 1 260px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--color-volt);
  padding-left: 4px;
}

.footer-responsible-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(14, 24, 14, 0.6);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-md);
}

.responsible-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 10, 5, 0.8);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.responsible-partner-link:hover {
  background: var(--color-volt);
  color: #050805;
  border-color: var(--color-volt);
}

.footer-disclaimer-box {
  background: rgba(10, 18, 10, 0.8);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #9ab09a;
}

.footer-disclaimer-box strong {
  color: var(--color-volt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1100px) {
  .burger-btn {
    display: flex !important;
  }

  .nav {
    display: none !important;
    position: fixed !important;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #060b06 !important;
    border-left: 1px solid rgba(204, 255, 0, 0.3) !important;
    flex-direction: column !important;
    align-items: flex-start;
    padding: 96px 28px 36px !important;
    gap: 24px;
    z-index: 1005 !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95) !important;
    overflow-y: auto;
  }

  .nav.active {
    display: flex !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
    gap: 18px;
    list-style: none;
  }

  .nav-link {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #e6f0e6 !important;
    width: 100%;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: block !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-volt) !important;
    padding-left: 6px !important;
  }

  .header-actions {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 12px;
  }

  .header-actions .btn {
    width: 100%;
    display: inline-flex !important;
    text-align: center;
    justify-content: center;
  }

  .hero-stage-grid {
    flex-direction: column;
    gap: 32px;
  }

  .hero-left-widget,
  .hero-center-mascot,
  .hero-right-widget {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-center-mascot {
    order: 1;
  }

  .hero-left-widget {
    order: 2;
  }

  .hero-right-widget {
    order: 3;
  }

  .collection-card {
    flex: 1 1 calc(50% - 16px);
  }

  .spotlight-grid {
    flex-direction: column;
    gap: 28px;
  }

  .spotlight-text-side,
  .spotlight-visual {
    flex: 1 1 100%;
  }

  .contact-info-card,
  .contact-form-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 1024px) {
  .top-bar-content {
    justify-content: center;
    gap: 12px;
  }

  .top-bar-links span {
    display: none;
  }
}

@media (max-width: 768px) {

  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .top-bar-links {
    display: none;
  }

  .top-bar-content {
    justify-content: center;
  }

  .section {
    padding: 50px 0;
  }

  .hero-fatninja {
    padding: 36px 0 60px;
  }

  .hero-main-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .about-banner-title {
    font-size: 1.8rem;
  }

  .spotlight-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .spotlight-box {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .collection-card {
    flex: 1 1 100%;
    padding: 20px 16px;
  }

  .collection-avatar-wrap {
    height: 220px;
  }

  .game-card {
    flex: 1 1 100%;
    min-width: 0;
  }

  .spotlight-feature-item {
    flex: 1 1 100%;
  }

  .cta-banner {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .page-header {
    padding: 40px 0 28px;
    margin-bottom: 32px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .policy-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .clause-header {
    gap: 12px;
  }

  .clause-title {
    font-size: 1.15rem;
  }

  .clause-content {
    padding-left: 0;
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .age-modal-box {
    padding: 28px 18px;
  }

  .age-modal-title {
    font-size: 1.45rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.85rem;
  }

  .section-title,
  .about-banner-title,
  .spotlight-title,
  .cta-title,
  .page-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .header-inner {
    height: 68px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-badge {
    width: 34px;
    height: 34px;
  }

  .logo-badge svg {
    width: 18px;
    height: 18px;
  }

  .stat-giant-num {
    font-size: 2.2rem;
  }

  .footer-responsible-row {
    flex-direction: column;
    align-items: stretch;
  }

  .responsible-partner-link {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}