@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600;700&display=swap");

:root {
  --bg: #000;
  --panel: rgba(17, 17, 17, 0.72);
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-glow: rgba(128, 0, 255, 0.8);
  --text: #f4f4f5;
  --muted: #9ca3af;
  --border: rgba(128, 128, 128, 0.22);
  --ring: rgba(38, 38, 38, 1);
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

a { color: inherit; text-decoration: none; }

/* Partículas flutuantes */
.background-animation {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.background-animation div {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--purple-glow);
  border-radius: 50%;
  animation: float-particle 12s infinite ease-in-out;
}

@keyframes float-particle {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(40vw, 60vh); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Grid hacker */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: #000;
  background-image:
    linear-gradient(90deg, rgba(128, 128, 128, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(128, 128, 128, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(#000 0%, transparent 92%);
}

#dnaCanvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page { position: relative; z-index: 2; }

/* Discord */
.discord-icon {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 60;
  width: 40px;
  height: 40px;
  filter: grayscale(1);
  transition: filter 0.25s ease;
}

.discord-icon:hover { filter: grayscale(0); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-left, .nav-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-left a:hover, .nav-right a:hover { color: var(--purple-light); }

.nav-left a.is-active { color: var(--purple-light); }

.brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.brand-center img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.55));
}

.btn-ring {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  color: #d4d4d8;
  border: 2px solid var(--ring);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ring:hover {
  color: var(--purple-light);
  border-color: rgba(124, 58, 237, 0.45);
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: #7c3aed;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

/* Hero typing gradient */
@keyframes pulse-gradient {
  0%, 100% { background-size: 300%; transform: scale(1); }
  50% { background-size: 400%; transform: scale(1.03); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  background-image: linear-gradient(90deg, #ff00ff, #7700ff, #00ffff, #ff00ff, #7700ff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse-gradient 2s infinite;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
}

.hero-split {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 1rem 0 1.75rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-actions .btn-outline {
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
}

.hero-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.28);
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 1rem 0 1.75rem;
  line-height: 1.65;
}

.hero-copy .lead {
  margin-left: 0;
}

.accent {
  color: #c4b5fd;
  font-weight: 600;
}

.link-accent {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-accent:hover {
  color: #c4b5fd;
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.feature-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  color: #d4d4d8;
  font-size: 0.95rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.72rem;
  color: #a78bfa;
  font-weight: 800;
}

.feature-list--center {
  text-align: left;
}

.shot-label {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #71717a;
  text-align: center;
}

.games-hero-shot {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.games-hero-shot img {
  width: 100%;
  height: auto;
}

.hero-shot {
  margin: 0;
}

.app-shot-wrap {
  position: relative;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(167, 139, 250, 0.25), rgba(124, 58, 237, 0.5));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 48px rgba(124, 58, 237, 0.2);
}

.app-shot-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 920px;
  margin: 2rem auto 0;
}

#jogos .game-grid {
  margin-top: 1.5rem;
}

.game-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(17, 24, 39, 0.45);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 1.75rem;
}

.showcase-shot {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: auto;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-gallery figure {
  margin: 0;
}

.app-gallery .app-shot-wrap {
  margin-bottom: 0.5rem;
}

.bonus-block {
  padding-top: 0;
}

.bonus-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 2rem 2.25rem;
  border-radius: 16px;
  border: 1px dashed rgba(167, 139, 250, 0.45);
  background: rgba(17, 24, 39, 0.5);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.08);
}

.bonus-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.bonus-card h3 {
  font-size: 1.35rem;
  color: #e9d5ff;
  margin-bottom: 0.75rem;
}

.bonus-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto 1rem;
  max-width: 540px;
}

.bonus-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e9d5ff;
  margin: 1rem 0 1.25rem !important;
}

.bonus-price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a78bfa;
  margin-right: 0.25rem;
}

.bonus-card .btn-ring {
  display: inline-block;
}

.game-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem 1rem;
  align-items: start;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  min-height: 100%;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.game-icon {
  grid-row: 1;
  grid-column: 1;
}

.game-card-head {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.game-card h3 {
  font-size: 1.05rem;
  color: #e9d5ff;
  margin: 0;
  line-height: 1.25;
}

.game-card > p {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.game-card .preset-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin: 0;
}

.plan-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.25);
  color: #e9d5ff;
  vertical-align: middle;
}

.price-card.lifetime-tier .price-amount {
  color: #e879f9;
}

@media (max-width: 900px) {
  .hero-split,
  .showcase-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-split .btn-primary {
    margin: 0;
    display: inline-block;
  }

  .game-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .game-card {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .nav-left a:nth-child(n+4) {
    display: none;
  }
}

.terminal-line {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 4px;
  font-size: 0.75rem;
  color: #c4b5fd;
  background: rgba(0, 0, 0, 0.5);
}

.faq-grid {
  margin-top: 1.5rem;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a:not(.link-accent) {
  color: #71717a;
}

.footer-links a:not(.link-accent):hover {
  color: #a78bfa;
}

/* Sections */
section.block {
  padding: 5rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #c4b5fd;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

/* Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

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

.card {
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #e9d5ff;
}

.card p { color: var(--muted); font-size: 0.9rem; }

.check-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.85rem 0;
}

.check-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.trust-strip {
  border-block: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 1.5rem;
}

.trust-item {
  font-size: 0.85rem;
  color: #d4d4d8;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: rgba(17, 24, 39, 0.5);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card.featured,
.neon-worm-border {
  position: relative;
  z-index: 0;
}

.price-card.featured {
  border: none;
  padding: 2rem;
  transform: none;
  background: rgba(17, 24, 39, 0.65);
}

@media (min-width: 901px) {
  .price-card.featured {
    transform: scale(1.02);
  }
}

@keyframes neon-border {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.neon-worm-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa, #4701c9, #8b5cf6);
  background-size: 200% 200%;
  animation: neon-border 1.2s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.price-card h3 {
  text-align: center;
  color: #a78bfa;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.price-amount {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  margin: 1rem 0;
}

.price-amount small { font-size: 1rem; color: #c4b5fd; font-weight: 600; }

.price-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
}

.price-list li {
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem 0;
  color: #e9d5ff;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list li::before {
  content: "✓";
  color: #7c3aed;
  font-weight: 900;
}

footer.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer .brand-foot {
  color: #a78bfa;
  font-weight: 700;
}

/* Download page */
.download-hero {
  min-height: calc(100vh - 2rem);
  padding: 7rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-panel {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.download-panel h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #e9d5ff;
}

.ver-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.ver-badge.err { color: #fca5a5; border-color: rgba(239, 68, 68, 0.4); }

.download-shot {
  max-width: 520px;
  margin: 1.5rem 0;
}

.download-meta {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.download-meta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.45rem 0;
}

.download-meta strong {
  color: #e9d5ff;
}

.download-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #a1a1aa;
  max-width: 520px;
}

.download-links {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #71717a;
}

.download-panel .lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: #c4b5fd;
  border: 2px solid rgba(124, 58, 237, 0.5);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: #a78bfa;
  color: #fff;
}

.req-list {
  margin-top: 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.req-list li { margin: 0.35rem 0; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr; text-align: center; }
  .nav-left, .nav-right { justify-content: center; }
  .nav-left { order: 2; }
  .brand-center { order: 1; }
  .nav-right { order: 3; }
}
