/* HERO */
.rg-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.rg-hero-inner {
  max-width: 700px;
  text-align: center;
  z-index: 2;
}

.rg-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 12px;
}

.rg-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
}

.rg-hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 148, 58, 0.4);
}

.rg-hero p {
  margin: 24px 0;
  color: #ccc;
}

.rg-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.rg-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212, 148, 58, 0.4);
}

/* GLOW */
.rg-glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 148, 58, 0.25),
    transparent 70%
  );
  filter: blur(80px);
}

/* STATS */
.rg-stats {
  padding: 100px 20px;
  background: var(--charcoal);
}

.rg-stats-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.rg-stat strong {
  font-size: 36px;
  color: var(--gold);
}

.rg-stat small {
  display: block;
  margin-top: 6px;
  color: #aaa;
}

/* WHY */
.rg-why {
  padding: 120px 20px;
  text-align: center;
}

.rg-why h2 {
  font-size: 46px;
  margin-bottom: 70px;
}

.rg-why span {
  color: var(--gold);
}

.rg-why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rg-card {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--charcoal), #1a1a1a);
  transition: 0.4s;
}

.rg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(212, 148, 58, 0.2);
}

/* GAMES */
.rg-games {
  padding: 100px 20px;
  background: var(--charcoal);
  text-align: center;
}

.rg-game-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.rg-game {
  padding: 18px 32px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  transition: 0.3s;
}

.rg-game:hover {
  background: var(--gold);
  color: #000;
}

/* SAFE */
.rg-safe {
  padding: 80px 20px;
  text-align: center;
}

/* FOOTER */
.rg-footer {
  padding: 120px 20px;
  text-align: center;
  background: var(--charcoal);
}

.rg-footer h2 {
  margin-bottom: 30px;
}

.rg-btn.light {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.copyright {
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .rg-hero h1 { font-size: 48px; }
  .rg-why h2 { font-size: 36px; }
}

/* ================= PHONE ================= */
@media (max-width: 768px) {
  .rg-hero { min-height: 80vh; }
  .rg-hero h1 { font-size: 36px; }
  .rg-hero p { font-size: 14px; }
  .rg-stats-wrap { grid-template-columns: 1fr 1fr; }
  .rg-stat strong { font-size: 28px; }
  .rg-why { padding: 80px 16px; }
  .rg-why h2 { font-size: 30px; margin-bottom: 40px; }
  .rg-why-grid { grid-template-columns: 1fr; }
  .rg-card { padding: 28px; }
  .rg-games { padding: 60px 16px; }
  .rg-game { padding: 14px 24px; font-size: 14px; }
}

/* ================= SMALL PHONE ================= */
@media (max-width: 480px) {
  .rg-hero h1 { font-size: 28px; }
  .rg-stats-wrap { grid-template-columns: 1fr; }
  .rg-why h2 { font-size: 24px; }
}
