body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0f;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: black;
  border-bottom: 2px solid gold;
}

.logo {
  font-size: 26px;
  color: gold;
  font-weight: bold;
}

.nav-buttons button {
  margin-left: 10px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.login { background: #333; color: white; }
.register { background: gold; color: black; }

.hero {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle, #222, #000);
}

.hero h1 {
  font-size: 48px;
  color: gold;
  text-shadow: 0 0 15px gold;
}

.cta {
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 18px;
  background: gold;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.games {
  padding: 40px 20px;
  text-align: center;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.game-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid gold;
  box-shadow: 0 0 10px gold;
}
/* ===== LOADING ===== */
#loading {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: gold;
  font-size: 18px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #333;
  border-top: 4px solid gold;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== GLOW ANIMATION ===== */
@keyframes glow {
  0% { box-shadow: 0 0 5px gold; }
  50% { box-shadow: 0 0 20px gold; }
  100% { box-shadow: 0 0 5px gold; }
}

.cta, .register {
  animation: glow 1.5s infinite alternate;
}

/* ===== HOVER EFFECT ===== */
button:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 25px gold;
  transition: 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 20px gold;
  transition: 0.3s;
}
.social-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #050a2a;
  display: flex;
  gap: 25px;
  padding: 14px 30px;
  border-radius: 40px;
  box-shadow: 0 0 25px rgba(0,255,255,0.4);
  z-index: 9999;
}

.social-btn {
  text-decoration: none;
  color: white;
  text-align: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.social-btn img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  display: block;
  margin: 0 auto 5px;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  text-shadow: 0 0 10px cyan;
}

.wa:hover { color: #25D366; }
.tt:hover { color: #00f2ea; }
.fb:hover { color: #1877F2; }
.tg:hover { color: #0088cc; }
.ig:hover { color: #E1306C; }


footer {
  text-align: center;
  padding: 20px;
  background: black;
  font-size: 14px;
}
@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cta {
    font-size: 16px;
    padding: 12px 24px;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ===== SOCIAL BAR MOBILE ===== */
  .social-bar {
    bottom: 10px;
    padding: 10px 16px;
    gap: 16px;
    border-radius: 30px;
  }

  .social-btn span {
    font-size: 11px;
  }

  .social-btn img {
    width: 22px;
    height: 22px;
  }
}
