/* ================= MATR1X GLOBAL STYLE SYSTEM ================= */
:root {
  --color-bg: #030509;
  --color-card-bg: rgba(8, 12, 28, 0.65);
  --color-card-border: rgba(255, 255, 255, 0.05);
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #475569;
  
  --color-primary: #00f0ff;
  --color-primary-rgb: 0, 240, 255;
  --color-secondary: #b800ff;
  --color-secondary-rgb: 184, 0, 255;
  
  --gradient-neon: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-neon-hover: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-primary: 0 0 40px rgba(0, 240, 255, 0.2);
  --shadow-secondary: 0 0 40px rgba(184, 0, 255, 0.2);
  --shadow-card-glow: 0 10px 40px rgba(0, 240, 255, 0.08), 0 0 25px rgba(184, 0, 255, 0.05);
  --shadow-neon-hover: 0 20px 50px rgba(0, 240, 255, 0.22), 0 0 30px rgba(184, 0, 255, 0.18), inset 0 0 15px rgba(0, 240, 255, 0.08);
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-quick: all 0.2s ease;
}

/* ================= RESET & BASIC ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-family);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= BACKGROUND EFFECT ================= */
.cyber-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
}

.glow-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.45) 0%, transparent 70%);
  top: -250px;
  left: -200px;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

.glow-orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.4) 0%, transparent 70%);
  bottom: -250px;
  right: -200px;
  animation: orbFloat 30s infinite alternate-reverse ease-in-out;
}

.glow-orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbDrift 28s infinite linear;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, 90px) scale(1.2); }
}

@keyframes orbDrift {
  0% { transform: translate(-50%, -50%) rotate(0deg) translate(120px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translate(120px) rotate(-360deg); }
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-gradient {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #00f0ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(90deg, #d900ff 0%, #7000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================= LAYOUT CONTAINER ================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 10;
}

/* ================= HEADER STYLE ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  background: rgba(3, 5, 9, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-card-border);
  z-index: 100;
  transition: var(--transition-medium);
}

header.scrolled {
  height: 72px;
  background: rgba(3, 5, 9, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--color-text-primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-quick);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: var(--transition-quick);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-medium);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-neon);
  color: #000000;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-primary);
  border: 1px solid var(--color-card-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  transform: translateY(-3px);
}

/* ================= CARDS SYSTEM ================= */
.cyber-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cyber-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.cyber-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--shadow-neon-hover);
}

/* ================= SECTION COMMON & DECORATIONS ================= */
section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

.section-header-box {
  position: relative;
  margin-bottom: 70px;
  width: 100%;
}

.section-bg-deco-text {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

.section-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 4px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--color-text-primary);
}

.section-desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 720px;
  line-height: 1.7;
}

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

/* ================= HERO SECTION ================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
}

.hero-grid {
  display: grid;
  grid-template-cols: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-tag {
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.18);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

/* HERO仪表盘式指标看板 */
.hero-stats-dashboard {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 16px;
}

.dashboard-stat-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  text-align: center;
}

.dashboard-stat-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.dashboard-stat-card p {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12) 0%, rgba(184, 0, 255, 0.12) 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  animation: visualFloat 7s infinite ease-in-out alternate;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: var(--gradient-neon);
  z-index: -1;
  opacity: 0.25;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.hero-visual-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

/* ================= GAMES SECTION (ALT LARGE CARDS) ================= */
.games-alt-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.game-alt-row {
  display: grid;
  grid-template-cols: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 40px;
}

.game-alt-row:nth-child(even) {
  grid-template-cols: 0.9fr 1.1fr;
}

.game-alt-row:nth-child(even) .game-alt-info {
  order: 1;
}

.game-alt-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.game-alt-tag {
  background: rgba(184, 0, 255, 0.08);
  border: 1px solid rgba(184, 0, 255, 0.2);
  color: #c026d3;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.game-alt-tag.primary-tag {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--color-primary);
}

.game-alt-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.game-alt-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.game-alt-bullets {
  list-style: none;
  margin-bottom: 36px;
}

.game-alt-bullets li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-primary);
}

.game-alt-bullets li i {
  color: var(--color-primary);
  font-size: 12px;
  width: 16px;
}

.game-alt-visual {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-card-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  cursor: pointer;
}

.game-alt-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-alt-visual:hover .game-alt-img {
  transform: scale(1.05);
}

/* ================= TOKENOMICS SECTION (3-COLUMN CENTRAL) ================= */
.tokenomics-alt-grid {
  display: grid;
  grid-template-cols: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

.tokenomics-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.tokenomics-center-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.central-coin-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  animation: visualFloat 6s infinite ease-in-out alternate;
}

.central-coin-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(184, 0, 255, 0.2);
}

.central-coin-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.15) 0%, transparent 60%);
  filter: blur(35px);
  z-index: -1;
  pointer-events: none;
}

.central-coin-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
  max-width: 240px;
  margin: 0 auto;
}

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

.tokenomics-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.08);
}

.icon-max {
  background: rgba(184, 0, 255, 0.1);
  color: var(--color-secondary);
  border-color: rgba(184, 0, 255, 0.3);
}

.icon-fire {
  background: rgba(0, 240, 255, 0.1);
  color: var(--color-primary);
  border-color: rgba(0, 240, 255, 0.3);
}

.tokenomics-title h3 {
  font-size: 24px;
  font-weight: 800;
}

.tokenomics-title p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.tokenomics-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.tokenomics-properties {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.property-row {
  margin-bottom: 16px;
}

.property-row:last-child {
  margin-bottom: 0;
}

.property-lbl {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.property-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* ================= NFT ASSETS (HIERARCHY LAYOUT) ================= */
.nft-alt-grid {
  display: grid;
  grid-template-cols: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.nft-main-card {
  padding: 40px;
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.nft-main-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.nft-main-img-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(184, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.15) 100%);
  animation: visualFloat 8s infinite ease-in-out alternate-reverse;
}

.nft-main-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--gradient-neon);
  z-index: -1;
  opacity: 0.25;
}

.nft-main-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.nft-main-info {
  display: flex;
  flex-direction: column;
}

.nft-side-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nft-side-card {
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nft-side-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.nft-side-info h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.nft-side-info p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ================= PARTNERS RUNNING MARQUEE (HIGH END) ================= */
.partners-alt-section {
  padding: 80px 0;
  background: rgba(3, 5, 9, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.marquee-row {
  display: flex;
  width: 200%; /* Make width enough to scroll smoothly */
  gap: 20px;
}

.marquee-track-left {
  display: flex;
  gap: 20px;
  animation: scrollLeft 35s linear infinite;
}

.marquee-track-right {
  display: flex;
  gap: 20px;
  animation: scrollRight 35s linear infinite;
}

.marquee-card {
  width: 240px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.012);
  border-radius: 12px;
  flex-shrink: 0;
}

.marquee-card p {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ================= ROADMAP SECTION ================= */
.roadmap-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0 auto;
}

.roadmap-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), rgba(255, 255, 255, 0.05));
  transform: translateX(-50%);
}

.roadmap-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 48px;
  position: relative;
}

.roadmap-dot {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 3px solid var(--color-primary);
  transform: translateX(-50%);
  z-index: 20;
}

.roadmap-item.active .roadmap-dot {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary);
  background: var(--color-primary);
}

.roadmap-item.completed .roadmap-dot {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}

.roadmap-content-wrapper {
  width: 45%;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-card {
  padding: 28px;
}

.roadmap-phase {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.roadmap-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.roadmap-list {
  list-style: none;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.roadmap-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}

.roadmap-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--color-primary);
}

/* ================= FAQ SECTION (TWO COLUMN HIGH END) ================= */
.faq-two-col-grid {
  display: grid;
  grid-template-cols: 0.38fr 1.62fr;
  gap: 50px;
  align-items: start;
}

.faq-promo-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.03) 0%, rgba(184, 0, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.05);
}

.faq-promo-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-promo-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  cursor: pointer;
  padding: 24px;
}

.faq-question-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition-quick);
}

.faq-toggle-icon {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.faq-answer {
  padding-top: 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.06);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-item.active .faq-answer-box {
  opacity: 1;
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 120px 0;
}

.cta-card {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(5, 8, 20, 0.95) 100%);
  border-color: rgba(0, 240, 255, 0.15);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.05), transparent 50%),
              radial-gradient(circle at bottom left, rgba(184, 0, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ================= FOOTER STYLE ================= */
footer {
  border-top: 1px solid var(--color-card-border);
  padding: 90px 0 40px 0;
  background: rgba(3, 5, 9, 0.85);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-cols: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-secondary);
  max-width: 320px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: var(--transition-quick);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: var(--color-text-secondary);
  font-size: 20px;
  transition: var(--transition-quick);
  text-decoration: none;
}

.social-icon:hover {
  color: var(--color-primary);
  transform: scale(1.15);
}

/* ================= SCROLL FADE ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-cols: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-stats-dashboard {
    width: 100%;
  }
  
  .game-alt-row {
    grid-template-cols: 1fr !important;
    gap: 30px;
    padding: 24px;
  }
  
  .game-alt-row:nth-child(even) .game-alt-info {
    order: 0;
  }
  
  .tokenomics-alt-grid {
    grid-template-cols: 1fr;
    gap: 30px;
  }
  
  .tokenomics-col {
    padding: 30px;
  }
  
  .tokenomics-center-visual {
    order: -1;
  }
  
  .nft-alt-grid {
    grid-template-cols: 1fr;
    gap: 30px;
  }
  
  .faq-two-col-grid {
    grid-template-cols: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .section-bg-deco-text {
    font-size: 64px;
    top: -30px;
  }
  
  .hero-stats-dashboard {
    grid-template-cols: repeat(2, 1fr);
    gap: 12px;
  }
  
  .nft-main-card {
    grid-template-cols: 1fr;
    gap: 30px;
    padding: 24px;
  }
  
  .roadmap-container::before {
    left: 20px;
  }
  
  .roadmap-item {
    flex-direction: row !important;
    margin-bottom: 32px;
  }
  
  .roadmap-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .roadmap-content-wrapper {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
  
  .footer-top {
    grid-template-cols: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
