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

/* BASE */
body {
  font-family: Arial, sans-serif;
  background: #1c1c1c;
  color: #e0e0e0;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
}

.center {
  text-align: center;
  margin-top: 28px;
}

/* TOPBAR */
.topbar {
  background: #2a2a2a;
}

.topbar-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: bold;
}

/* BUTTONS */
.btn-main {
  background: #ff3c00;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-main:hover {
  background: #e63600;
}

.btn-secondary {
  border: 1px solid #ff3c00;
  color: #ff3c00;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #12002b, #001f3f);
  padding: 64px 0;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #ccc;
}

/* SECTIONS */
.section {
  padding: 56px 0;
}

.section-dark {
  background: #222;
}

.section h2 {
  color: #ff3c00;
  text-align: center;
  margin-bottom: 16px;
}

.section p {
  text-align: left;
  margin-bottom: 16px;
}

.section.centered p {
  text-align: center;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  color: #bbb;
}

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,.4);
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.game-card p {
  padding: 12px;
  font-size: 14px;
  color: #ddd;
}

/* TABLE */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.payment-table th,
.payment-table td {
  border: 1px solid #444;
  padding: 12px;
}

.payment-table th {
  background: #333;
  color: #ff3c00;
}

/* FOOTER */
.footer {
  background: #2a2a2a;
  padding: 36px 0;
  text-align: center;
  font-size: 13px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff3c00;
}

.footer-text {
  color: #999;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section {
    padding: 40px 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .section p {
    text-align: left;
  }
}
