@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap");

/* ============================================
   RESET & ROOT VARIABLES
   ============================================ */
:root {
  --gold: #F5C842;
  --gold-dark: #D4A017;
  --gold-light: #FFE680;
  --orange: #FF6B1A;
  --orange-dark: #D94E00;
  --navy: #0B1524;
  --navy-mid: #122040;
  --navy-light: #1A2E55;
  --navy-card: #0F1D35;
  --navy-border: #1E3058;
  --white: #FFFFFF;
  --text-muted: #7A90B8;
  --text-light: #C2D0E8;
  --green-live: #22C55E;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --d: 2500ms;
  --angle: 90deg;
  --c1: var(--gold);
  --c2: rgba(100,100,100,0);
}

@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================
   HEADER DISCLAIMER
   ============================================ */
.header-disclamer {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background-color: #070F1E;
  border-bottom: 1px solid var(--navy-border);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* ============================================
   BACKGROUND SYSTEM
   ============================================ */
.background-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.background-gradient {
  background: linear-gradient(180deg, rgba(11,21,36,0.25) 0%, var(--navy) 520px);
  width: 100%;
  position: relative;
}

/* Subtle animated grid overlay */
.background-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,200,66,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,66,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.background-gradient-bottom {
  background: linear-gradient(180deg, var(--navy) 0%, #070F1E 100%);
  width: 100%;
}

/* ============================================
   LAYOUT
   ============================================ */
.content-cover {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.show-on-mobile { display: none; }
.hide-on-desktop { display: block; }

@media (max-width: 480px) {
  .show-on-desktop { display: none; }
}
@media (min-width: 481px) {
  .hide-on-desktop { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  padding-top: 28px;
  padding-bottom: 10px;
}

.logo-cover {
  max-width: 180px;
  padding: 8px 0;
  display: none;
}
.logo-cover img { width: 100%; }

.top-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 20px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.header-flags {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold), 0 0 0 5px rgba(245,200,66,0.2);
}

.top-headline h1 {
  color: var(--white);
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 12px;
  letter-spacing: -0.01em;
}

/* Gold shimmer on h1 */
.top-headline h1 span,
.top-headline h1 {
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 60%, #fff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.sub-headline {
  max-width: 860px;
  margin: 10px auto 0;
  padding: 0 20px;
  color: var(--text-light);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.font-bold {
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   SUB-HEADER BADGES
   ============================================ */
.sub-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.sub-header li,
.sub-header__icon,
.sub-header__icon4 {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.sub-header li:hover,
.sub-header__icon:hover,
.sub-header__icon4:hover {
  background: rgba(245,200,66,0.15);
  border-color: rgba(245,200,66,0.4);
  color: var(--white);
}

.sub-header li img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.highlited-date {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
}

.highlited-date-mobile { display: none; }

/* ============================================
   TABLE HEADER
   ============================================ */
.table { margin: 32px 0 0; }

.table-header-cover {
  position: relative;
  margin: 0 auto 8px;
  height: 36px;
}

.table-header-back {
  width: 100%;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(245,200,66,0.12), rgba(255,107,26,0.08));
  position: absolute;
  z-index: 1;
  filter: blur(2px);
}

.table-header {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 40px 0 70px;
  position: absolute;
  z-index: 2;
  height: 36px;
}

.table-header h5 {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

.table-header h5:first-child { width: 10%; }

/* ============================================
   OFFER CARDS — DESKTOP
   ============================================ */
.offers-cover-desktop { width: 100%; }

.offer-cover {
  width: 94%;
  min-height: 120px;
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
  background: linear-gradient(135deg, var(--navy-card) 0%, #0D1A2E 100%);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.offer-cover:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,66,0.15);
}

/* Rank number */
.order-count {
  position: absolute;
  left: -3.8%;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: rgba(245,200,66,0.25);
  line-height: 1;
  letter-spacing: -2px;
}

/* ---- LABEL BADGE ---- */
.label {
  position: absolute;
  top: -14px;
  left: 10px;
  z-index: 10;
}

.label-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  height: 26px;
  min-width: 130px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 999px;
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,200,66,0.35);
  position: relative;
  z-index: 5;
}

.label-right, .label-bottom { display: none; }

/* Override label colors for specific positions */
.offer-cover:nth-child(3) .label-center {
  background: linear-gradient(90deg, #C0CDE0, #8FA3C0);
}
.offer-cover:nth-child(5) .label-center {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

/* ---- CASINO LOGO BOX ---- */
.offer-logo {
  max-width: 220px;
  min-height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(135deg, #0C1A30 0%, #152240 100%);
  border-right: 1px solid var(--navy-border);
  padding: 16px;
  flex-shrink: 0;
}

.offer-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---- BONUS MESSAGE ---- */
.offer-message {
  width: 180px;
  text-align: center;
  flex-shrink: 0;
}

.offer-message .welcome-1 {
  color: var(--text-light);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-message .welcome-2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
  line-height: 1.2;
}

.offer-message .welcome-3 {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 400;
}

/* ---- RATING ---- */
.offer-rate {
  text-align: center;
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 22px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 6px rgba(245,200,66,0.55));
}
.stars-container:before {
  position: absolute;
  top: 0; left: 0;
  content: "★★★★★";
  color: rgba(255,255,255,0.08);
}
.stars-container:after {
  position: absolute;
  top: 0; left: 0;
  content: "★★★★★";
  color: var(--gold);
  overflow: hidden;
}
.star-100:after { width: 100%; }
.star-90:after  { width: 90%; }
.star-80:after  { width: 80%; }
.star-70:after  { width: 70%; }
.star-50:after  { width: 50%; }

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(255,107,26,0.1));
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 999px;
  padding: 2px 12px 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  gap: 4px;
}

.score span {
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.votes {
  display: none;
}

/* ---- CTA BUTTONS ---- */
.offer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  padding: 12px 16px;
  flex-shrink: 0;
}

/* THE MAIN CTA — pulsing gold button */
.offer-buttons .get-bonus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(245,200,66,0.35), 0 2px 8px rgba(255,107,26,0.25);
  animation: pulse-cta 2.4s ease-in-out infinite;
  flex-shrink: 0;
  text-decoration: none;
}

.offer-buttons .get-bonus::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -60%; opacity: 0; }
  30% { opacity: 1; }
  60% { left: 130%; opacity: 0; }
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,200,66,0.35), 0 2px 8px rgba(255,107,26,0.25); }
  50% { box-shadow: 0 8px 32px rgba(245,200,66,0.6), 0 4px 16px rgba(255,107,26,0.4); }
}

.offer-buttons .get-bonus:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 36px rgba(245,200,66,0.55), 0 4px 16px rgba(255,107,26,0.4);
  animation: none;
}

/* Live players widget */
.live-status-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 4px 10px;
}

.players-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-live);
}

.player-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(34,197,94,0.7);
}

/* Live dot animation */
.live-status-wrapper::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-live);
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Visit site link */
.offer-buttons .visit-site {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  display: none;
  text-align: center;
  transition: color 0.2s;
}
.offer-buttons .visit-site:hover {
  color: var(--gold);
}

/* ---- PAYMENT METHODS ---- */
.offer-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  max-width: 200px;
  padding: 0 8px;
  flex-shrink: 0;
}

.offer-payment img {
  height: 20px;
  width: auto;
  margin: 2px;
  opacity: 0.65;
  transition: opacity 0.2s;
  filter: brightness(1.1) saturate(0.7);
}
.offer-payment img:hover { opacity: 1; filter: none; }

.offers-cover-desktop .offer-payment { max-width: 190px; }

.show-more-btn { text-align: center; width: 100%; }
.show-more-btn button {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}

/* ---- OFFER BOTTOM (terms) ---- */
.offer-bottom {
  width: 94%;
  margin: 0 auto 18px;
}

.offer-bottom .terms {
  color: var(--navy-border);
  font-size: 9px;
  font-weight: 300;
  line-height: 14px;
  width: 94%;
  margin: 6px auto;
  color: #3A4F6A;
}

.offer-bottom-border {
  position: relative;
  width: 100%;
}

.line-bottom {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.left-dot, .right-dot {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background-color: var(--navy-border);
  position: absolute;
  top: -2px;
}
.left-dot { left: 0; }
.right-dot { right: 0; }

/* ============================================
   GLOW BORDERS — DISTINCT PER RANK
   ============================================ */

/* #1 — GOLD animated glow pulse */
.offers-cover-desktop .offer-cover:first-child,
.offers-cover-mobile .offer-cover:first-child {
  border: 2px solid var(--gold-dark);
  box-shadow:
    0 0 0 1px rgba(245,200,66,0.12),
    0 0 28px rgba(245,200,66,0.22),
    0 14px 48px rgba(0,0,0,0.55);
  animation: glow-gold 2.6s ease-in-out infinite;
}
@keyframes glow-gold {
  0%, 100% {
    box-shadow: 0 0 18px rgba(245,200,66,0.2), 0 0 0 1px rgba(245,200,66,0.1), 0 12px 40px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow: 0 0 42px rgba(245,200,66,0.45), 0 0 0 1px rgba(245,200,66,0.25), 0 16px 48px rgba(0,0,0,0.55);
  }
}

/* #2 — Silver/blue cool glow */
.offers-cover-desktop .offer-cover:nth-child(2),
.offers-cover-mobile .offer-cover:nth-child(2) {
  border: 1.5px solid rgba(148,174,210,0.45);
  box-shadow:
    0 0 20px rgba(120,160,220,0.18),
    0 10px 36px rgba(0,0,0,0.45);
  animation: glow-silver 3s ease-in-out infinite;
}
@keyframes glow-silver {
  0%, 100% { box-shadow: 0 0 14px rgba(120,160,220,0.14), 0 10px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 32px rgba(120,160,220,0.34), 0 14px 40px rgba(0,0,0,0.5); }
}

/* #3 — Orange/hot glow */
.offers-cover-desktop .offer-cover:nth-child(3),
.offers-cover-mobile .offer-cover:nth-child(3) {
  border: 1.5px solid rgba(255,107,26,0.45);
  box-shadow:
    0 0 20px rgba(255,107,26,0.18),
    0 10px 36px rgba(0,0,0,0.45);
  animation: glow-orange 2.8s ease-in-out infinite;
}
@keyframes glow-orange {
  0%, 100% { box-shadow: 0 0 14px rgba(255,107,26,0.15), 0 10px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 36px rgba(255,107,26,0.38), 0 14px 40px rgba(0,0,0,0.5); }
}

/* #4+ — subtle neutral */
.offers-cover-desktop .offer-cover:nth-child(n+4),
.offers-cover-mobile .offer-cover:nth-child(n+4) {
  border: 1px solid var(--navy-border);
}

/* ============================================
   MOBILE OFFERS
   ============================================ */
.offers-cover-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
}

.offers-cover-mobile .offer-cover {
  height: auto;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: visible;
  margin-top: 22px;
}

.offers-cover-mobile .left-side,
.offers-cover-mobile .right-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  min-height: 200px;
}

.left-side {
  background: linear-gradient(135deg, #0C1A30, #152240);
  border-bottom-left-radius: var(--radius-md);
  border-top-left-radius: var(--radius-md);
  border-right: 1px solid var(--navy-border);
  overflow: hidden;
}

.right-side {
  justify-content: center;
  border-bottom-right-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.left-side img {
  width: 100%;
  max-width: 140px;
  object-fit: contain;
}

.offers-cover-mobile .stars-container {
  margin: 4px 0;
  font-size: 18px;
  letter-spacing: 1px;
}

.offers-cover-mobile .offer-payment {
  max-width: 180px;
  margin-top: 8px;
  justify-content: center;
}

.offers-cover-mobile .offer-payment img { width: 30px; height: auto; }
.offers-cover-mobile .show-more-btn { width: auto; }

.offers-cover-mobile .offer-buttons {
  margin-top: 12px;
  gap: 6px;
}

.offers-cover-mobile .offer-buttons .get-bonus,
.offers-cover-mobile .offer-buttons .visit-site {
  margin-right: 0;
  width: 100%;
  text-align: center;
}

.offers-cover-mobile .offer-buttons .get-bonus {
  width: 200px;
  height: 50px;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.offers-cover-mobile .right-side { justify-content: center; }
.offers-cover-mobile .offer-bottom { margin: 0; }
.offers-cover-mobile .offer-message { margin-bottom: 4px; }
.offers-cover-mobile .offer-buttons .get-bonus { margin-bottom: 4px; }

.offers-cover-mobile .left-side a {
  display: flex;
  max-width: 150px;
  width: 100%;
  min-height: 90px;
  justify-content: center;
  align-items: center;
}

/* ============================================
   TRUST BADGES ROW (new element)
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px auto 0;
  max-width: 700px;
  padding: 0 20px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  max-width: 1100px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  background: var(--navy-card);
  padding: 36px 36px 8px;
}

.faq h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  margin: 28px 0;
  text-align: center;
}

.faq h2 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 2px;
  flex-shrink: 0;
}

.faq p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.about-item:hover {
  border-color: rgba(245,200,66,0.2);
  background: rgba(245,200,66,0.03);
}

.about-item .about-image {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.about-item .about-image img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.about-item article { flex: 1; }

.about-item h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   PLAY SAFE & FOOTER
   ============================================ */
.play-safe {
  padding: 50px 30px;
  text-align: center;
}

.play-safe h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
}

.gambl-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.gambl-logos_lg {
  max-height: 40px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.gambl-logos_lg:hover { opacity: 0.9; }

.footer {
  padding: 40px 30px 60px;
  background-color: #070F1E;
  border-top: 1px solid var(--navy-border);
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
}

/* ============================================
   EXIT POPUP
   ============================================ */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.popup-underlay {
  position: absolute;
  inset: 0;
  background: rgba(7,15,30,0.82);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.popup-body {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,200,66,0.3);
  background: linear-gradient(145deg, #0F1D35, #0B1524);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,200,66,0.1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Gold top bar on popup */
.popup-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.close-popup-btn {
  transform: rotate(45deg);
  font-size: 48px;
  line-height: 1;
  font-weight: 100;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  position: absolute;
  right: -44px;
  top: -36px;
  transition: color 0.2s;
}
.close-popup-btn:hover { color: var(--white); }

.popup-logo-cover {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, #0C1A30, #152240);
  min-height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--navy-border);
}
.popup-logo-cover img { max-width: 230px; }

.popup .offer-buttons .get-bonus {
  width: 200px;
  height: 50px;
  margin: 14px 0 28px;
  font-size: 16px;
}

.popup .offer-message {
  max-width: 280px;
  margin: 20px 0 10px;
}

.popup-button-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 9999;
}
#main-content { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .offer-logo { max-width: 170px; }
  .offer-payment img { height: 16px; }
  .faq { padding: 24px 20px 8px; }
  .faq h1 { font-size: 22px; }
  .about { padding: 24px 16px; gap: 16px; }
  .about-item { padding: 18px; }
  .play-safe h1 { font-size: 22px; }
  .gambl-logos { gap: 20px; }
}

@media (max-width: 840px) {
  .table { display: none; }
  .offers-cover-desktop { display: none; }
  .offers-cover-mobile { display: flex; }
  .offers-cover-mobile .offer-buttons { margin-top: 8px; }
  .offers-cover-mobile .visit-site { display: none !important; }
  .offers-cover-mobile .offer-payment { max-width: 280px; margin-top: 0; }
  .top-headline h1 { font-size: 22px; }
  .header-flags { width: 40px; height: 40px; }
}

@media (max-width: 770px) {
  .highlited-date-mobile { display: block; }
  .highlited-date-desc { display: block; }
}

@media (max-width: 680px) {
  .sub-headline { display: none; }
  .top-headline h1 { font-size: 18px; margin: 10px 8px; }
  .header-disclamer { font-size: 10px; padding: 6px 10px; }
  .content-cover { padding: 0 12px; }
  .close-popup-btn { right: -8px; }
  .offers-cover-mobile .offer-buttons .get-bonus { width: 100%; min-width: 130px; height: 42px; font-size: 13px; }
  .faq h1 { font-size: 20px; }
  .about-item { flex-direction: column; }
  .about-item .about-image { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .sub-header { gap: 6px; }
  .sub-header li { font-size: 11px; padding: 5px 10px; }
  .offers-cover-mobile .stars-container { font-size: 18px; }
  .offers-cover-mobile .left-side, .offers-cover-mobile .right-side { padding: 10px 8px; }
  .score span { font-size: 18px; }
  .offer-message .welcome-2 { font-size: 15px; }
  .offer-message .welcome-3 { font-size: 12px; }
  .offer-bottom .terms { font-size: 8px; }
  .faq { padding: 20px 14px 4px; }
  .about { padding: 16px 10px; }
  .play-safe { padding: 30px 12px; }
  .footer { padding: 28px 12px 50px; }
}

@media (max-width: 380px) {
  .offers-cover-mobile .left-side, .offers-cover-mobile .right-side { padding: 8px 5px; }
}
