:root{
  --bg:#f5f1e8;
  --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;
}

body{
  margin:0;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  background:linear-gradient(180deg,#f7f3ea 0%,#f3ede2 100%);
  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:sticky;
  top:0;
  z-index:30;
  background:rgba(255,253,248,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.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:var(--text);
  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:var(--text);
  font-weight:600;
}

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

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  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);
}

.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{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:1rem;
  align-items:start;
}

.author-avatar{
  width:110px;
  height:110px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  font-weight:700;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.author-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
}

.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:#231d14;
  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-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;
}

.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:.94rem;
  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;
  }

  .author-box{
    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:var(--surface);
    border:1px solid var(--border);
    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);
  }

  .lead{
    font-size:1rem;
  }

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

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

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