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

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

:root {
  --clr-primary: #290E56;
  --clr-primary-hover: #3a1475;
  --clr-btn-main: #6B3FB6;
  --clr-btn-main-hover: #7e4fd4;
  --clr-btn-sec: #E6D7FB;
  --clr-btn-sec-hover: #d4befd;
  --clr-bg: #ffffff;
  --clr-text: #1a1a2e;
  --clr-text-light: #ffffff;
  --clr-accent: #8b5cf6;
  --clr-muted: #6b7280;
  --clr-border: #e5e7eb;
  --clr-card-bg: #f9f7ff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(41,14,86,.08);
  --shadow-md: 0 4px 20px rgba(41,14,86,.14);
  --shadow-lg: 0 8px 36px rgba(41,14,86,.18);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Roboto', sans-serif; background: var(--clr-bg); color: var(--clr-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-btn-main); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-main-hover); }
ul, ol { padding-left: 1.4em; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 20px; }

.box { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-family: 'Roboto', sans-serif;
  font-size: .9rem; font-weight: 600; cursor: pointer; border: none;
  text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn--main { background: var(--clr-btn-main); color: #fff; box-shadow: 0 2px 10px rgba(107,63,182,.35); }
.btn--main:hover { background: var(--clr-btn-main-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(107,63,182,.45); }
.btn--sec { background: var(--clr-btn-sec); color: var(--clr-primary); }
.btn--sec:hover { background: var(--clr-btn-sec-hover); color: var(--clr-primary); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--clr-text-light); border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: .82rem; }

.section-title { font-size: 1.75rem; font-weight: 700; color: var(--clr-primary); margin-bottom: .5rem; }
.section-sub { font-size: 1rem; color: var(--clr-muted); margin-bottom: 2rem; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.site-header {
  background: var(--clr-primary); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 14px rgba(41,14,86,.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0; flex-wrap: nowrap;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  display: flex; align-items: center; gap: 5px; padding: 7px 11px;
  color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 500;
  border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active { background: rgba(255,255,255,.12); color: #fff; }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-online {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: rgba(255,255,255,.7); white-space: nowrap;
}
.online-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,.3); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 2px rgba(34,197,94,.3)} 50%{box-shadow:0 0 0 5px rgba(34,197,94,.1)} }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--clr-primary); padding: 12px 20px 16px; border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 7px; padding: 9px 12px;
  color: rgba(255,255,255,.85); font-size: .9rem; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-section {
  position: relative; overflow: hidden; min-height: 480px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a0838 0%, #290E56 50%, #3d1a7a 100%);
}
.hero-bg {
  position: absolute; inset: 0; background-image: url('/crown-slots-hero.jpg');
  background-size: cover; background-position: center;
  opacity: .18; mix-blend-mode: luminosity;
}
.hero-inner { position: relative; z-index: 1; padding: 60px 0; width: 100%; }
.hero-layout { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 260px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(107,63,182,.4);
  border: 1px solid rgba(230,215,251,.35); border-radius: 50px; padding: 5px 14px;
  font-size: .8rem; font-weight: 600; color: var(--clr-btn-sec); margin-bottom: 18px;
}
.hero-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.hero-title span { color: var(--clr-btn-sec); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 26px; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bonus-card {
  flex-shrink: 0; background: linear-gradient(145deg, rgba(107,63,182,.6), rgba(41,14,86,.8));
  border: 1.5px solid rgba(230,215,251,.3); border-radius: var(--radius-lg);
  padding: 28px 30px; text-align: center; min-width: 220px; backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.bonus-pill {
  display: inline-block; background: var(--clr-btn-main); color: #fff;
  border-radius: 50px; padding: 4px 14px; font-size: .75rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: 12px; text-transform: uppercase;
}
.bonus-amount { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.bonus-amount span { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,.7); display: block; margin-top: 4px; }
.bonus-spins { font-size: 1rem; color: var(--clr-btn-sec); font-weight: 600; margin: 10px 0 16px; }
.bonus-disclaimer { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 10px; }

.breadcrumbs-section { padding: 10px 0; background: #f5f3ff; border-bottom: 1px solid var(--clr-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; font-size: .83rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '›'; color: var(--clr-muted); font-size: .9rem; }
.breadcrumbs a { color: var(--clr-btn-main); font-weight: 500; }
.breadcrumbs span { color: var(--clr-muted); }

.content-section { padding: 64px 0; }
.content-section + .content-section { padding-top: 0; }
.alt-bg { background: #f7f5ff; }

.features-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.feature-tile {
  flex: 1 1 200px; background: var(--clr-card-bg); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: 24px 20px; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--clr-accent); }
.feature-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, var(--clr-btn-main), var(--clr-accent));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 4px 12px rgba(107,63,182,.3);
}
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; }
.feature-tile h3 { font-size: 1rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 6px; }
.feature-tile p { font-size: .86rem; color: var(--clr-muted); line-height: 1.5; }

.winners-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.winners-table {
  width: 100%; min-width: 560px; border-collapse: collapse;
  background: var(--clr-bg); font-size: .92rem;
}
.winners-table thead { background: var(--clr-primary); color: #fff; }
.winners-table thead th {
  padding: 13px 16px; text-align: left; font-weight: 600;
  font-size: .85rem; letter-spacing: .3px;
}
.winners-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.winners-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.winners-table tbody tr { border-bottom: 1px solid var(--clr-border); transition: background var(--transition); }
.winners-table tbody tr:hover { background: #f5f3ff; }
.winners-table tbody td { padding: 11px 16px; }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; font-weight: 700;
  font-size: .8rem; background: var(--clr-border); color: var(--clr-muted);
}
.rank-badge.gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #fff; box-shadow: 0 2px 8px rgba(245,158,11,.4); }
.rank-badge.silver { background: linear-gradient(135deg, #9ca3af, #d1d5db); color: #fff; }
.rank-badge.bronze { background: linear-gradient(135deg, #b45309, #d97706); color: #fff; }
.winner-name { font-weight: 500; }
.win-amount { font-weight: 700; color: #22c55e; }

.slots-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.slot-card {
  flex: 1 1 160px; max-width: 220px; background: var(--clr-card-bg);
  border: 1px solid var(--clr-border); border-radius: var(--radius-md);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.slot-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.slot-img-wrap {
  position: relative; background: linear-gradient(135deg, #1a0838, #290E56);
  height: 140px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.slot-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.slot-overlay {
  position: absolute; inset: 0; background: rgba(41,14,86,.55); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-info { padding: 14px; }
.slot-info h3 { font-size: .92rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 4px; }
.slot-info p { font-size: .78rem; color: var(--clr-muted); margin-bottom: 10px; }
.slot-actions { display: flex; gap: 6px; }
.slot-actions .btn { flex: 1; font-size: .78rem; padding: 7px 8px; }

.slots-slider-wrap { position: relative; }
.slots-slider-track {display: none;  }
.slots-slider-track::-webkit-scrollbar { display: none; }
.slots-slider-track .slot-card { min-width: 200px; scroll-snap-align: start; flex-shrink: 0; }

.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,5,35,.85); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #120529; border-radius: var(--radius-lg); width: 100%; max-width: 880px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6); overflow: hidden;
  display: flex; flex-direction: column; max-height: 90vh;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--clr-primary); color: #fff;
}
.modal-header h3 { font-size: 1rem; font-weight: 700; }
.modal-close {
  background: none; border: none; color: #fff; cursor: pointer; font-size: 1.4rem;
  line-height: 1; opacity: .7; transition: opacity var(--transition); padding: 2px 6px;
}
.modal-close:hover { opacity: 1; }
.modal-iframe-wrap { flex: 1; min-height: 420px; position: relative; }
.modal-iframe-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: none; display: block; }
.modal-cta {
  padding: 14px 20px; background: #1a0838;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.modal-cta p { font-size: .88rem; color: rgba(255,255,255,.7); }

.review-author {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: var(--clr-card-bg); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); margin-bottom: 28px;
}
.author-avatar {
  min-width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-btn-main), var(--clr-accent));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.author-info h4 { font-size: .95rem; font-weight: 700; color: var(--clr-primary); }
.author-info p { font-size: .8rem; color: var(--clr-muted); margin: 2px 0; }
.author-info .author-links { display: flex; gap: 10px; margin-top: 4px; }
.author-info .author-links a { font-size: .78rem; color: var(--clr-btn-main); }

.review-content-body h2, .review-content-body h3, .review-content-body h4 {
  color: var(--clr-primary); margin: 1.4em 0 .6em; font-weight: 700; line-height: 1.3;
}
.review-content-body h2 { font-size: 1.4rem; }
.review-content-body h3 { font-size: 1.2rem; }
.review-content-body h4 { font-size: 1.05rem; }
.review-content-body p { margin-bottom: 1em; color: var(--clr-text); line-height: 1.7; }
.review-content-body ul, .review-content-body ol { margin: .8em 0 1em 1.4em; }
.review-content-body li { margin-bottom: .4em; line-height: 1.6; }
.review-content-body a { color: var(--clr-btn-main); text-decoration: underline; }
.review-content-body strong { color: var(--clr-primary); font-weight: 700; }
.review-content-body em { font-style: italic; }
.review-content-body blockquote {
  border-left: 4px solid var(--clr-btn-main); padding: 12px 20px;
  background: #f5f3ff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1em 0; font-style: italic; color: var(--clr-muted);
}
.review-content-body table {
  width: auto; margin: 1em auto; border-collapse: collapse;
  text-align: left; overflow-x: auto; display: block; max-width: 100%;
}
.review-content-body table th, .review-content-body table td {
  border: 1.5px solid var(--clr-border); padding: 10px 14px; font-size: .9rem;
}
.review-content-body table th { background: var(--clr-primary); color: #fff; font-weight: 600; }
.review-content-body table tr:nth-child(even) { background: #f7f5ff; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--clr-border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--clr-bg); transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--clr-btn-main); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Roboto', sans-serif; font-size: .97rem; font-weight: 600;
  color: var(--clr-primary); transition: background var(--transition);
}
.faq-q:hover { background: #f7f5ff; }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--clr-btn-main); border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  display: none; padding: 0 20px 16px; font-size: .92rem; color: var(--clr-muted); line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

.reviews-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.review-card {
  flex: 1 1 280px; background: var(--clr-card-bg); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--clr-btn-main), var(--clr-accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer-info h4 { font-size: .92rem; font-weight: 700; color: var(--clr-primary); }
.stars { display: flex; gap: 2px; margin-top: 3px; }
.stars svg { width: 14px; height: 14px; fill: #f59e0b; }
.review-card p { font-size: .87rem; color: var(--clr-muted); line-height: 1.55; }

.review-form-wrap {
  background: var(--clr-card-bg); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md); padding: 28px; max-width: 560px; margin-top: 32px;
}
.review-form-wrap h3 { font-size: 1.15rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--clr-primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif; font-size: .9rem; color: var(--clr-text); background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--clr-btn-main); box-shadow: 0 0 0 3px rgba(107,63,182,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-msg {
  display: none; margin-top: 12px; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; background: #dcfce7; color: #166534; border: 1px solid #bbf7d0;
}
.form-msg.error { background: #fee2e2; color: #991b1b; border-color: #fecaca; }

.site-footer { background: var(--clr-primary); color: rgba(255,255,255,.8); margin-top: auto; }
.footer-top { padding: 48px 0 32px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 28px; }
.footer-col { flex: 1 1 200px; }
.footer-col h4 { color: var(--clr-btn-sec); font-size: .85rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.footer-logo { margin-bottom: 12px; }
.footer-logo-link {display: block;width: fit-content;}
.footer-logo img { height: 38px; width: auto; }
.footer-desc { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.6); }
.footer-flag { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-flag img{ height: 20px; width: auto;}
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-nav a { font-size: .84rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-nav a:hover { color: var(--clr-btn-sec); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition); color: rgba(255,255,255,.8);
}
.social-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.payment-logos, .license-logos, .provider-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.logo-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 5px 10px; font-size: .73rem; font-weight: 600;
  color: rgba(255,255,255,.75); white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-copyright { font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-legal { font-size: .73rem; color: rgba(255,255,255,.35); max-width: 780px; line-height: 1.5; }
.legal-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.legal-links a { font-size: .75rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.legal-links a:hover { color: rgba(255,255,255,.8); }

.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(90deg, #1a0838 0%, #290E56 50%, #3d1a7a 100%);
  border-top: 2px solid var(--clr-btn-main);
  box-shadow: 0 -4px 20px rgba(41,14,86,.4);
}
.widget-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 20px; max-width: 1220px; margin: 0 auto; flex-wrap: wrap;
}
.widget-text { color: #fff; }
.widget-text strong { font-size: .95rem; display: block; }
.widget-text span { font-size: .8rem; color: rgba(255,255,255,.65); }
.widget-bonus-tag {
  background: var(--clr-btn-main); color: #fff; border-radius: 50px;
  padding: 4px 14px; font-size: .78rem; font-weight: 700; flex-shrink: 0;
}
.widget-actions { display: flex; align-items: center; gap: 8px; }
.widget-close {
  background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.2rem;
  cursor: pointer; padding: 4px; transition: color var(--transition);
}
.widget-close:hover { color: rgba(255,255,255,.9); }

.info-content { max-width: 820px; padding: 48px 0; }
.info-content h1 { font-size: 1.8rem; color: var(--clr-primary); margin-bottom: 1rem; font-weight: 700; }
.info-content h2, .info-content h3 { color: var(--clr-primary); font-weight: 700; margin: 1.4em 0 .6em; }
.info-content h2 { font-size: 1.3rem; }
.info-content h3 { font-size: 1.1rem; }
.info-content p { margin-bottom: 1em; line-height: 1.7; }
.info-content ul, .info-content ol { margin: .8em 0 1em 1.4em; }
.info-content li { margin-bottom: .4em; }
.info-content a { color: var(--clr-btn-main); text-decoration: underline; }
.info-content table { width: 100%; border-collapse: collapse; margin: 1em 0; overflow-x: auto; display: block; }
.info-content th, .info-content td { border: 1.5px solid var(--clr-border); padding: 10px 14px; font-size: .9rem; text-align: left; }
.info-content th { background: var(--clr-primary); color: #fff; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .slots-grid { display: none; }
  .slots-slider-track {display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none;  }
  .hero-bonus-card { width: 100%; min-width: unset; }
}

@media (max-width: 640px) {
  .section-title { font-size: 1.45rem; }
  .hero-title { font-size: 1.7rem; }
  .footer-grid { flex-direction: column; }
  .feature-tile { flex: 1 1 100%; }
  .review-card { flex: 1 1 100%; }
  .widget-inner { justify-content: center; text-align: center; }
  .widget-text { display: none; }
  .modal-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
.header-actions .btn--sec {display: none;}
}
.screen-reader-text { position: absolute; left: -9999em; }
#wpadminbar { display: none !important; }
