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

/* BASE */
body {
  font-family: Inter, Arial, sans-serif;
  background: #0b0b0d;
  color: #ffffff;
}

a {
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #0b0b0d;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo img {
  height: 56px;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

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

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

/* HERO */
.hero {
  padding: 20px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.hero-card {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.7), rgba(0,0,0,.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.hero-content.center {
  text-align: center;
}

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

.hero h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.hero p {
  opacity: .9;
  margin-bottom: 20px;
}

/* NOTICE */
.notice {
  margin: 20px 0 40px;
}

.notice p {
  background: #121418;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 14px;
  opacity: .9;
}

/* BONUSES */
.bonuses {
  padding-bottom: 60px;
}

.section-title {
  margin-bottom: 24px;
  font-size: 22px;
}
/* BONUS GRID – 2 per row */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* BONUS CARD */
.bonus-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border-radius: 20px;
  background: radial-gradient(
    120% 120% at 0% 0%,
    #1a1f28 0%,
    #0f1218 60%
  );
  transition: transform .25s ease, box-shadow .25s ease;
}

.bonus-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

/* IMAGE */
.bonus-image img {
  max-width: 130px;
  height: auto;
  display: block;
}

/* CONTENT */
.bonus-content {
  flex: 1;
}

.bonus-tag {
  display: block;
  font-size: 14px;
  opacity: .7;
  margin-bottom: 8px;
}

.bonus-content h3 {
  font-size: 22px;
  margin-bottom: 18px;
  line-height: 1.25;
}

/* BADGE */
.bonus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2b2f38;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
  opacity: .85;
}

/* BUTTON OVERRIDE (matches screenshot) */
.bonus-row .btn-outline {
  border-color: #c4371d;
  color: #fff;
}

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

  .bonus-row {
    flex-direction: column;
    text-align: center;
  }

  .bonus-image img {
    max-width: 140px;
  }

  .bonus-badge {
    top: 12px;
    right: 12px;
  }
}


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



/* =========================
   CASINO REVIEW SECTION
========================= */

.casino-review {
  padding: 70px 0 90px;
  background: linear-gradient(
    to bottom,
    #0b0b0d 0%,
    #0f1218 100%
  );
}

.casino-review h1 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 26px;
  font-weight: 700;
}

.casino-review h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 600;
}

.casino-review p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.casino-review strong {
  color: #ffffff;
  font-weight: 600;
}

/* LISTS */
.casino-review ul {
  margin: 20px 0 30px 22px;
  padding-left: 16px;
}

.casino-review ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* SECTION SPACING */
.casino-review h2 + p {
  margin-top: 10px;
}

/* HIGHLIGHT BLOCKS (optional visual rhythm) */
.casino-review ul {
  border-left: 3px solid rgba(196,55,29,0.6);
  padding-left: 18px;
}

/* VERDICT EMPHASIS */
.casino-review h2:last-of-type {
  margin-top: 60px;
}

/* READABILITY WIDTH CONTROL */
.casino-review .container {
  max-width: 860px;
}

/* MOBILE */
@media (max-width: 768px) {
  .casino-review {
    padding: 50px 0 70px;
  }

  .casino-review h1 {
    font-size: 26px;
  }

  .casino-review h2 {
    font-size: 20px;
  }

  .casino-review p,
  .casino-review ul li {
    font-size: 15px;
  }
}



/* =========================
   REVIEW ENHANCEMENTS
========================= */

/* RATING */
.review-rating {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #121418;
  border-radius: 18px;
  padding: 26px;
  margin: 40px 0;
}

.rating-score {
  font-size: 42px;
  font-weight: 700;
  color: #c4371d;
}

.rating-score span {
  font-size: 18px;
  opacity: .7;
}

.rating-text p {
  opacity: .85;
}

/* FACTS TABLE */
.review-facts table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px;
}

.review-facts th,
.review-facts td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}

.review-facts th {
  text-align: left;
  opacity: .7;
  width: 40%;
}

/* PROS / CONS */
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.review-pros-cons h3 {
  margin-bottom: 14px;
}

.pros,
.cons {
  background: #121418;
  padding: 24px;
  border-radius: 18px;
}

.pros ul li::before {
  content: "✔";
  color: #4caf50;
  margin-right: 8px;
}

.cons ul li::before {
  content: "✖";
  color: #f44336;
  margin-right: 8px;
}

/* SCREENSHOTS */
.review-screenshots {
  margin: 50px 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.screenshot {
  background: #1a1f28;
  height: 160px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
}

/* CTA */
.review-cta {
  margin-top: 70px;
  padding: 50px 30px;
  border-radius: 24px;
  background: radial-gradient(
    120% 120% at 50% 0%,
    #c4371d 0%,
    #7a1f10 55%,
    #0b0b0d 100%
  );
  text-align: center;
}

.review-cta h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.review-cta p {
  font-size: 17px;
  margin-bottom: 26px;
  opacity: .95;
}

.btn-large {
  padding: 14px 30px;
  font-size: 16px;
}

.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  opacity: .75;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .review-pros-cons {
    grid-template-columns: 1fr;
  }

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

  .review-rating {
    flex-direction: column;
    text-align: center;
  }
}

