/* =========================================================
   7casinosonlineportugal.com — stylesheet
   Palette: Near Black / Emerald
   ========================================================= */

:root {
  --bg-page: #060e0a;
  --bg-card: #0d1a12;
  --bg-card2: #122018;
  --accent: #2ecc7a;
  --accent-hover: #22a860;
  --text-h: #2ecc7a;
  --text-body: #cce8d8;
  --text-muted: #507060;
  --border: #1a2e20;
  --btn-bg: #2ecc7a;
  --btn-text: #060e0a;
  --warning-bg: #0e1208;
  --warning-border: #4a6a20;
  --warning-accent: #90c840;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-page);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  padding: 32px 0 48px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}

/* ---------- Typography ---------- */
h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

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

.muted {
  color: var(--text-muted);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  padding: 4px 0;
  background: none;
  border: none;
}

.nav a:hover {
  color: var(--text-body);
}

.nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-body);
  cursor: pointer;
  padding: 6px;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* ---------- Compliance Bar ---------- */
.compliance {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 6px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.compliance a {
  color: var(--text-muted);
  text-decoration: underline;
}

.compliance a:hover {
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}

.hero p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 14px;
}

.pill {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-h);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  padding: 16px 36px 16px 0;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  content: "×";
}

.faq-answer {
  display: none;
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 0 0 16px 0;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---------- Operator Ranking ---------- */
.ranking-sub {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.operator-list {
  list-style: none;
}

.operator {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease;
}

.operator:last-child {
  border-bottom: none;
}

.operator:hover {
  background: var(--bg-card2);
}

.op-number {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--btn-text);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.op-logo {
  width: 90px;
  min-width: 90px;
  height: 44px;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.op-logo img {
  max-width: 80px;
  max-height: 36px;
  object-fit: contain;
}

.op-info {
  flex-grow: 1;
  min-width: 0;
}

.op-name {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 2px;
}

.op-categories {
  color: var(--text-body);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.op-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.op-rating {
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.op-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.op-score {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.op-btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  border: none;
  transition: background 0.2s ease;
  display: inline-block;
}

.op-btn:hover {
  background: var(--accent-hover);
  color: var(--btn-text);
}

.op-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ---------- Help Grid ---------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.help-cell {
  background: var(--bg-card2);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease;
}

.help-cell:hover {
  background: #18301f;
}

.help-cell img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 8px;
}

.help-cell .name {
  font-size: 0.8rem;
  color: var(--text-h);
  font-weight: 600;
  margin-bottom: 4px;
}

.help-cell .desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- Warning Banner ---------- */
.warning-banner {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.warning-banner strong {
  color: var(--warning-accent);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 32px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-nav .sep {
  color: var(--text-muted);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-pill {
  background: var(--bg-card2);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  text-decoration: none;
}

.footer-pill img {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: grayscale(70%) opacity(0.7);
  transition: filter 0.2s ease;
}

.footer-pill:hover img {
  filter: none;
  opacity: 1;
}

.footer-pill .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-warning {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 0;
  max-width: 720px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.footer-copy p {
  margin-bottom: 4px;
}

/* ---------- Popups ---------- */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 32px;
  text-align: center;
}

.age-modal img {
  height: 40px;
  width: auto;
  margin: 0 auto 16px;
}

.age-modal h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.age-modal p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  color: var(--text-body);
  border-color: var(--text-muted);
}

.age-links {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.age-links a {
  color: var(--text-muted);
  text-decoration: underline;
  margin: 0 6px;
}

.age-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-body);
  flex: 1 1 300px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ---------- Inner pages ---------- */
.inner ul {
  margin: 10px 0 16px 20px;
}

.inner li {
  margin-bottom: 6px;
}

.inner h2 {
  margin-top: 20px;
}

.inner h2:first-child {
  margin-top: 0;
}

/* Contact form (decorative) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-body);
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  padding: 12px 28px;
}

/* Help list for responsible gambling page */
.help-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0 !important;
}

.help-list li {
  background: var(--bg-card2);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 !important;
}

.help-list img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.help-list .help-text {
  font-size: 0.85rem;
}

.help-list .help-text strong {
  display: block;
  color: var(--text-h);
  margin-bottom: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .card {
    padding: 20px;
  }

  .hero {
    padding: 40px 16px;
  }

  .operator {
    flex-wrap: wrap;
  }

  .op-info {
    flex: 1 1 calc(100% - 140px);
  }

  .op-rating {
    order: 3;
    min-width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
  }

  .op-btn {
    order: 4;
    flex: 1 1 100%;
    text-align: center;
  }

  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand span {
    display: none;
  }

  .op-info {
    flex: 1 1 calc(100% - 60px);
  }

  .op-logo {
    order: 2;
  }
}

/* =========================================================
   LAYER 2 — OFFERWALL OVERLAY
   ========================================================= */

/* Overlay */
.offerwall {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a1128;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
  color: #e7ecf7;
  -webkit-font-smoothing: antialiased;
}

.offerwall.hidden {
  display: none;
}

.offerwall-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px 60px;
}

/* ---- Header ---- */
.offerwall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.offerwall-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offerwall-brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #22d3ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offerwall-brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.offerwall-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.offerwall-subtitle {
  color: #b8c0d4;
  font-size: 14px;
  font-weight: 400;
}

.offerwall-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #b8c0d4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.offerwall-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ---- Offer list ---- */
.offerwall-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Offer card ---- */
.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 140px 110px 140px 170px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px 36px;
  background: linear-gradient(180deg, rgba(20, 30, 60, 0.6) 0%, rgba(14, 22, 48, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Corner tags */
.offer-tag {
  position: absolute;
  top: -10px;
  right: 24px;
  padding: 4px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a1128;
  z-index: 2;
}

.offer-tag-hot {
  background: #ef4444;
  color: #ffffff;
}

.offer-tag-new {
  background: #22d3ee;
  color: #0a1128;
}

.offer-tag-popular {
  background: #a3e635;
  color: #0a1128;
}

/* Logo cell */
.offer-logo {
  grid-row: 1;
  background: #0a1128;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.offer-logo-text {
  font-weight: 800;
  font-style: italic;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
}

.offer-logo-daytona {
  color: #facc15;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.offer-logo-westace {
  color: #facc15;
  font-size: 26px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-weight: 400;
}

.offer-logo-lolajack {
  color: #facc15;
  font-size: 24px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-weight: 400;
}

.offer-logo-lizaro {
  color: #f97316;
  font-size: 22px;
  letter-spacing: 0.12em;
}

.offer-logo-amon {
  color: #f97316;
  font-size: 20px;
  letter-spacing: 0.06em;
}

/* Bonus cell */
.offer-bonus {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus-label {
  color: #8b93a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.offer-bonus-main {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.offer-bonus-extra {
  color: #22d3ee;
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
}

/* Rating + Score columns */
.offer-rating,
.offer-score {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.offer-col-label {
  color: #8b93a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-stars {
  color: #f97316;
  font-size: 14px;
  letter-spacing: 1px;
}

.offer-stars .star-dim {
  color: rgba(249, 115, 22, 0.25);
}

.offer-score-value {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

/* Payment badges */
.offer-pay {
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, 28px);
  grid-template-rows: repeat(2, 28px);
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.pay-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.pay-visa {
  background: #0a1128;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 7px;
}

.pay-pay {
  background: #0a1128;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 8px;
}

.pay-b-blue {
  background: #2563eb;
  font-size: 11px;
}

.pay-b-orange {
  background: #f97316;
  font-size: 11px;
  grid-column: 2;
}

/* CTA button */
.offer-cta {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.55), 0 4px 12px rgba(34, 197, 94, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.offer-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(34, 197, 94, 0.7), 0 6px 16px rgba(34, 197, 94, 0.35);
}

/* Disclaimer row (spans full width, centered below) */
.offer-disclaimer {
  grid-row: 2;
  grid-column: 2 / -1;
  margin: 0;
  padding-top: 10px;
  color: #6b7490;
  font-size: 12px;
  text-align: center;
}

/* ---- Responsive: tablet ---- */
@media (max-width: 1024px) {
  .offerwall-inner {
    padding: 20px 24px 48px;
  }

  .offer-card {
    grid-template-columns: 140px 1fr 90px 100px 100px 150px;
    padding: 18px 20px 30px;
    gap: 14px;
  }

  .offer-logo {
    height: 78px;
  }

  .offer-bonus-main {
    font-size: 18px;
  }

  .offer-score-value {
    font-size: 24px;
  }

  .offer-cta {
    height: 48px;
    font-size: 13px;
  }

  .offer-disclaimer {
    grid-column: 1 / -1;
  }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 760px) {
  .offerwall-inner {
    padding: 16px 14px 40px;
  }

  .offerwall-header {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .offerwall-subtitle {
    display: none;
  }

  .offer-card {
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 14px;
    padding: 20px 16px 26px;
  }

  .offer-tag {
    top: -10px;
    right: 14px;
  }

  .offer-logo {
    grid-column: 1;
    grid-row: 1;
    height: 70px;
  }

  .offer-bonus {
    grid-column: 2;
    grid-row: 1;
  }

  .offer-bonus-main {
    font-size: 17px;
  }

  .offer-rating,
  .offer-score {
    grid-row: 2;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  .offer-rating {
    grid-column: 1 / -1;
  }

  .offer-score {
    display: none; /* keep card compact on mobile; score already present via rating */
  }

  .offer-pay {
    grid-row: 3;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 28px);
    grid-template-rows: 28px;
    justify-content: center;
  }

  .pay-b-orange {
    grid-column: auto;
  }

  .offer-cta {
    grid-row: 4;
    grid-column: 1 / -1;
    height: 50px;
  }

  .offer-disclaimer {
    grid-row: 5;
    grid-column: 1 / -1;
    padding-top: 4px;
  }
}
