.elementor-19 .elementor-element.elementor-element-28dc6b0{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-19 .elementor-element.elementor-element-e8eeb1e img{width:100%;}.elementor-19 .elementor-element.elementor-element-906097e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-9c47845{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5f3ac20 */.games-page {
  background: #1a2332;
  color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* HERO */
.games-hero {
  text-align: center;
  margin-bottom: 50px;
}

.games-hero h1 {
  font-size: 38px;
  color: #0dd4a3;
  margin-bottom: 10px;
}

.games-hero p {
  font-size: 16px;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

/* GRID */
.games-grid-section {
  max-width: 1000px;
  margin: auto;
}

.games-grid {
  display: flex;
  flex-direction: column;   /* ✅ FORCE 1 CARD PER ROW */
  gap: 28px;
}

/* ✅ FINAL CARD STRUCTURE */
.game-card {
  display: flex;            /* ✅ GRID hata ke FLEX */
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(13,212,163,0.7);
}

/* ✅ IMAGE LEFT */
.game-image {
  flex: 0 0 280px;          /* ✅ FIXED LEFT SIZE */
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f1724;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ✅ NO CROP */
  border-radius: 14px;
}

/* ✅ TEXT RIGHT (STACKED) */
.game-card h3,
.game-card p {
  flex: 1;
  text-align: left;
}

.game-card h3 {
  color: #0dd4a3;
  margin-bottom: 8px;
  font-size: 22px;
}

.game-card p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 650px;
}

/* ✅ MOBILE FIX — STACK */
@media (max-width: 768px) {

  .games-hero h1 {
    font-size: 28px;
  }

  .game-card {
    flex-direction: column;     /* ✅ Image upar, text niche */
    text-align: center;
  }

  .game-image {
    width: 100%;
    height: 180px;
  }

  .game-card h3,
  .game-card p {
    text-align: center;
    max-width: 100%;
  }

  .game-card p {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dd588cc */.final-cta-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1724, #1a2332);
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta-box {
  max-width: 900px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

/* Heading */
.final-cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0dd4a3;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Text */
.final-cta-box p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* Button */
.final-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0dd4a3, #00ffa2);
  color: #000;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 26px rgba(13,212,163,0.6);
}

.final-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(13,212,163,1);
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-box {
    padding: 40px 20px;
  }

  .final-cta-box h2 {
    font-size: 28px;
  }

  .final-cta-box p {
    font-size: 15px;
  }
}/* End custom CSS */