:root {
  --bg: #0a0a0a;
  --card: #111111;
  --purple: #4415FF;
  --accent: #00ff9d;
  --text: #ffffff;
  --gray: #aaaaaa;
  --border: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Remove sublinhados padrão e mantém só no hover se quiser */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none; /* ou underline se preferir */
}

/* Glow fundo */
.glow-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(68,21,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -2;
}

/* Nav */
.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 900px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Jaro', sans-serif;
  font-size: 1.75rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(68,21,255,0.5);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn.primary { background: white; color: black; }
.btn.primary:hover { transform: scale(1.05); }

.btn.secondary { background: #2563eb; color: white; }

.btn-purchase, .btn-getkey {
  background: white;
  color: black;
  font-weight: bold;
}

/* Menu mobile */
.menu-btn { background: none; border: none; cursor: pointer; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.mobile-menu.active .menu-content {
  transform: translateY(0);
}

.menu-content a {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  color: white;
  text-align: center;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.menu-content a:hover {
  background: rgba(255,255,255,0.08);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  position: relative;
}

.hero h1 {
  font-family: 'Jaro', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.preview-container {
  margin-top: 3rem;
  max-width: 512px;
  width: 90%;
}

.preview-img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(68,21,255,0.3);
}

/* Animação up & down */
.animate-up_and_down {
  animation: up_and_down 3.2s ease-in-out infinite;
}

@keyframes up_and_down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* Games section (só Death Ball) */
.games {
  padding: 5rem 1rem 4rem;
  text-align: center;
}

.games h2 {
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.35s ease;
}

.game-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(68,21,255,0.2);
}

.tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.tag.key { background: #16a34a; color: white; }

.game-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-info {
  padding: 1.25rem;
  text-align: center;
}

.card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.card-actions img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.25s;
}

.card-actions a:hover img {
  transform: scale(1.15);
}

/* Loader section */
.loader-section {
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
}

.loader-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 1000px;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.loader-img {
  max-width: 420px;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.loader-text {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.loader-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.copy-loadstring {
  background: white;
  color: black;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

/* Purchase */
.purchase {
  padding: 5rem 1rem;
  text-align: center;
}

.purchase-card {
  background: #1C1B21;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 3.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.purchase-card h2 {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
}

.purchase-btn {
  background: white;
  color: black;
  padding: 1.2rem 3.5rem;
  font-size: 1.25rem;
  margin-top: 2rem;
}

/* Footer */
footer {
  padding: 3rem 1rem 2rem;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: var(--gray);
  margin: 0 1.25rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Mobile adjustments */
@media (max-width: 1023px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }
  .nav { padding: 0.6rem 1.2rem; }
}

@media (min-width: 1024px) {
  .mobile-only { display: none; }
}

/* Tema claro (se quiser ativar) */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8f9fa;
    --card: #ffffff;
    --text: #111111;
    --gray: #555555;
    --border: #e0e0e0;
  }
  .glow-bg { opacity: 0.4; }
  .nav { background: rgba(255,255,255,0.85); }
}