/* Moon Unleashed 2.0 — Premium Design System */

:root {
  /* Colors */
  --bg-deep: #050a0d;
  --bg-dark: #091319;
  --bg-panel: rgba(9, 19, 25, 0.6);
  --bg-panel-hover: rgba(14, 30, 40, 0.8);
  
  --teal-dark: #0d282b;
  --teal-mid: #1b4b4e;
  --teal-glow: #2cb5a8;
  --mint: #00ffaa;
  --mint-bright: #66ffcc;
  --cyan: #33ffff;
  
  --accent-red: #ff3366;
  --gold: #ffcc00;
  --gold-glow: #ffdf66;
  
  --text-main: #e0f2f1;
  --text-muted: #8ba8a5;
  --text-dark: #050a0d;
  
  /* Borders & Shadows */
  --border-light: rgba(44, 181, 168, 0.2);
  --border-bright: rgba(0, 255, 170, 0.4);
  --shadow-base: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 255, 170, 0.15);
  --shadow-glow-strong: 0 0 40px rgba(0, 255, 170, 0.3);
  
  /* Typography */
  --font-display: "Press Start 2P", monospace;
  --font-body: "Inter", system-ui, sans-serif;
  
  /* Structure */
  --header-h: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  
  /* Cursors */
  --cursor-default: url("assets/cursor-moon.svg") 16 16, crosshair;
  --cursor-pointer: url("assets/cursor-pointer.svg") 16 16, pointer;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: var(--cursor-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--teal-glow);
  color: var(--bg-deep);
}

a, button, [role="button"], input, select, textarea {
  cursor: var(--cursor-pointer);
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.text-gradient {
  background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Global Effects */
#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 181, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-base);
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-glow), var(--mint));
  z-index: 1000;
  box-shadow: 0 0 10px var(--mint);
  transition: width 0.1s ease-out;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--bg-deep);
  padding: 1rem 2rem;
  z-index: 10000;
  font-weight: bold;
  border-radius: var(--radius-pill);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-moon {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--mint);
  margin-bottom: 2rem;
  animation: pulseMoon 2s infinite ease-in-out;
  text-shadow: 0 0 30px var(--mint);
}

@keyframes pulseMoon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  transition: width 0.3s ease;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  background: transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(5, 10, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  color: var(--text-main);
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-icon {
  font-size: 1.5em;
  color: var(--mint);
  text-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
}

.logo-accent {
  color: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a:not(.nav-cta) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--text-main);
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(0, 255, 170, 0.1);
  border: 1px solid var(--mint);
  border-radius: var(--radius-pill);
  color: var(--mint);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.1);
}

.nav-cta:hover {
  background: var(--mint);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Sections Base */
.section {
  position: relative;
  padding: 8rem 0;
  z-index: 2;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header--center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--teal-glow);
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: rgba(44, 181, 168, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(44, 181, 168, 0.3);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header--center .section-desc {
  margin-inline: auto;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint) 0%, #00b377 100%);
  color: var(--bg-deep);
  border: 1px solid var(--mint-bright);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 170, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-deep);
}

.hero-bg-img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) saturate(1.2);
  transform: translateZ(0); /* Hardware acceleration */
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 13, 0.95) 0%,
    rgba(5, 10, 13, 0.8) 40%,
    rgba(5, 10, 13, 0.3) 60%,
    rgba(5, 10, 13, 0.1) 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, var(--bg-deep) 120%);
}

.hero-content {
  width: 100%;
  max-width: 700px;
  margin-left: clamp(1.5rem, 8vw, 10vw);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 10, 13, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.title-line {
  display: block;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: #fff;
}

.title-accent {
  color: var(--mint);
  text-shadow: 0 0 20px rgba(0, 255, 170, 0.4), 0 0 40px rgba(0, 255, 170, 0.2);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mint);
  text-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-arrow {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  animation: scrollDown 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ═══ TICKER ═══ */
.ticker {
  position: relative;
  z-index: 10;
  background: rgba(9, 19, 25, 0.8);
  border-block: 1px solid var(--border-light);
  padding: 1rem 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--teal-glow);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ SOBRE ═══ */
.sobre {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(13, 40, 43, 0.3) 50%, var(--bg-deep) 100%);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-main);
}

.sobre-text strong {
  color: var(--mint);
  font-weight: 600;
}

.inspirations-block {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.inspirations-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.inspirations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.inspirations li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(44, 181, 168, 0.15);
  border: 1px solid rgba(44, 181, 168, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.inspirations li:hover {
  background: rgba(44, 181, 168, 0.3);
  transform: translateY(-2px);
}

.sobre-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: translateZ(20px);
}

.img-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}

.sobre-visual:hover .img-frame img {
  transform: scale(1.05);
}

.img-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 50px rgba(0, 255, 170, 0.3);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.sobre-visual figcaption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ═══ CLASSES ═══ */
.class-tabs, .arsenal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.class-tab, .arsenal-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.class-tab:hover, .arsenal-tab:hover {
  border-color: var(--mint);
  color: var(--text-main);
  background: rgba(44, 181, 168, 0.1);
}

.class-tab.is-active, .arsenal-tab.is-active {
  background: var(--mint);
  color: var(--bg-deep);
  border-color: var(--mint-bright);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
}

.class-panels, .arsenal-panels {
  position: relative;
  min-height: 400px;
}

.class-panel, .arsenal-panel {
  display: none;
  animation: fadeScale 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.class-panel.is-active, .arsenal-panel.is-active {
  display: grid;
}

.class-panel {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(16px);
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.98) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.class-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.class-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 255, 170, 0.15);
  color: var(--mint);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.class-panel-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.class-perks {
  margin-bottom: 2rem;
}

.class-perks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.class-perks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.8rem;
  top: 2px;
}

.rpg-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rpg-bar {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff3366, #ff6688);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.class-panel.is-active .bar-fill {
  width: var(--w);
}

.bar-fill--green { background: linear-gradient(90deg, var(--mint), #66ffcc); }
.bar-fill--gold { background: linear-gradient(90deg, var(--gold), var(--gold-glow)); }
.bar-fill--cyan { background: linear-gradient(90deg, var(--cyan), #99ffff); }

.class-panel-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-base);
}

.class-panel-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.class-panel:hover .class-panel-img img {
  transform: scale(1.05);
}

.img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.1) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: shine-sweep 4s infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%); }
  20%, 100% { transform: translateX(100%); }
}

/* ═══ RAÇAS ═══ */
.racas {
  background: radial-gradient(ellipse at center, rgba(13, 40, 43, 0.4) 0%, var(--bg-deep) 70%);
}

.race-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.race-card {
  perspective: 1000px;
}

.race-card-inner {
  position: relative;
  height: 100%;
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  transform-style: preserve-3d;
}

.race-card:hover .race-card-inner {
  border-color: var(--mint);
  box-shadow: var(--shadow-glow);
}

.race-icon {
  font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  transform: translateZ(30px);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.race-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  transform: translateZ(20px);
}

.race-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  transform: translateZ(10px);
}

.race-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 170, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.race-card:hover .race-card-glow {
  opacity: 1;
}

.race-card--featured {
  grid-column: span 1;
}

.race-card--featured .race-card-inner {
  background: linear-gradient(135deg, rgba(27, 75, 78, 0.8) 0%, rgba(9, 19, 25, 0.9) 100%);
  border-color: var(--mint);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mint);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  transform: translateZ(20px);
}

@media (min-width: 768px) {
  .race-card--featured {
    grid-column: span 2;
  }
}

/* ═══ ARSENAL ═══ */
.arsenal-panel .item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.item-card {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.item-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.item-tier {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  transform: translateZ(10px);
}

.item-card h4 {
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  transform: translateZ(15px);
}

.item-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  transform: translateZ(5px);
}

.item-stat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transform: translateZ(10px);
}

/* Rarity Colors */
.item-card--common .item-tier { color: #a1a1aa; }
.item-card--uncommon .item-tier { color: #4ade80; }
.item-card--rare .item-tier { color: #60a5fa; }
.item-card--epic .item-tier { color: #c084fc; }
.item-card--legendary .item-tier { color: var(--gold); }

.item-card--rare .item-card-border { background: linear-gradient(180deg, #3b82f6, transparent); }
.item-card--epic .item-card-border { background: linear-gradient(180deg, #a855f7, transparent); }
.item-card--legendary .item-card-border { background: linear-gradient(180deg, var(--gold), transparent); }

.item-card--legendary {
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.05) 0%, var(--bg-panel) 100%);
}

.item-card--legendary .item-stat {
  color: var(--gold);
  background: rgba(255, 204, 0, 0.15);
}

/* ═══ PROGRESSÃO ═══ */
.progressao {
  position: relative;
  overflow: hidden;
}

.progressao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(44, 181, 168, 0.1) 0%, transparent 60%);
  z-index: -1;
}

.progressao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.progressao-text p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.loot-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tier {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--bg-panel);
  border: 1px solid;
}

.tier--common { color: #a1a1aa; border-color: rgba(161, 161, 170, 0.3); }
.tier--uncommon { color: #4ade80; border-color: rgba(74, 222, 128, 0.3); }
.tier--rare { color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
.tier--epic { color: #c084fc; border-color: rgba(192, 132, 252, 0.3); }
.tier--legendary { 
  color: var(--gold); 
  border-color: var(--gold); 
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.hud-preview {
  padding: 1.5rem;
  background: rgba(5, 10, 13, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 350px;
  backdrop-filter: blur(10px);
}

.hud-bar {
  display: grid;
  grid-template-columns: 35px 1fr 60px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.hud-bar em {
  font-style: normal;
  color: var(--text-main);
  text-align: right;
}

.hud-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hud-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff3366, #ff6688);
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.is-visible .hud-fill { width: var(--w); }

.hud-fill--mp { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.hud-fill--xp { background: linear-gradient(90deg, var(--mint), #66ffcc); }

.hud-gold {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progressao-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow-strong);
}

.progressao-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.img-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ═══ FEATURES ═══ */
.features-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(9, 19, 25, 0.8) 50%, var(--bg-deep) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  transform-style: preserve-3d;
}

.feature-card:hover {
  background: var(--bg-panel-hover);
  border-color: var(--mint);
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 255, 170, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 170, 0.3);
  transition: all var(--transition-base);
  transform: translateZ(20px);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--mint);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
  transform: translateZ(30px) scale(1.1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--text-main);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon {
  color: var(--bg-deep);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  transform: translateZ(15px);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  transform: translateZ(5px);
}

/* ═══ GALERIA ═══ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-panel);
}

.gallery-zoom {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 13, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 2rem;
  color: var(--mint);
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(5, 10, 13, 0.9), transparent);
  color: var(--text-main);
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 13, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-height: 80vh;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-counter {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--mint);
  color: var(--bg-deep);
  border-color: var(--mint);
  transform: scale(1.1);
}
.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ═══ DOWNLOAD ═══ */
.download {
  padding-bottom: 8rem;
}

.download-box {
  position: relative;
  padding: 5rem 3rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-base);
  backdrop-filter: blur(16px);
}

.download-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 170, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.download-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}

.download-sub {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.download-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 180px;
  padding: 1.5rem;
  background: rgba(13, 40, 43, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  transition: all var(--transition-base);
}

.platform-btn:not(:disabled):hover {
  background: var(--bg-panel-hover);
  border-color: var(--mint);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 170, 0.2);
}

.platform-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}

.platform-icon {
  font-size: 2.5rem;
}

.platform-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.platform-size {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-note {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ═══ FOOTER ═══ */
.site-footer {
  position: relative;
  z-index: 10;
  background: #030608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-title .title-line { font-size: clamp(1.5rem, 6vw, 3rem); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .progressao-inner, .sobre-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: rgba(5, 10, 13, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .site-nav a:not(.nav-cta) { font-size: 1.5rem; }
  .nav-cta { font-size: 1.25rem; padding: 1rem 2rem; }

  .sobre-grid, .progressao-inner, .class-panel, .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .class-panel-img { order: -1; }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  
  .gallery-item--wide, .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .hero-content {
    margin-inline: auto;
    text-align: center;
  }
  
  .hero-actions, .hero-stats {
    justify-content: center;
  }
  
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .class-tabs, .arsenal-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .class-tabs::-webkit-scrollbar, .arsenal-tabs::-webkit-scrollbar {
    display: none;
  }
  .class-tab, .arsenal-tab { flex-shrink: 0; }
  
  .class-panel { padding: 1.5rem; }
  .download-box { padding: 3rem 1.5rem; }
}
