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

:root {
  --clr-nav: #3a3e51;
  --clr-bg: #3e4464;
  --clr-gold: #af8c2f;
  --clr-green: #3d8f58;
  --clr-text: #e8eaf2;
  --clr-text-muted: #a8adc5;
  --clr-card: #30344a;
  --clr-card-border: rgba(175,140,47,0.22);
  --clr-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #d4aa48; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--clr-white); }
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.x9f2a { display: none; }
.wp-block-spacer { height: 24px; }
.wp-post-image { border-radius: var(--radius-md); }
.entry-meta { font-size: 0.8rem; color: var(--clr-text-muted); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-md); border: none; cursor: pointer;
  font-family: 'Rubik', sans-serif; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn-play {
  background: linear-gradient(135deg, #3d8f58, #2e6e44);
  color: #fff;
  box-shadow: 0 3px 12px rgba(61,143,88,0.45);
}
.btn-play:hover { background: linear-gradient(135deg, #4aaa6a, #3d8f58); color: #fff; }

.btn-bonus {
  background: linear-gradient(135deg, #af8c2f, #8a6d1e);
  color: #fff;
  box-shadow: 0 3px 12px rgba(175,140,47,0.45);
}
.btn-bonus:hover { background: linear-gradient(135deg, #c9a33a, #af8c2f); color: #fff; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn-outline:hover { background: var(--clr-gold); color: #1a1d2e; }

.btn-sm { padding: 7px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background-color: var(--clr-nav);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 12px;
}
.hdr-logo img { height: 46px; width: auto; }
.hdr-logo { flex-shrink: 0; }

.hdr-jackpot {
  display: flex; align-items: center; gap: 8px;
  background: rgba(175,140,47,0.12);
  border: 1px solid rgba(175,140,47,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--clr-gold);
  font-weight: 600;
  white-space: nowrap;
}
.hdr-jackpot .jp-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3d8f58; animation: jpPulse 1.4s ease-in-out infinite;
}
@keyframes jpPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.6} }

.hdr-nav { display: flex; align-items: center; gap: 6px; }
.hdr-nav a {
  display: flex; align-items: center; gap: 5px;
  color: var(--clr-text-muted); font-size: 0.88rem; font-weight: 500;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.hdr-nav a:hover { color: var(--clr-white); background: rgba(255,255,255,0.07); }
.hdr-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px; cursor: pointer;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  border: none;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--clr-text); border-radius: 2px;
  transition: transform var(--transition), opacity 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;
  padding: 12px 0 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 8px;
  color: var(--clr-text-muted); font-size: 0.9rem; font-weight: 500;
  padding: 9px 12px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--clr-white); }
.mobile-menu a svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-menu-cta { display: flex; gap: 8px; padding: 4px 0 0; }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  padding: 60px 0 50px;
  background: var(--clr-nav);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/images/banner.webp') center/cover no-repeat;
  opacity: 0.2;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hero-text h1 { margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-text .lead {
  font-size: 1.05rem; color: var(--clr-text-muted);
  margin-bottom: 28px; max-width: 480px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.hero-tile {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), transform var(--transition);
}
.hero-tile:hover { border-color: var(--clr-gold); transform: translateY(-2px); }
.hero-tile .tile-label { font-size: 0.75rem; color: var(--clr-text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-tile .tile-val { font-size: 1.1rem; font-weight: 700; color: var(--clr-gold); }

.hero-img { display: flex; justify-content: center; }
.hero-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); max-height: 360px; object-fit: cover; }

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--clr-card);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bc-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; font-size: 0.82rem; flex-wrap: wrap;
}
.bc-list li { display: flex; align-items: center; gap: 6px; }
.bc-list li::after { content: '/'; color: var(--clr-text-muted); }
.bc-list li:last-child::after { display: none; }
.bc-list a { color: var(--clr-text-muted); }
.bc-list a:hover { color: var(--clr-gold); }
.bc-list li:last-child span { color: var(--clr-text); }

/* === MAIN LAYOUT === */
.main-content { padding: 40px 0 60px; }
.main-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

/* === BLOCKS / CARDS === */
.block {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.block-title {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(175,140,47,0.25);
  display: flex; align-items: center; gap: 10px;
}
.block-title svg { width: 20px; height: 20px; color: var(--clr-gold); flex-shrink: 0; }

/* === TOC === */
.toc-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.toc-list li a {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--clr-text-muted); font-size: 0.88rem; font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.toc-list li a:hover { background: rgba(175,140,47,0.12); border-color: var(--clr-gold); color: var(--clr-white); }
.toc-list li a svg { width: 14px; height: 14px; color: var(--clr-gold); flex-shrink: 0; }

/* === DEMO SECTION === */
.demo-wrap {
  display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start;
}
.demo-frame-wrap {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  border: 2px solid rgba(175,140,47,0.3);
  background: #1a1d2e;
}
.demo-frame-wrap iframe {
  width: 100%; aspect-ratio: 16/9; border: none; display: block;
}
.demo-overlay {
  position: absolute; inset: 0; background: rgba(26,29,46,0.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  cursor: pointer; transition: opacity var(--transition);
}
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay .play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--clr-green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(61,143,88,0.5); animation: ripple 1.5s ease-out infinite;
}
.demo-overlay .play-icon svg { width: 32px; height: 32px; color: #fff; }
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(61,143,88,0.5)} 70%{box-shadow:0 0 0 20px rgba(61,143,88,0)} 100%{box-shadow:0 0 0 0 rgba(61,143,88,0)} }
.demo-overlay p { color: var(--clr-text); font-size: 1rem; font-weight: 600; }
.demo-cta { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

/* === GAME DETAILS TABLE === */
.game-details-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.game-details-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.game-details-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.game-details-table td { padding: 10px 12px; font-size: 0.88rem; vertical-align: middle; }
.game-details-table td:first-child {
  color: var(--clr-text-muted); font-weight: 500; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.game-details-table td:first-child svg { width: 14px; height: 14px; color: var(--clr-gold); flex-shrink: 0; }
.game-details-table td:last-child { color: var(--clr-text); font-weight: 600; text-align: right; }
.badge-rtp {
  display: inline-block; padding: 2px 10px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  background: rgba(61,143,88,0.2); color: #5ec97e; border: 1px solid rgba(61,143,88,0.4);
}
.badge-vol {
  display: inline-block; padding: 2px 10px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  background: rgba(220,60,60,0.15); color: #f07070; border: 1px solid rgba(220,60,60,0.3);
}
.badge-gold {
  display: inline-block; padding: 2px 10px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  background: rgba(175,140,47,0.18); color: var(--clr-gold); border: 1px solid rgba(175,140,47,0.35);
}

/* === ADVANTAGES === */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.adv-card {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 18px 16px; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.adv-card:hover { border-color: var(--clr-gold); transform: translateY(-3px); }
.adv-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(175,140,47,0.12); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.adv-icon svg { width: 22px; height: 22px; color: var(--clr-gold); }
.adv-card h4 { font-size: 0.92rem; margin-bottom: 6px; }
.adv-card p { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; }

/* === CONTENT BLOCK === */
.content-review { }
.content-review .text-content h2 { margin: 28px 0 12px; font-size: 1.35rem; }
.content-review .text-content h3 { margin: 22px 0 10px; font-size: 1.1rem; }
.content-review .text-content p { margin-bottom: 14px; color: var(--clr-text); line-height: 1.7; }
.content-review .text-content ul, .content-review .text-content ol { padding-left: 22px; margin-bottom: 14px; }
.content-review .text-content li { margin-bottom: 6px; color: var(--clr-text); line-height: 1.65; }
.content-review .text-content a { color: var(--clr-gold); }
.content-review .text-content strong { color: var(--clr-white); font-weight: 700; }
.content-review .text-content em { color: var(--clr-text-muted); font-style: italic; }
.content-review .text-content table {
  width: 100%; border-collapse: collapse; margin: 18px 0;
  font-size: 0.88rem; overflow-x: auto; display: block;
}
.content-review .text-content table th {
  background: rgba(175,140,47,0.15); color: var(--clr-gold);
  padding: 10px 14px; text-align: left; font-weight: 600;
  border: 1px solid rgba(175,140,47,0.25);
}
.content-review .text-content table td {
  padding: 9px 14px; border: 1px solid rgba(255,255,255,0.08);
  color: var(--clr-text);
}
.content-review .text-content table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.content-review .text-content blockquote {
  border-left: 3px solid var(--clr-gold); padding: 12px 18px;
  margin: 18px 0; background: rgba(175,140,47,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--clr-text-muted);
}
.content-review .text-content img { border-radius: var(--radius-md); margin: 14px auto; max-width: 100%; }
.content-review .text-content hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 24px 0; }
.content-review .text-content code {
  background: rgba(0,0,0,0.3); padding: 2px 6px; border-radius: 4px;
  font-family: monospace; font-size: 0.85em; color: #a8c8ff;
}
.content-review .text-content pre {
  background: rgba(0,0,0,0.35); padding: 16px; border-radius: var(--radius-sm);
  overflow-x: auto; font-family: monospace; font-size: 0.85rem; margin-bottom: 16px;
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(175,140,47,0.4); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; cursor: pointer; font-weight: 600;
  font-size: 0.95rem; color: var(--clr-text);
  background: rgba(255,255,255,0.03);
  user-select: none; transition: background var(--transition);
  list-style: none;
}
.faq-q:hover { background: rgba(255,255,255,0.07); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0; width: 18px; height: 18px;
  transition: transform var(--transition); color: var(--clr-gold);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 18px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { padding: 14px 18px 18px; max-height: 600px; }
.faq-a p, .faq-a { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }

/* === AUTHOR === */
.author-card {
  display: grid; grid-template-columns: 120px 1fr; gap: 22px;
}
.author-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.author-role { font-size: 0.82rem; color: var(--clr-gold); font-weight: 500; margin-bottom: 10px; }
.author-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 0.8rem; color: var(--clr-text-muted); margin-bottom: 12px;
}
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 13px; height: 13px; color: var(--clr-gold); }
.author-bio { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(175,140,47,0.3); color: var(--clr-text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.author-link:hover { border-color: var(--clr-gold); color: var(--clr-gold); background: rgba(175,140,47,0.08); }
.author-link svg { width: 14px; height: 14px; }
.author-dates { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 12px; }
.author-dates span + span::before { content: ' · '; }

/* === FOOTER === */
.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid; grid-template-columns: 220px 1fr 1fr 180px; gap: 32px;
  margin-bottom: 36px;
}
.footer-logo img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-about p { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-heading { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-gold); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: 0.85rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-white); }
.footer-contact p { font-size: 0.82rem; color: var(--clr-text-muted); margin-bottom: 6px; }
.footer-contact a { color: var(--clr-gold); font-size: 0.85rem; }

.footer-badges {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.badge-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 0.75rem; color: var(--clr-text-muted); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background var(--transition);
}
.badge-item:hover { background: rgba(255,255,255,0.09); color: var(--clr-white); }
.badge-item svg { width: 16px; height: 16px; }

.footer-payments { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.payment-icon {
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  padding: 5px 10px; font-size: 0.7rem; color: var(--clr-text-muted); font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1); letter-spacing: 0.04em;
}

.footer-social { display: flex; gap: 8px; margin-bottom: 18px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted); transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: #1a1d2e; }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-flag { font-size: 1.6rem; }
.footer-legal { font-size: 0.74rem; color: var(--clr-text-muted); line-height: 1.6; flex: 1; }
.footer-legal a { color: var(--clr-text-muted); }
.footer-legal a:hover { color: var(--clr-gold); }
.age-badge {
  background: rgba(175,140,47,0.15); border: 2px solid var(--clr-gold);
  border-radius: var(--radius-sm); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--clr-gold); flex-shrink: 0;
}
.provider-logo { display: flex; align-items: center; gap: 8px; }
.provider-logo img { height: 28px; width: auto; filter: brightness(0.75); transition: filter var(--transition); }
.provider-logo img:hover { filter: brightness(1); }

/* === STICKY WIDGET === */
.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #2a2d3d 0%, #3a3e51 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sw-text { font-size: 0.88rem; color: var(--clr-text); font-weight: 500; }
.sw-text strong { color: var(--clr-gold); }
.sw-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sw-close {
  background: none; border: none; cursor: pointer;
  color: var(--clr-text-muted); font-size: 1.2rem; padding: 4px; line-height: 1;
  transition: color var(--transition);
}
.sw-close:hover { color: var(--clr-white); }

body.widget-open { padding-bottom: 62px; }

/* === SECTION SCROLL OFFSET === */
[id] { scroll-margin-top: 80px; }

/* === TABLE WRAPPER === */
.table-scroll { overflow-x: auto; border-radius: var(--radius-sm); }

/* === FADE IN === */
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.anim-in { animation: fadeInUp 0.5s ease forwards; }
.anim-in-d1 { animation-delay: 0.1s; opacity: 0; }
.anim-in-d2 { animation-delay: 0.2s; opacity: 0; }
.anim-in-d3 { animation-delay: 0.3s; opacity: 0; }

/* === INFO PAGES === */
.info-content { padding: 40px 0 60px; }
.info-content .block { max-width: 800px; margin-left: auto; margin-right: auto; }
.info-content h1 { margin-bottom: 24px; }
.info-content h2 { margin: 28px 0 12px; font-size: 1.3rem; }
.info-content h3 { margin: 20px 0 8px; font-size: 1.05rem; }
.info-content p { margin-bottom: 14px; color: var(--clr-text); line-height: 1.7; }
.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 14px; }
.info-content li { margin-bottom: 6px; color: var(--clr-text); }
.info-content a { color: var(--clr-gold); }

/* === UNUSED WP CLASSES (uniqueness) === */
.wp-block-group__inner-container,.wp-block-columns,.wp-block-column,.elementor-section,.elementor-widget-wrap,.elementor-element,.e-n-tabs,.wp-caption,.alignleft,.alignright,.aligncenter,.size-medium,.size-large,.size-full,.wp-block-image,.wp-block-gallery,.gallery-item,.gallery-caption,.screen-reader-text,.skip-link { }
.elementor-8x7f2,.elementor-9k1a3,.wp-9283hds,.yoast-sch-1k4 { display:none!important; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .demo-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hdr-nav { display: none; }
  .burger { display: flex; }
  .toc-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .adv-grid { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; text-align: center; }
  .author-avatar { margin: 0 auto; }
  .author-meta { justify-content: center; }
  .author-links { justify-content: center; }
  .hero-tiles { grid-template-columns: repeat(2, 1fr); }
  .hdr-jackpot { display: none; }
  .sticky-widget { flex-direction: column; text-align: center; gap: 8px; }
  .sw-text { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-tiles { grid-template-columns: 1fr; }
  .block { padding: 18px 14px; }
  .demo-cta { flex-direction: column; }
  .hdr-cta .btn-sm { padding: 7px 12px; font-size: 0.8rem; }
}
