:root{
  --bg:#F3F2ED;
  --surface:#fffdf8;
  --surface-2:#f8f4eb;
  --text:#23211d;
  --muted:#6b655a;
  --border:#ddd3c1;
  --accent:#6d4f2c;
  --accent-2:#a47a44;
  --success:#214b2f;
  --shadow:0 10px 28px rgba(35,33,29,.08);
  --radius:18px;
  --max:1120px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/* Global H1 styling */
h1{
  text-transform:uppercase;
}

body{
  margin:0;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  background:#F3F2ED;
  color:var(--text);
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.free-spins-table-wrap{
  width:min(100%,980px);
  margin:1.5rem auto;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.free-spins-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  text-align:center;
  font-size:.96rem;
}

.free-spins-table th{
  background:linear-gradient(180deg,var(--accent),#563d21);
  color:#fff;
  padding:1rem .8rem;
  font-weight:700;
  line-height:1.25;
  border-right:1px solid rgba(255,255,255,.18);
}

.free-spins-table th:last-child{
  border-right:none;
}

.free-spins-table td{
  padding:1rem .8rem;
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
  vertical-align:middle;
  background:#fffdf8;
}

.free-spins-table td:last-child{
  border-right:none;
}

.free-spins-table tbody tr:nth-child(even) td{
  background:var(--surface-2);
}

.free-spins-table tbody tr:hover td{
  background:#f1e7d6;
}

.free-spins-table tbody tr:last-child td{
  border-bottom:none;
}

.free-spins-table td:first-child{
  text-align:left;
  color:#1d1a15;
}

.status-yes,
.status-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  padding:.35rem .65rem;
  border-radius:999px;
  font-weight:700;
  font-size:.86rem;
}

.status-yes{
  background:#e5f2e8;
  color:var(--success);
  border:1px solid rgba(33,75,47,.22);
}

.status-no{
  background:#f3eadc;
  color:#6d4f2c;
  border:1px solid rgba(109,79,44,.22);
}

.bonus-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
  padding:.7rem 1rem;
  border-radius:999px;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  color:#fff;
  font-weight:800;
  letter-spacing:.3px;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(109,79,44,.22);
  transition:transform .15s ease, box-shadow .15s ease;
}

.bonus-button:hover{
  color:#fff;
  text-decoration:none;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(109,79,44,.28);
}

.free-spins-disclaimer{
  margin:0;
  padding:1rem;
  text-align:center;
  color:var(--muted);
  font-size:.9rem;
  background:var(--surface-2);
  border-top:1px solid var(--border);
}

.free-spins-disclaimer a{
  font-weight:700;
}

@media (max-width:760px){
  .free-spins-table-wrap{
    border-radius:16px;
  }

  .free-spins-table,
  .free-spins-table thead,
  .free-spins-table tbody,
  .free-spins-table th,
  .free-spins-table td,
  .free-spins-table tr{
    display:block;
  }

  .free-spins-table thead{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  .free-spins-table tr{
    padding:1rem;
    border-bottom:1px solid var(--border);
    background:#fffdf8;
  }

  .free-spins-table tr:nth-child(even){
    background:var(--surface-2);
  }

  .free-spins-table tbody tr:last-child{
    border-bottom:none;
  }

  .free-spins-table td{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    text-align:right;
    padding:.65rem 0;
    border:none;
    background:transparent !important;
  }

  .free-spins-table td:first-child{
    text-align:right;
  }

  .free-spins-table td::before{
    content:attr(data-label);
    font-weight:700;
    color:var(--text);
    text-align:left;
  }

  .bonus-button{
    min-width:120px;
  }
}

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

img.freespins {
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
	border-radius:10px;
	height:auto
}

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

a:hover{
  text-decoration:underline;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.75rem 1rem;
  background:#fff;
  z-index:1000;
  border-radius:8px;
}

.container,
.hero{
  width:min(100% - 2rem,var(--max));
  margin:0 auto;
}

.site-header{
  position:relative;
  z-index:30;
  background:#062f22;
  backdrop-filter:none;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.header-inner{
  width:min(100% - 2rem,var(--max));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.8rem;
  font-weight:700;
  color:#fff;
  letter-spacing:.2px;
}

.brand:hover{
  text-decoration:none;
}

.brand-logo{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
  flex:0 0 42px;
}

.site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:.35rem;
  align-items:center;
}

.site-nav a{
  display:inline-block;
  padding:.7rem .9rem;
  border-radius:10px;
  color:#fff;
  font-weight:600;
}

.site-nav a[aria-current="page"],
.site-nav a:hover{
  background:rgba(255,255,255,.12);
  text-decoration:none;
}

.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:.7rem .9rem;
  border-radius:10px;
  font:inherit;
  font-weight:700;
}

.hero{
  padding:2rem 0 1rem;
}

.hero-card{
  width:auto;
  margin:0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:1.25rem;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:1.25rem;
  align-items:center;
}

.hero-copy{
  padding:1rem;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:.78rem;
  font-weight:700;
  color:var(--accent);
}

.hero h1{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.15;
  margin:.3rem 0 1rem;
}

.lead{
  font-size:1.06rem;
  color:var(--muted);
}

.hero-image img{
  width:100%;
  aspect-ratio:4 / 3;
  height:auto;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--border);
}


.offers{
  margin:1rem 0 1.6rem;
  background:#062f22;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:clamp(1rem,2vw,1.25rem);
  box-shadow:var(--shadow);
}

.offers__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin:0 0 1rem;
  color:#fff;
}

.offers__title{
  margin:0 !important;
  color:#fff !important;
  font-size:clamp(1.35rem,2.4vw,1.75rem) !important;
}

.offers__sub{
  margin:0;
  color:#e7dcc4;
  font-weight:700;
  font-size:.95rem !important;
}

.offers__grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.offer{
  background:#fffdf8;
  border:1px solid var(--border);
  border-radius:18px;
  padding:1rem;
  display:flex;
  flex-direction:column;
  min-height:100%;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.offer__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
  margin-bottom:.85rem;
}

.offer__name{
  color:#1d1a15;
  font-weight:800;
  line-height:1.2;
}

.offer__badge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:.35rem .55rem;
  background:#e5f2e8;
  border:1px solid rgba(33,75,47,.22);
  color:var(--success);
  font-size:.78rem;
  font-weight:800;
  white-space:nowrap;
}

.offer__hero{
  display:flex;
  align-items:center;
  gap:.8rem;
  background:linear-gradient(180deg,#0b3f2e,#062f22);
  border-radius:16px;
  color:#fff;
  padding:.85rem 1rem;
  margin-bottom:.9rem;
}

.offer__hero-num{
  font-size:clamp(2.2rem,5vw,3.25rem);
  line-height:1;
  font-weight:900;
  letter-spacing:-1px;
}

.offer__hero-label{
  display:grid;
  gap:.15rem;
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase;
}

.offer__hero-label small{
  font-size:.78rem;
  color:#e7dcc4;
  text-transform:none;
  font-weight:700;
}

.offer__stats{
  margin:0 0 1rem;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.55rem;
}

.offer__stats div{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:.6rem;
}

.offer__stats--wide{
  grid-column:1 / -1;
}

.offer__stats dt{
  margin:0 0 .2rem;
  color:var(--muted);
  font-size:.76rem;
  line-height:1.2;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.35px;
}

.offer__stats dd{
  margin:0;
  color:#1d1a15;
  font-weight:800;
  line-height:1.28;
  overflow-wrap:anywhere;
}

.offer__stats--deposit.deposit--no{
  background:#e5f2e8;
  border-color:rgba(33,75,47,.22);
}

.offer__stats--deposit.deposit--yes{
  background:#fff3e8;
  border-color:rgba(247,103,26,.25);
}

.offer__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin:auto 0 .75rem;
  padding:.85rem 1rem;
  border-radius:999px;
  background:#F7671A;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  text-align:center;
  box-shadow:0 8px 18px rgba(247,103,26,.22);
}

.offer__cta:hover,
.offer__cta:visited{
  color:#fff;
}

.offer__cta:hover{
  text-decoration:none;
  filter:brightness(.95);
}

.offer__disclaimer{
  margin:0;
  color:var(--muted);
  font-size:.82rem !important;
  line-height:1.45;
}

@media (max-width:1000px){
  .offers__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:680px){
  .offers{
    border-radius:18px;
    padding:.8rem;
  }

  .offers__head{
    display:block;
  }

  .offers__sub{
    margin-top:.35rem;
  }

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

  .offer{
    border-radius:16px;
  }
}

.content-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(1.1rem,2vw,1.7rem);
  margin:1rem 0 1.15rem;
}

.content-card h2,
.content-card h3{
  line-height:1.25;
  color:#1d1a15;
}

.content-card h2{
  font-size:clamp(1.5rem,2.6vw,2rem);
  margin:1.8rem 0 .75rem;
}

.content-card h3{
  font-size:1.15rem;
  margin:1.3rem 0 .55rem;
}

.content-card p,
.content-card li{
  font-size:1rem;
}

.centered{
  text-align:center;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin:1.3rem 0;
}

.info-box,
.notice-box{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1rem;
}

.widget-area{
  margin:1.5rem 0;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1rem;
}

.image-block{
  margin:1rem 0 1.25rem;
}

.image-block img{
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

blockquote{
  margin:1rem 0;
  padding:1rem 1rem 1rem 1.1rem;
  border-left:5px solid var(--accent-2);
  background:var(--surface-2);
  border-radius:0 14px 14px 0;
}

/* ========== Author box ========== */
.author-box {
  margin: 40px 0 24px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7ecd2 100%);
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 2px #d9a441,
    inset 0 0 0 4px #ffffff,
    0 10px 24px rgba(8, 2, 4, 0.18);
  position: relative;
}

.author-box__media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-box__media img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #fff4d6 0%, #f4cf6b 100%);
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #d9a441, 0 8px 18px rgba(0,0,0,0.25);
}

.author-box__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.author-box__body { flex: 1; min-width: 0; }

.author-box__eyebrow {
  display: inline-block;
  font-family: 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: #8a6418;
  margin-bottom: 4px;
}

.author-box__name {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  color: #2a0610;
  letter-spacing: -0.01em;
}

.author-box__bio {
  margin: 0 0 12px;
  color: #2a1502;
  font-size: 16px;
  line-height: 1.6;
}

.author-box__bio strong { color: #4a0d1a; }

.author-box__link {
  display: inline-block;
  font-weight: 700;
  color: #4a0d1a !important;
  text-decoration: none;
  border-bottom: 2px solid #d9a441;
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.author-box__link:hover { color: #e51f3c !important; border-color: #e51f3c; }

@media (max-width: 600px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 22px 18px;
  }
  .author-box__media img { width: 100px; height: 100px; }
  .author-box__name { font-size: 22px; }
  .author-box__bio { font-size: 15px; }
}

.resource-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1rem;
}

.resource-card{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1rem;
}

footer{
  margin-top:2rem;
  background:#062f22;
  color:#f7f3ea;
}

.footer-inner{
  width:min(100% - 2rem,var(--max));
  margin:0 auto;
  padding:2rem 0;
}

.footer-top{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:1.5rem;
}

.footer-links a{
  color:#f7f3ea;
  display:block;
  padding:.2rem 0;
}

.footer-links a:visited,
footer a:visited{
  color:#f7f3ea;
}

.footer-links a:hover,
.footer-links a:visited:hover{
  color:#F7671A;
}

footer a:hover,
footer a:visited:hover{
  color:#F7671A;
}

.footer-note{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:1.25rem;
  padding-top:1rem;
  color:#ddd0b8;
  font-size:.95rem;
}

.footer-note table{
  max-width:100%;
}

.meta-list{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
  display:grid;
  gap:.45rem;
}


.hero-cta-wrap{
  display:flex;
  justify-content:center;
  margin:1.25rem 0 .25rem;
}

.hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:100%;
  margin:0;
  padding:.85rem 1rem;
  border-radius:999px;
  background:#F7671A;
  color:#fff;
  font-weight:900;
  line-height:1.25;
  text-align:center;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(247,103,26,.22);
}

.hero-cta:visited{
  background:#F7671A;
  color:#fff;
}

.hero-cta:hover,
.hero-cta:focus{
  background:#F7671A;
  color:#fff;
  text-decoration:none;
  filter:brightness(.95);
}


.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin:1rem 0;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:999px;
  padding:.55rem .8rem;
  font-size:.92rem;
}

.table-reset{
  width:100%;
  border-collapse:collapse;
}

.table-reset td{
  padding:.35rem;
}

.small{
  font-size:.86rem;
  color:var(--muted);
}

hr.soft{
  border:none;
  border-top:1px solid var(--border);
  margin:1.5rem 0;
}

@media (max-width:900px){
  .hero-card,
  .footer-top,
  .info-grid,
  .resource-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:760px){
  .nav-toggle{
    display:inline-flex;
  }

  .site-nav{
    position:absolute;
    left:1rem;
    right:1rem;
    top:calc(100% + .5rem);
    background:#062f22;
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:.6rem;
    display:none;
  }

  .site-nav.open{
    display:block;
  }

  .site-nav ul{
    display:block;
  }

  .site-nav li + li{
    margin-top:.25rem;
  }

  .site-nav a{
    display:block;
  }

  .hero{
    padding:1.25rem 0 .75rem;
  }

  .hero-card{
    padding:1rem;
    border-radius:18px;
  }

  .hero-copy{
    padding:.25rem;
  }

  .hero h1{
    font-size:clamp(1.65rem,8vw,2.1rem);
  }
  .hero-cta-wrap{
    margin:1rem 0 .2rem;
  }

  .hero-cta{
    padding:.8rem 1rem;
    font-size:.96rem;
  }


  .lead{
    font-size:1rem;
  }

  .hero-image img{
    border-radius:16px;
  }

  .content-card{
    border-radius:16px;
  }

  .footer-note center{
    display:block;
    overflow-x:auto;
  }
}

/* Offer rows, responsive casino list layout */
.offer-rows{
  width:100%;
  max-width:100%;
  margin:1.4rem 0 2rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.offer-rows__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1rem;
  padding:1rem 1.25rem;
  background:#f7f6f1;
  border-bottom:1px solid var(--border);
}

.offer-rows__head h3{
  margin:0;
  font-size:1.25rem;
  color:#061f17;
}

.offer-rows__head p{
  margin:0;
  color:var(--muted);
  font-size:.94rem;
  line-height:1.35;
  text-align:right;
}

.offer-row{
  width:100%;
  max-width:100%;
  display:grid;
  grid-template-columns:minmax(105px,145px) minmax(0,1.15fr) minmax(86px,.38fr) minmax(170px,.88fr) minmax(116px,132px);
  grid-template-areas:
    "brand main license facts action"
    "fine fine fine fine fine";
  gap:.75rem;
  align-items:center;
  padding:1.15rem 1rem .7rem;
  border-bottom:1px solid #d8d0c0;
  background:#fff;
}

.offer-row:last-child{
  border-bottom:none;
}

.offer-row > *{
  min-width:0;
}

.offer-row__brand{
  grid-area:brand;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:clamp(1.25rem,2.2vw,1.7rem);
  line-height:.96;
  letter-spacing:.25px;
  color:#061f17;
  border-radius:15px;
  background:#faf9f4;
  border:1px solid #eee7d8;
  text-transform:uppercase;
  overflow:hidden;
}

.offer-row__brand span{
  font-size:.72em;
  letter-spacing:1.3px;
}

.offer-row__brand--royal{
  color:#a8792d;
  font-family:Georgia, serif;
}

.offer-row__brand--one{
  color:#20c863;
  font-style:italic;
}

.offer-row__brand--playojo{
  color:#104c38;
}

.offer-row__brand--mrgreen{
  color:#0f8d45;
}

.offer-row__brand--betsson{
  color:#102d6f;
  text-transform:none;
}

.offer-row__brand--kapow{
  color:#e44824;
}

.offer-row__main{
  grid-area:main;
}

.offer-row__badge{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  margin-bottom:.42rem;
  padding:.3rem .52rem;
  border-radius:7px;
  background:#e7faee;
  color:#009b3a;
  font-size:.72rem;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  white-space:nowrap;
}

.offer-row__main h3{
  margin:0;
  color:#061f17;
  font-size:clamp(1.2rem,2.1vw,1.62rem);
  line-height:1.12;
  overflow-wrap:break-word;
}

.offer-row__main h3 strong{
  color:#ff0000;
}

.offer-row__main p{
  margin:.42rem 0 0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.35;
  overflow-wrap:break-word;
}

.offer-row__license{
  grid-area:license;
  display:grid;
  gap:.15rem;
  align-content:center;
  color:#061f17;
  font-weight:800;
  line-height:1.2;
  font-size:.9rem;
}

.offer-row__license span{
  color:#05a23f;
  white-space:nowrap;
}

.offer-row__license small{
  color:var(--muted);
  font-weight:800;
  overflow-wrap:anywhere;
}

.offer-row__facts{
  grid-area:facts;
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.28rem;
  font-size:.91rem;
  line-height:1.34;
}

.offer-row__facts li{
  position:relative;
  padding-left:1.35rem;
  overflow-wrap:break-word;
}

.offer-row__facts li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:0;
  color:#21bf4d;
  font-weight:900;
}

.offer-row__action{
  grid-area:action;
  display:flex;
  justify-content:center;
}

.offer-row__action a{
  width:100%;
  max-width:132px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:.68rem .58rem;
  box-sizing:border-box;
  border-radius:7px;
  background:#009b3a;
  color:#fff;
  font-size:.94rem;
  font-weight:900;
  line-height:1.15;
  text-align:center;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(0,155,58,.18);
  white-space:normal;
}

.offer-row__action a::after{
  content:"\2197";
  margin-left:.28rem;
  font-size:1.05rem;
  line-height:1;
  flex:0 0 auto;
}

.offer-row__action a:hover,
.offer-row__action a:visited{
  color:#fff;
}

.offer-row__action a:hover{
  background:#008633;
  text-decoration:none;
}

.offer-row__fineprint{
  grid-area:fine;
  margin:.05rem 0 0;
  padding-top:.55rem;
  border-top:1px solid #e5dfd1;
  color:#8a8378;
  font-size:.76rem !important;
  line-height:1.45;
  text-align:center;
  font-style:italic;
}

@media (max-width:1120px){
  .offer-row{
    grid-template-columns:minmax(100px,132px) minmax(0,1fr) minmax(168px,.9fr) minmax(112px,126px);
    grid-template-areas:
      "brand main facts action"
      "brand license facts action"
      "fine fine fine fine";
    gap:.75rem;
  }

  .offer-row__license{
    align-self:start;
  }

  .offer-row__main h3{
    font-size:clamp(1.16rem,2.4vw,1.48rem);
  }
}

@media (max-width:860px){
  .offer-rows__head{
    display:block;
  }

  .offer-rows__head p{
    margin-top:.25rem;
    text-align:left;
  }

  .offer-row{
    grid-template-columns:minmax(105px,138px) minmax(0,1fr);
    grid-template-areas:
      "brand main"
      "license facts"
      "action action"
      "fine fine";
    align-items:start;
    padding:1rem;
  }

  .offer-row__brand{
    min-height:70px;
  }

  .offer-row__action{
    justify-content:stretch;
  }

  .offer-row__action a{
    max-width:none;
  }

  .offer-row__fineprint{
    text-align:left;
  }
}

@media (max-width:560px){
  .offer-row{
    grid-template-columns:1fr;
    grid-template-areas:
      "brand"
      "main"
      "license"
      "facts"
      "action"
      "fine";
  }

  .offer-row__brand{
    min-height:64px;
    padding:.85rem;
  }

  .offer-row__badge{
    white-space:normal;
  }
}

/* Content-box constrained offer rows: designed to fit inside .content-card, not full page width */
.offer-rows{
  width:100%;
  max-width:100%;
  margin:1.35rem 0 2rem;
}

.offer-row{
  width:100%;
  max-width:100%;
  display:grid;
  grid-template-columns:minmax(96px,132px) minmax(0,1fr) minmax(178px,.72fr);
  grid-template-areas:
    "brand main facts"
    "brand license action"
    "fine fine fine";
  column-gap:.85rem;
  row-gap:.55rem;
  align-items:center;
  padding:1rem 1rem .72rem;
}

.offer-row > *{
  min-width:0;
}

.offer-row__brand{
  min-width:0;
  min-height:68px;
  padding:.65rem .45rem;
  font-size:clamp(1.05rem,1.7vw,1.45rem);
  line-height:1;
  overflow:hidden;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.offer-row__brand span{
  font-size:.68em;
  letter-spacing:.9px;
}

.offer-row__main h3{
  font-size:clamp(1.2rem,1.9vw,1.55rem);
  line-height:1.12;
}

.offer-row__main p{
  font-size:.9rem;
}

.offer-row__license{
  align-self:start;
  font-size:.9rem;
}

.offer-row__license small{
  display:none;
}

.offer-row__facts{
  font-size:.9rem;
  line-height:1.28;
  align-self:center;
}

.offer-row__facts li{
  padding-left:1.2rem;
}

.offer-row__action{
  justify-content:stretch;
  align-self:start;
}

.offer-row__action a{
  width:100%;
  max-width:none;
  min-height:44px;
  padding:.62rem .55rem;
  font-size:.88rem;
  line-height:1.12;
  white-space:normal;
}

.offer-row__action a::after{
  content:none;
}

.offer-row__fineprint{
  margin-top:.1rem;
}

@media (max-width:900px){
  .offer-row{
    grid-template-columns:minmax(96px,132px) minmax(0,1fr);
    grid-template-areas:
      "brand main"
      "license facts"
      "action action"
      "fine fine";
  }

  .offer-row__action a{
    max-width:none;
  }
}

@media (max-width:560px){
  .offer-row{
    grid-template-columns:1fr;
    grid-template-areas:
      "brand"
      "main"
      "license"
      "facts"
      "action"
      "fine";
  }

  .offer-row__brand{
    min-height:58px;
  }
}

/* CTA width correction: the offer list sits inside a padded .content-card, so the CTA must not stretch across its grid cell. */
.offer-row__action{
  justify-content:center;
  align-self:start;
}

.offer-row__action a{
  width:auto;
  min-width:148px;
  max-width:172px;
  padding:.62rem .9rem;
  white-space:nowrap;
  text-align:center;
}

@media (max-width:900px){
  .offer-row__action{
    justify-content:center;
  }

  .offer-row__action a{
    width:auto;
    min-width:148px;
    max-width:172px;
  }
}

@media (max-width:560px){
  .offer-row__action a{
    width:100%;
    max-width:none;
  }
}


/* Real offer logos */
.offer-row__brand img{
  display:block;
  max-width:100%;
  max-height:58px;
  width:auto;
  height:auto;
  object-fit:contain;
  margin:0 auto;
}

.offer-row__brand--kapow img{
  max-height:68px;
}

.offer-row__brand--mrgreen img{
  max-height:62px;
}

@media (max-width:560px){
  .offer-row__brand img{
    max-height:56px;
  }
}

/* Mobile compact fix: keep logo card and CTA from stretching full width */
@media (max-width:560px){
  .offer-row{
    justify-items:start;
  }

  .offer-row__brand{
    width:100%;
    max-width:178px;
    min-height:58px;
    padding:.55rem .7rem;
    justify-self:start;
  }

  .offer-row__brand img{
    max-width:150px;
    max-height:50px;
  }

  .offer-row__brand--kapow img{
    max-height:56px;
  }

  .offer-row__brand--mrgreen img{
    max-height:52px;
  }

  .offer-row__action{
    justify-content:start;
    width:auto;
    justify-self:start;
  }

  .offer-row__action a{
    width:auto;
    min-width:148px;
    max-width:172px;
    padding:.62rem .9rem;
    white-space:nowrap;
  }
}

/* Mobile centering fix: keep compact sizes, but center logo box and CTA button */
@media (max-width:560px){
  .offer-row{
    justify-items:stretch;
  }

  .offer-row__brand{
    justify-self:center;
    margin-left:auto;
    margin-right:auto;
  }

  .offer-row__brand img{
    margin-left:auto;
    margin-right:auto;
  }

  .offer-row__action{
    justify-self:center;
    justify-content:center;
    width:auto;
    margin-left:auto;
    margin-right:auto;
  }

  .offer-row__action a{
    width:auto;
    min-width:148px;
    max-width:172px;
    margin-left:auto;
    margin-right:auto;
  }
}

/* Hero CTA: exact same normal and hover colors as the offer buttons */
.hero-cta,
.hero-cta:visited{
  background:#009b3a;
  color:#fff;
  box-shadow:0 8px 18px rgba(0,155,58,.18);
}

.hero-cta:hover,
.hero-cta:focus{
  background:#008633;
  color:#fff;
  text-decoration:none;
  filter:none;
  transform:none;
}

/* Main content text links only */
main .content-card p a:not(.offer__cta):not(.bonus-button):not(.hero-cta),
main .content-card li a:not(.offer__cta):not(.bonus-button):not(.hero-cta),
main .content-card blockquote a:not(.offer__cta):not(.bonus-button):not(.hero-cta),
main .content-card dd a:not(.offer__cta):not(.bonus-button):not(.hero-cta){
  color:#062f22;
  font-weight:700;
}

main .content-card p a:not(.offer__cta):not(.bonus-button):not(.hero-cta):hover,
main .content-card li a:not(.offer__cta):not(.bonus-button):not(.hero-cta):hover,
main .content-card blockquote a:not(.offer__cta):not(.bonus-button):not(.hero-cta):hover,
main .content-card dd a:not(.offer__cta):not(.bonus-button):not(.hero-cta):hover,
main .content-card p a:not(.offer__cta):not(.bonus-button):not(.hero-cta):focus,
main .content-card li a:not(.offer__cta):not(.bonus-button):not(.hero-cta):focus,
main .content-card blockquote a:not(.offer__cta):not(.bonus-button):not(.hero-cta):focus,
main .content-card dd a:not(.offer__cta):not(.bonus-button):not(.hero-cta):focus{
  color:#F7671A;
}


/* Byline card below offer list */
.byline-card{
  margin:28px auto 8px;
  max-width:560px;
  padding:10px 18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#ffffff;
  border:1px solid #e4e7ee;
  border-radius:999px;
  box-shadow:0 2px 6px rgba(16,24,40,.04);
  color:#475467;
  font-size:14px;
  line-height:1.3;
}

.byline-avatar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  background:linear-gradient(135deg,#fff4d6 0%,#f4cf6b 100%);
  color:#5a3f0a;
  flex-shrink:0;
  box-shadow:0 0 0 2px #ffffff,0 0 0 3px #f4cf6b,0 4px 10px rgba(16,24,40,.12);
  transition:transform 220ms ease;
}

.byline-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.byline-avatar:hover{
  transform:scale(1.05);
}

.byline-meta{
  display:inline-flex;
  flex-direction:column;
  line-height:1.15;
  text-align:left;
}

.byline-meta--center{
  text-align:center;
  align-items:center;
}

.byline-label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#98a2b3;
}

.byline-name{
  color:#101828;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
}

.byline-name:hover{
  color:#101828;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.byline-date{
  color:#1d2433;
  font-weight:500;
  font-size:15px;
}

.byline-divider{
  width:1px;
  height:24px;
  background:#e4e7ee;
}

.byline-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:#ecfdf3;
  border:1px solid #abefc6;
  color:#067647;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
}

@media (max-width:560px){
  .byline-card{
    gap:8px;
    padding:10px 14px;
  }

  .byline-divider--hide-sm{
    display:none;
  }
}


/* Imported article content helpers */
.editorial-note{
  margin:1.25rem 0;
  padding:1rem 1.1rem;
  background:#f3f2ed;
  border:1px solid var(--border);
  border-left:5px solid #062f22;
  border-radius:14px;
  color:var(--text);
}

.checklist{
  margin:1.15rem 0;
  padding:1rem 1.1rem;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:16px;
}

.checklist ul{
  margin:.25rem 0;
}

.value-boxes{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin:1.25rem 0;
}

.value-box{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1rem;
}

.value-box strong{
  display:block;
  margin-bottom:.35rem;
  color:#062f22;
}

@media (max-width:900px){
  .value-boxes{
    grid-template-columns:1fr;
  }
}

/* Verification date above the live offer list */
.verification-meta{
  margin:.25rem 0 0;
  color:var(--muted);
  font-size:.94rem;
}

.verification-meta time{
  color:var(--text);
  font-weight:700;
}

/* Visible data tables for the 138-spillesider research article */
.research-article .table-wrap{
  width:100%;
  margin:1.25rem 0 1.75rem;
  overflow-x:auto;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(6,47,34,.08);
  -webkit-overflow-scrolling:touch;
}

.research-article .research-table{
  display:table;
  width:100%;
  min-width:620px;
  margin:0;
  border-collapse:collapse;
  color:var(--text);
  background:#fff;
}

.research-article .research-table thead{
  display:table-header-group;
}

.research-article .research-table tbody{
  display:table-row-group;
}

.research-article .research-table tr{
  display:table-row;
}

.research-article .research-table th,
.research-article .research-table td{
  display:table-cell;
  padding:.9rem 1rem;
  border:0;
  border-bottom:1px solid var(--border);
  color:var(--text);
  text-align:left;
  vertical-align:top;
  line-height:1.5;
}

.research-article .research-table th{
  background:#062f22;
  color:#fff;
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.01em;
}

.research-article .research-table tbody tr:nth-child(even) td{
  background:var(--surface-2);
}

.research-article .research-table tbody tr:hover td{
  background:#ecfdf3;
}

.research-article .research-table tbody tr:last-child td{
  border-bottom:0;
}

.research-article .research-table td:first-child{
  font-weight:700;
  color:#062f22;
}

@media (max-width:700px){
  .research-article .research-table{
    min-width:560px;
  }

  .research-article .research-table th,
  .research-article .research-table td{
    padding:.75rem .8rem;
    font-size:.9rem;
  }
}
