body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  background: radial-gradient(circle at top, #1a0f05, #000);
}

/* ===== SUBTLE ORANGE GLOW ===== */
body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,140,0,0.08), transparent 40%);
  animation: moveGlow 14s linear infinite;
  z-index: 0;
}

@keyframes moveGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== OVERLAY ===== */
#disclaimerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.disclaimerBox {
  background: rgba(20,15,10,0.9);
  border: 1px solid rgba(255,140,0,0.3);
  padding: 25px;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255,140,0,0.4);
}

.disclaimerBox h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #ff8c00;
}

.disclaimerBox p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.disclaimerBox button {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff8c00, #ff4500);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.disclaimerBox button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255,140,0,0.6);
}

/* ===== CONTENT ===== */
.container {
  position: relative;
  z-index: 1;
  padding: 90px 15px 40px; /* 70px navbar + 20px breathing room */
  overflow-x: hidden;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff8c00, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

/* ===== GAME GRID ===== */
.games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

/* ===== CARD ===== */
.card {
  background: rgba(20,15,10,0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 22px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,140,0,0.15);
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255,140,0,0.5),
    0 0 10px rgba(255,69,0,0.3);
}

.card h3 {
  margin: 10px 0;
  font-size: 1rem;
}

.card p {
  font-size: 0.8rem;
  color: #bbb;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: 0.3s;
  background: linear-gradient(45deg, #ff8c00, #ff4500);
  z-index: -1;
}

.card:hover::after {
  opacity: 0.12;
}

/* ===== COMING SOON ===== */
.coming {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  font-size: 11px;
  color: #ff8c00;
  opacity: 0.85;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .container {
    padding-top: 80px; /* 60px navbar + 20px breathing room */
  }
}