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

/* =============================================
   ROOT & RESET
   ============================================= */
:root {
  --navy-deep:   #071A35;
  --navy-mid:    #0D2D5E;
  --navy-card:   #0a2040;
  --navy-border: #1a3a6a;
  --lime:        #6EE634;
  --lime-dark:   #4EC520;
  --gold:        #F0B234;
  --gold-dark:   #c8911a;
  --white:       #ffffff;
  --muted:       #8099bb;
  --text-body:   #c8d8ef;
  --separator:   rgba(255,255,255,0.08);

  --d: 2500ms;
  --angle: 90deg;
}

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

*, *::before, *::after { box-sizing: border-box; }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.font-display { font-family: 'Barlow Condensed', sans-serif; }
.font-bold {
  font-weight: 700;
  background: linear-gradient(135deg, #faf75e, #f6ff18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================================
   HEADER DISCLAIMER
   ============================================= */
.header-disclamer {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  color: #a0b0c8;
  background-color: #071224;
  border-bottom: 1px solid var(--navy-border);
}

/* =============================================
   BACKGROUND LAYERS
   ============================================= */
.background-image {
  width: 100%;
  min-height: 100%;
}

.background-gradient {
  background:
    linear-gradient(180deg, rgba(7,26,53,0.45) 0%, var(--navy-deep) 520px);
  width: 100%;
}

.background-gradient-bottom {
  background: var(--navy-deep);
  width: 100%;
}

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

/* =============================================
   LOGO
   ============================================= */
.logo-cover {
  width: 100%;
  max-width: 200px;
  padding: 12px 0;
  display: none;
}
.logo-cover img { width: 100%; }

/* =============================================
   TRUST BAR (top meta bar)
   ============================================= */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 0 0;
  flex-wrap: wrap;
}
.trust-bar-item {
  background: rgba(13,45,94,0.7);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  color: var(--text-body);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.trust-bar-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}

/* =============================================
   HERO HEADER
   ============================================= */
.header { padding-top: 14px; }

.top-headline {
  width: 100%;
  max-width: 860px;
  padding: 6px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.top-headline h1 {
  color: var(--white);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin: 8px 12px;
}

.header-flags { width: 70px; }

/* sub headline */
.sub-headline-text {
  width: 100%;
  max-width: 720px;
  margin: 6px auto 0;
  padding: 0 20px;
  color: var(--text-body);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* trust indicators row */
.sub-header {
  width: 100%;
  max-width: 860px;
  margin: 10px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.sub-header li {
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 9px;
}
.sub-header li img { width: 16px; height: 16px; }

.highlited-date {
  border-radius: 3px;
  border: 1px solid #29344b;
  background: #10192c;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  margin: 0 4px;
}
.highlited-date-mobile { display: none; }

/* =============================================
   SECTION HEADERS (sportsbook & casino)
   ============================================= */
.section-header {
  width: 100%;
  max-width: 1150px;
  margin: 28px auto 6px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-header-icon {
  font-size: 26px;
  line-height: 1;
}
.section-header-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 2px;
}
.section-header-text p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.section-badge {
  margin-left: auto;
  background: var(--lime);
  color: #071A35;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 3px;
  padding: 4px 8px;
  white-space: nowrap;
}
.section-badge.casino-badge {
  background: var(--gold);
}

/* =============================================
   TABLE HEADER (column labels)
   ============================================= */
.table-header-cover {
  position: relative;
  margin: 8px auto 0;
  max-width: 1150px;
  height: 30px;
}
.table-header-back {
  width: 100%;
  border-radius: 4px;
  background: #0d2448;
  height: 30px;
  position: absolute;
  z-index: 1;
}
.table-header {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 40px 0 80px;
  position: absolute;
  z-index: 2;
  height: 30px;
}
.table-header h5:first-child { width: 12%; }
.table-header h5 {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.offer-cover {
  width: 97%;
  max-width: 1150px;
  min-height: 108px;
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--navy-border);
  background: linear-gradient(106deg, #0a1e38 10%, #0e2147 90%);
  position: relative;
  transition: border-color 0.2s;
}
.offer-cover:hover { border-color: #2a5090; }

/* animated gold border on #1 */
.offers-cover-desktop .offer-cover:first-child,
.offers-cover-mobile  .offer-cover:first-child {
  border: 0.1rem solid;
  border-image: conic-gradient(from var(--angle), #0d1a39, #ffd00a 1turn, #ffed0f 0.4turn, rgba(238,255,6,0) 0.2turn) 3;
  animation: borderRotate var(--d) linear infinite forwards;
}
/* silver border on #3 */
.offers-cover-desktop .offer-cover:nth-child(3),
.offers-cover-mobile  .offer-cover:nth-child(3) {
  border: 0.1rem solid;
  border-image: conic-gradient(from var(--angle), #0e1837, #bccbe0 1turn, #ffffff 0.4turn, rgba(255,255,255,0) 0.2turn) 3;
  animation: borderRotate var(--d) linear infinite forwards;
}
/* bronze border on #5 */
.offers-cover-desktop .offer-cover:nth-child(5),
.offers-cover-mobile  .offer-cover:nth-child(5) {
  border: 0.1rem solid;
  border-image: conic-gradient(from var(--angle), #0e1837, #c59232 1turn, #e7a52b 0.4turn, rgba(202,122,1,0) 0.2turn) 3;
  animation: borderRotate var(--d) linear infinite forwards;
}
.offers-cover-desktop .offer-cover:nth-child(4),
.offers-cover-mobile  .offer-cover:nth-child(4) { border-color: #1c3560; }

/* LABEL */
.label {
  position: absolute;
  top: -15px;
  left: -12px;
  z-index: 10;
}
.label-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 26px;
  background-color: #ffda24;
  border-radius: 4px 8px 8px 0;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 4px;
  position: relative;
  z-index: 5;
}
.label-right {
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 16px;
  border-color: transparent transparent transparent #ffda24;
  position: absolute;
  top: 0; left: 168px;
  z-index: 2;
}
.label-bottom {
  position: absolute;
  z-index: 1;
  top: 26px;
  width: 14px; height: 5px;
  background-color: #caaf28;
  border-bottom-left-radius: 4px;
}
.offer-cover:nth-child(3) .label-center { background-color: #bccbe1; }
.offer-cover:nth-child(3) .label-right  { border-color: transparent transparent transparent #bccbe1; }
.offer-cover:nth-child(3) .label-bottom { background-color: #6f7e98; }
.offer-cover:nth-child(5) .label-center { background-color: #ad8c4f; }
.offer-cover:nth-child(5) .label-right  { border-color: transparent transparent transparent #ad8c4f; }
.offer-cover:nth-child(5) .label-bottom { background-color: #7a6132; }

/* ORDER NUMBER */
.order-count {
  position: absolute;
  left: -3.2%;
  z-index: 5;
  color: #3a5a9a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

/* LOGO CELL */
.offer-logo {
  max-width: 220px;
  width: 100%;
  height: 100%;
  min-height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px 0 0 7px;
  background: linear-gradient(106deg, #071425 20%, #0f2040 92%);
}
.offer-logo img {
  width: 100%;
  max-width: 165px;
  object-fit: contain;
}

/* BONUS TEXT */
.offer-message {
  width: 175px;
  text-align: center;
  padding: 8px 0;
}
.offer-message .welcome-1 {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offer-message .welcome-2 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #6EE634, #00ff05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 2px;
  line-height: 1.3;
}
.offer-message .welcome-3 {
  color: var(--text-body);
  font-size: 12px;
  font-weight: 400;
}

/* ODDS RATING CELL (sportsbook specific) */
.offer-odds {
  width: 110px;
  text-align: center;
}
.offer-odds .odds-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.offer-odds .odds-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.offer-odds .withdrawal-time {
  color: var(--text-body);
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

/* STAR RATING */
.offer-rate {
  width: 90px;
  text-align: center;
}
.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 18px;
  margin-bottom: 2px;
}
.stars-container::before {
  position: absolute; top: 0; left: 0;
  content: "★★★★★";
  color: #2a3a5a;
}
.stars-container::after {
  position: absolute; top: 0; left: 0;
  content: "★★★★★";
  color: #ffcb0f;
  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, .votes {
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 3px;
}
.votes { display: none; }
.score span {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

/* CTA BUTTONS */
.offer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 10px;
}
.offers-cover-desktop .offer-buttons { min-width: 200px; }
.offer-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.offer-buttons .get-bonus {
  color: #071A35;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 158px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--lime) 0%, #4EC520 100%);
  border-radius: 6px;
  margin-bottom: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 14px rgba(110,230,52,0.30);
}
.offer-buttons .get-bonus:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(110,230,52,0.45);
}
.offers-cover-desktop .offer-buttons .get-bonus {
  margin-top: 8px;
  margin-bottom: 8px;
}
.offer-buttons .visit-site {
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  display: none;
}
.offer-buttons .visit-site:hover { text-decoration: underline; }

/* PAYMENT METHODS */
.offer-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.offer-payment img { margin: 2px; }
.offers-cover-desktop .offer-payment { max-width: 190px; }
.offers-cover-desktop .offer-payment img { height: 14px; }
.show-more-btn { text-align: center; width: 100%; }
.show-more-btn button {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* TERMS ROW */
.offer-bottom {
  width: 99%;
  max-width: 1150px;
  margin: 0 auto 18px;
}
.offer-bottom .terms {
  color: #4a5878;
  font-size: 9px;
  font-weight: 300;
  line-height: 14px;
  width: 92%;
  margin: 5px auto;
}
.offer-bottom-border { position: relative; }
.line-bottom {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1e2c47;
}
.left-dot, .right-dot {
  width: 5px; height: 5px;
  transform: rotate(45deg);
  background-color: #1e2c47;
  position: absolute;
  top: -2px;
}
.left-dot  { left: 0; }
.right-dot { right: 0; }

/* =============================================
   SECTION DIVIDER (between sportsbook & casino)
   ============================================= */
.section-divider {
  width: 100%;
  max-width: 1150px;
  margin: 38px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e3a6a 40%, #1e3a6a 60%, transparent);
}
.section-divider-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
  width: 100%;
  max-width: 1142px;
  margin: 20px auto 0;
  border-radius: 6px;
  border: 1px solid #192a47;
  background: #040e1d;
  padding: 28px 30px 10px;
}
.faq h1 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 24px;
  text-align: center;
}
.faq h2 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  margin: 18px 0 8px;
}
.faq p {
  color: #6e7d9e;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 50px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  width: 100%;
  max-width: 1142px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}
.about-item { display: flex; flex-direction: row; margin-bottom: 20px; }
.about-item .about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18%;
  padding: 10px;
}
.about-item article { width: 82%; }
.about-item h2 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
}
.about-item p { color: var(--text-body); font-size: 14px; line-height: 20px; }

/* =============================================
   RESPONSIBLE GAMBLING
   ============================================= */
.play-safe {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px 60px;
}
.play-safe h1 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 50px 0 30px;
}
.gambl-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.gambl-logos_sm { max-height: 36px; }
.gambl-logos_lg { max-height: 42px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px 30px 65px;
  background-color: #040e1d;
  text-align: center;
  border-top: 1px solid #0d1e38;
}
.footer p { color: var(--muted); font-size: 13px; font-weight: 300; line-height: 22px; }

/* =============================================
   EXIT POPUP
   ============================================= */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 99999;
}
.popup-underlay {
  background: rgba(4,10,24,0.80);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.popup-body {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  border: 1px solid rgba(240,178,52,0.5);
  background: linear-gradient(135deg, #0d1e38 0%, #122040 100%);
  box-shadow: 0 8px 40px rgba(240,178,52,0.22);
  position: relative;
  z-index: 2;
}
.close-popup-btn {
  transform: rotate(45deg);
  font-size: 56px;
  line-height: 28px;
  font-weight: 100;
  color: var(--white);
  cursor: pointer;
  border: none;
  background: transparent;
  position: absolute;
  right: -46px; top: -36px;
}
.popup-logo-cover {
  border-radius: 9px 9px 0 0;
  border: 1px solid rgba(240,178,52,0.4);
  background: linear-gradient(106deg, #071425 20%, #0f2040 92%);
  min-height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-logo-cover img { width: 230px; }
.popup .offer-buttons .get-bonus { margin: 10px 0 28px; }
.popup .offer-message { max-width: 270px; margin: 18px 0 8px; }
.popup-button-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* =============================================
   MOBILE OFFERS
   ============================================= */
.offers-cover-mobile {
  display: none;
  flex-direction: column;
}
.offers-cover-mobile .offer-cover {
  height: auto;
  background: #071830;
  border: 1px solid var(--navy-border);
}
.offers-cover-mobile .left-side,
.offers-cover-mobile .right-side {
  width: 50%;
  min-height: 190px;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.left-side {
  border-radius: 7px 0 0 7px;
  background: linear-gradient(104deg, #071425 8%, #0f2040 92%);
}
.right-side {
  border-radius: 0 7px 7px 0;
}
.left-side img { width: 100%; max-width: 145px; }
.offers-cover-mobile .stars-container { margin: 5px 0; font-size: 24px; }
.offers-cover-mobile .offer-payment { max-width: 175px; margin-top: 8px; justify-content: center; }
.offers-cover-mobile .offer-payment img { width: 25px; }
.offers-cover-mobile .offer-buttons { margin-top: 18px; }
.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: 215px; height: 52px; }
.offers-cover-mobile .right-side { justify-content: center; }
.offers-cover-mobile .offer-bottom { margin: 0; }

/* =============================================
   CONVERSION BADGES
   ============================================= */
.expert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 0 6px;
  flex-wrap: wrap;
}
.expert-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.expert-badge-item .badge-icon { font-size: 14px; }

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
.hide-on-mobile { display: block; }
.show-on-desktop { display: block; }

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

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes borderRotate {
  100% { --angle: 450deg; }
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media screen and (max-width: 900px) {
  .offer-logo { max-width: 170px; }
  .offer-odds { width: 90px; }
  .faq { padding: 10px 24px 0; }
  .faq h1 { font-size: 20px; margin: 20px 0; }
  .faq h2 { font-size: 16px; }
  .faq p  { font-size: 13px; margin-bottom: 18px; }
  .about { padding: 28px 16px; }
  .about-item .about-image { width: 14%; }
  .play-safe h1 { font-size: 22px; }
}

/* =============================================
   RESPONSIVE — 840px (switch to mobile cards)
   ============================================= */
@media screen and (max-width: 840px) {
  .header-flags { width: 60px; height: 50px; }
  .top-headline h1 { font-size: 26px; }
  .table { display: none; }
  .offers-cover-desktop { display: none; }
  .offers-cover-mobile  { display: flex; }
  .offers-cover-mobile .visit-site { display: none; }
  .offers-cover-mobile .offer-payment { max-width: 290px; margin-top: 0; }
  .offers-cover-mobile .left-side img { max-width: 190px; }
  .offers-cover-mobile .left-side a {
    display: flex; max-width: 160px; width: 100%;
    min-height: 95px; justify-content: center; align-items: center;
  }
  .offer-message { margin-bottom: 4px; }
  .offer-buttons .get-bonus { margin-bottom: 4px; }
  .offers-cover-mobile .left-side { min-height: 210px; }
}

/* =============================================
   RESPONSIVE — 680px
   ============================================= */
@media screen and (max-width: 680px) {
  .content-cover { padding: 0 8px; }
  .top-headline { padding: 0 8px; }
  .top-headline h1 { font-size: 20px; margin: 8px 8px 10px; }
  .logo-cover { max-width: 120px; }
  .header-disclamer { font-size: 9px; padding: 5px 8px; }
  .sub-headline { display: none; }
  .sub-header { padding: 0 4px; margin: 5px auto 8px; gap: 4px; }
  .sub-header li { font-size: 9px; padding: 3px 7px; }
  .close-popup-btn { right: -8px; }
  .offers-cover-mobile .offer-buttons .get-bonus { width: 175px; height: 48px; }
  .section-header-text h2 { font-size: 18px; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media screen and (max-width: 480px) {
  .sub-header { margin: 0 auto 4px; }
  .sub-header li { font-size: 8px; }
  .offers-cover-mobile .stars-container { font-size: 17px; }
  .offers-cover-mobile .offer-payment { margin-top: 4px; }
  .offer-message .welcome-2 { font-size: 13px; }
  .offers-cover-mobile .offer-buttons .get-bonus {
    width: 100%; min-width: 125px; height: 36px; font-size: 13px;
  }
  .score span { font-size: 16px; }
  .faq h1 { font-size: 17px; margin: 16px 0 12px; text-align: left; }
  .faq { padding: 10px 16px 0; }
  .faq h2 { font-size: 14px; line-height: 18px; margin: 8px 0; }
  .faq p  { font-size: 12px; line-height: 17px; }
  .about-item { flex-direction: column; }
  .about-item .about-image { width: 100%; }
  .about-item article { width: 100%; }
  .about { padding: 16px 8px 0; }
  .play-safe { padding: 0 8px 28px; }
  .play-safe h1 { font-size: 18px; margin: 28px 0 34px; }
  .footer { padding: 28px 8px; }
  .footer p { font-size: 11px; }
  .top-headline h1 { margin: 6px 4px 8px; }
  .section-header { padding: 0 2px; }
  .offers-cover-mobile .left-side,
  .offers-cover-mobile .right-side { padding: 8px 12px 4px; }
  .trust-bar-item { font-size: 9px; padding: 3px 7px; }
}

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