/* ================================
   GLOBAL
================================ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
}
    .game-frame {
      width: 100%;
      height: 100vh;
      border: none;
      background: #000;
    }
/* ================================
   NAVBAR
================================ */
.navbar-brand span {
  color: #ff7a00;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fef3e7 100%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  color: #555;
  max-width: 650px;
  margin: 15px auto;
}

.btn-play {
  margin-top: 30px;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  border: none;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,122,0,.35);
  cursor: pointer;
}

/* ================================
   SECTIONS
================================ */
.section-title {
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #ff7a00,
    #4a90e2,
    #e74c3c,
    #2ecc71
  );
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* ================================
   GAME GRID
================================ */
.game-link {
  text-decoration: none;
  color: inherit;
}

.game-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Card Shadows (soft & professional) */
.frame-orange { box-shadow: 0 12px 30px rgba(255,122,0,.18); }
.frame-blue   { box-shadow: 0 12px 30px rgba(74,144,226,.18); }
.frame-red    { box-shadow: 0 12px 30px rgba(231,76,60,.18); }
.frame-green  { box-shadow: 0 12px 30px rgba(46,204,113,.18); }

/* ================================
   GAME THUMB
================================ */
.game-thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

/* ================================
   GAME INFO
================================ */
.game-info {
  padding: 16px 18px 20px;
  background: #fff;
}

.game-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.game-info p {
  font-size: .9rem;
  color: #666;
  margin: 0;
}

/* ================================
   BADGE
================================ */
.game-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: .7rem;
  font-weight: 600;
  background: rgba(0,0,0,.65);
  color: #fff;
  z-index: 2;
}

.badge-orange { background: #ff7a00; }
.badge-blue   { background: #4a90e2; }
.badge-red    { background: #e74c3c; }
.badge-green  { background: #2ecc71; }

/* ================================
   HOVER EFFECTS
================================ */
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

.game-card:hover .game-thumb {
  transform: scale(1.04);
}

/* ================================
   WHY BOXES
================================ */
.why-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-left: 8px solid;
}

.why-orange { border-color: #ff7a00; }
.why-blue   { border-color: #4a90e2; }
.why-green  { border-color: #2ecc71; }

/* ================================
   CTA STRIP
================================ */
.cta-strip {
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    #ff7a00,
    #4a90e2,
    #e74c3c,
    #2ecc71
  );
}

.cta-strip button {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  color: #777;
  border-top: 1px solid #eee;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .game-thumb {
    height: 140px;
  }
}
