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

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

:root {
  --clr-header: #12444b;
  --clr-header-dark: #0d333a;
  --clr-btn-secondary: #23a1d9;
  --clr-btn-primary: #dd55f4;
  --clr-bg: #4399d7;
  --clr-bg-dark: #2f7ab8;
  --clr-bg-card: rgba(18,68,75,0.85);
  --clr-bg-card-light: rgba(255,255,255,0.08);
  --clr-text: #ffffff;
  --clr-text-muted: rgba(255,255,255,0.75);
  --clr-text-dark: #0d1f22;
  --clr-accent: #23a1d9;
  --clr-accent2: #dd55f4;
  --clr-border: rgba(255,255,255,0.18);
  --clr-border-dark: rgba(18,68,75,0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(13,51,58,0.35);
  --shadow-btn: 0 2px 12px rgba(35,161,217,0.4);
  --shadow-btn2: 0 2px 12px rgba(221,85,244,0.4);
  --transition: 0.25s ease;
  --font: 'Rajdhani', sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--clr-text);
  background: linear-gradient(160deg, #3a8cc8 0%, #4399d7 40%, #2f7ab8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent2); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; line-height: 1.25; color: var(--clr-text); }

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { margin-bottom: 0.9em; color: var(--clr-text); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; margin-bottom: 0.9em; }
li { margin-bottom: 0.3em; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }

.box { border-radius: var(--radius-md); }

.site-header {
  background: var(--clr-header);
  box-shadow: 0 2px 18px rgba(0,0,0,0.28);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-logo-text { font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: 1px; }

.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.header-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a.nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav a.nav-link svg { width: 15px; height: 15px; flex-shrink: 0; }

.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--play {
  background: var(--clr-btn-primary);
  color: #fff;
  box-shadow: var(--shadow-btn2);
}
.btn--play:hover { filter: brightness(1.1); box-shadow: 0 4px 20px rgba(221,85,244,0.55); color: #fff; }

.btn--bonus {
  background: var(--clr-btn-secondary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--bonus:hover { filter: brightness(1.1); box-shadow: 0 4px 20px rgba(35,161,217,0.55); color: #fff; }

.btn--lg { font-size: 1.1rem; padding: 14px 32px; }
.btn--sm { font-size: 0.88rem; padding: 8px 16px; }
.btn--outline { background: transparent; border: 2px solid var(--clr-accent); color: var(--clr-accent); }
.btn--outline:hover { background: var(--clr-accent); color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
}
.burger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/jammin-jars-hero.avif') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-top { text-align: center; }
.hero-top h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.4); margin-bottom: 14px; }
.hero-top p { font-size: 1.15rem; color: var(--clr-text-muted); max-width: 640px; margin: 0 auto 24px; }
.hero-top .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-tiles {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tile {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  flex: 1 1 140px;
  max-width: 180px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hero-tile .tile-icon { font-size: 2rem; margin-bottom: 8px; }
.hero-tile .tile-val { font-size: 1.4rem; font-weight: 700; color: var(--clr-accent2); }
.hero-tile .tile-lbl { font-size: 0.85rem; color: var(--clr-text-muted); }

.section { padding: 52px 0; }
.section--dark { background: rgba(13,51,58,0.55); }

.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--clr-text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.adv-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.adv-card .adv-icon { width: 52px; height: 52px; margin: 0 auto 14px; background: rgba(35,161,217,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.adv-card .adv-icon svg { width: 28px; height: 28px; fill: var(--clr-accent); }
.adv-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.adv-card p { font-size: 0.9rem; color: var(--clr-text-muted); margin: 0; }

.game-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.game-iframe-wrap {
  flex: 1 1 340px;
  min-width: 0;
}
.game-frame-box {
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  position: relative;
}
.game-frame-box iframe { width: 100%; height: 100%; border: none; display: block; }
.game-cta { margin-top: 14px; text-align: center; }

.game-details-wrap {
  flex: 1 1 300px;
  min-width: 0;
  overflow-x: auto;
}

.game-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.game-table th,
.game-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.game-table th {
  background: var(--clr-header);
  color: var(--clr-accent);
  font-weight: 600;
  width: 45%;
  white-space: nowrap;
}
.game-table td { background: var(--clr-bg-card); color: var(--clr-text); }
.game-table tr:last-child th,
.game-table tr:last-child td { border-bottom: none; }
.game-table .param-icon { display: inline-flex; align-items: center; gap: 6px; }
.game-table .param-icon svg { width: 14px; height: 14px; fill: var(--clr-accent); flex-shrink: 0; }

.bonuses-section { padding: 52px 0; }

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bonus-card .casino-name { font-size: 1.15rem; font-weight: 700; color: var(--clr-accent2); }
.bonus-card .bonus-amount { font-size: 1.6rem; font-weight: 700; color: #fff; }
.bonus-card .bonus-desc { font-size: 0.9rem; color: var(--clr-text-muted); flex: 1; }
.bonus-card .bonus-code { font-size: 0.85rem; background: rgba(35,161,217,0.15); border: 1px dashed var(--clr-accent); border-radius: var(--radius-sm); padding: 6px 12px; color: var(--clr-accent); font-weight: 600; letter-spacing: 1px; }
.bonus-card .bonus-terms { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.content-section { padding: 52px 0; }

.content-box {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.content-box h2 { margin-bottom: 16px; color: var(--clr-accent2); }
.content-box h3 { margin: 20px 0 10px; color: var(--clr-accent); }
.content-box h4 { margin: 16px 0 8px; }
.content-box p { color: var(--clr-text-muted); line-height: 1.7; }
.content-box ul, .content-box ol { color: var(--clr-text-muted); padding-left: 1.4em; }
.content-box li { margin-bottom: 6px; }
.content-box a { color: var(--clr-accent); }
.content-box a:hover { color: var(--clr-accent2); }
.content-box table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow-x: auto; display: block; }
.content-box table th, .content-box table td { padding: 10px 14px; text-align: left; border: 1px solid var(--clr-border); }
.content-box table th { background: var(--clr-header); color: var(--clr-accent); }
.content-box table td { background: rgba(255,255,255,0.04); }
.content-box strong, .content-box b { color: #fff; }
.content-box em { color: rgba(255,255,255,0.9); }
.content-box blockquote { border-left: 3px solid var(--clr-accent2); padding-left: 16px; margin: 16px 0; font-style: italic; color: var(--clr-text-muted); }
.content-box img { border-radius: var(--radius-sm); margin: 12px 0; }
.content-box hr { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }

.faq-section { padding: 52px 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 0 auto; }

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--clr-text);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: ''; display: inline-block; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2323a1d9' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; transition: transform var(--transition); }
details[open] .faq-question::after { transform: rotate(180deg); }
details[open] .faq-question { color: var(--clr-accent2); }

.faq-answer { padding: 0 22px 18px; color: var(--clr-text-muted); font-size: 0.97rem; line-height: 1.65; }

.author-section { padding: 52px 0; }

.author-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--clr-header);
  border: 3px solid var(--clr-accent);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar svg { width: 56px; height: 56px; fill: var(--clr-accent); }

.author-info { flex: 1 1 240px; }
.author-info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.author-info .author-title { color: var(--clr-accent); font-size: 0.92rem; margin-bottom: 10px; display: block; }
.author-info .author-bio { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 14px; }
.author-info .author-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.88rem; color: var(--clr-text-muted); margin-bottom: 14px; }
.author-info .author-meta span { display: flex; align-items: center; gap: 5px; }
.author-info .author-meta svg { width: 14px; height: 14px; fill: var(--clr-accent); }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-links a { display: flex; align-items: center; gap: 5px; font-size: 0.88rem; color: var(--clr-accent); border: 1px solid var(--clr-accent); border-radius: 50px; padding: 5px 12px; transition: background var(--transition), color var(--transition); }
.author-links a:hover { background: var(--clr-accent); color: #fff; }
.author-links a svg { width: 14px; height: 14px; fill: currentColor; }
.author-dates { margin-top: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.site-footer {
  background: var(--clr-header);
  color: rgba(255,255,255,0.75);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
  flex-direction: column;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 50px; width: auto; object-fit: contain; }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-nav a { color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--clr-accent); }

.footer-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-payments .pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--clr-accent); color: #fff; }
.footer-socials a svg { width: 18px; height: 18px; fill: currentColor; }

.footer-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-border);
}
.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.ftr-flag {height: 30px;width: auto;}
.trust-badge--age { background: rgba(221,85,244,0.15); border-color: rgba(221,85,244,0.3); color: var(--clr-accent2); }

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--clr-accent); }
.footer-bottom .footer-flag { display: inline-block; margin-right: 5px; }

.footer-provider { display: flex; align-items: center; gap: 10px; padding: 16px 0; }
.footer-provider img { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(0.7); }
.footer-provider span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--clr-header-dark), var(--clr-header));
  border-top: 2px solid var(--clr-accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.sticky-widget p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }
.sticky-widget a.btn { font-size: 1rem; padding: 10px 26px; }
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.widget-close:hover { background: rgba(255,255,255,0.2); }

.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(35,161,217,0.18); border: 1px solid rgba(35,161,217,0.3); color: var(--clr-accent); font-size: 0.8rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.badge--hot { background: rgba(221,85,244,0.18); border-color: rgba(221,85,244,0.3); color: var(--clr-accent2); }

.x9f2a3 { display: none; }
.wp4b7c { visibility: hidden; position: absolute; }
.elementor-hidden { display: none !important; }

.page-intro { padding: 52px 0 32px; }
.info-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 36px 40px; }
.info-card h1 { margin-bottom: 20px; color: var(--clr-accent2); }
.info-card h2 { margin: 24px 0 12px; color: var(--clr-accent); }
.info-card h3 { margin: 18px 0 8px; }
.info-card p { color: var(--clr-text-muted); line-height: 1.7; }
.info-card ul, .info-card ol { color: var(--clr-text-muted); padding-left: 1.4em; }
.info-card li { margin-bottom: 5px; }
.info-card a { color: var(--clr-accent); }
.info-card a:hover { color: var(--clr-accent2); }
.info-card strong { color: #fff; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.skeleton { background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.06) 100%); background-size: 200% 100%; animation: skeleton-shimmer 1.4s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(221,85,244,0.4); } 50% { box-shadow: 0 0 0 8px rgba(221,85,244,0); } }
.btn--play { animation: pulse-glow 2.4s infinite; }

@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px 12px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .game-iframe-wrap {flex: none;width: 100%;}
  .game-details-wrap {flex: none;width: 100%;}
  .header-nav.is-open { display: flex; }
  .header-nav a.nav-link { padding: 10px 12px; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .site-header { position: sticky; top: 0; }
  .game-layout { flex-direction: column; }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .sticky-widget { flex-wrap: wrap; gap: 8px; }
  .sticky-widget p { font-size: 0.88rem; }
  .content-box { padding: 24px 18px; }
  .info-card { padding: 24px 18px; }
}

@media (max-width: 600px) {
  .hero-section { padding: 40px 0 32px; }
  .hero-tile { max-width: 140px; padding: 14px 12px; }
  .hero-tile .tile-val { font-size: 1.2rem; }
  .adv-card { max-width: 100%; flex-basis: 100%; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonus-card { max-width: 100%; }
  .section { padding: 36px 0; }
  .footer-inner { padding: 0 12px; }
  .sticky-widget { padding: 10px 12px; }
}
@media (max-width: 400px) {
.header-buttons .btn--play{display: none;}
}