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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0e0e0e;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: bold;
}

.btn-primary {
  background: #e91e63;
  color: #fff;
}

.btn-outline {
  border: 1px solid #fff;
}

.btn-large {
  font-size: 18px;
  padding: 15px 30px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #e91e63;
  z-index: 1000;
}

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

.logo img { height: 36px; }

.nav a { margin: 0 12px; }
/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 520px;
  background: url('/images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 720px;
  margin: auto;
}

.hero-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffc107;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin: 10px 0;
  text-shadow:
    0 4px 20px rgba(0,0,0,0.9),
    0 0 40px rgba(233,30,99,0.4);
}

.hero-sub {
  font-size: 22px;
  margin-bottom: 25px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}

.hero-buttons {
  margin-bottom: 20px;
}

.hero-btn {
  box-shadow:
    0 10px 30px rgba(233,30,99,0.6),
    0 0 20px rgba(233,30,99,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px rgba(233,30,99,0.8),
    0 0 30px rgba(233,30,99,0.6);
}

.hero-note {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero {
    min-height: 420px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 18px;
  }
}




.features {
  background: #111;
  padding: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.games {
  padding: 60px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.review {
  background: #151515;
  padding: 60px 0;
}

.review-box {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 16px;
}

.review-box h1 {
  margin-bottom: 20px;
}

.review-box h3 {
  margin: 25px 0 10px;
}

.review-box p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.review-cta {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

.footer-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  border-top: 1px solid #333;
}

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cta { flex-direction: column; gap: 15px; text-align: center; }
}





/* Headings */
.review h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.review h2 {
  font-size: 1.85rem;
  margin-top: 56px;
  margin-bottom: 18px;
  color: ##e91e63; /* sky blue */
}

.review h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #a5f3fc;
}

/* Paragraphs */
.review p {
  margin-bottom: 22px;
  font-size: 1.05rem;
  color: #d1d5db;
}

/* Strong & emphasis */
.review strong {
  color: #ffffff;
  font-weight: 600;
}

.review em {
  color: #bae6fd;
}

/* Lists */
.review ul {
  margin: 18px 0 28px 24px;
  padding: 0;
}

.review li {
  margin-bottom: 10px;
  padding-left: 6px;
  font-size: 1.03rem;
  color: #e5e7eb;
}

/* List bullet enhancement */
.review ul li::marker {
  color: #38bdf8;
}

/* Highlight blocks */
.review p strong:first-child {
  display: inline-block;
  margin-bottom: 8px;
}

/* Section separators */
.review h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border-radius: 2px;
}

/* Links */
.review a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.4);
  transition: all 0.2s ease;
}

.review a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Callout boxes (optional utility) */
.review .pros,
.review .cons {
  margin: 36px 0;
  padding: 26px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
}

.review .pros {
  background: linear-gradient(135deg, #0f766e, #134e4a);
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.review .cons {
  background: linear-gradient(135deg, #7c2d12, #431407);
  border: 1px solid rgba(251, 146, 60, 0.35);
}

/* Buttons (CTA ready) */
.review .cta {
  margin-top: 48px;
  text-align: center;
}

.review .cta a {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review .cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .review {
    padding: 36px 26px;
    margin: 30px 14px;
  }

  .review h1 {
    font-size: 2.1rem;
  }

  .review h2 {
    font-size: 1.6rem;
  }
}

