@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-bg: #0a0f17;
  --clr-header: #2a2d39;
  --clr-primary: #03d5bc;
  --clr-secondary: #d2279b;
  --clr-text: #e8eaf0;
  --clr-text-muted: #9aa0b0;
  --clr-border: rgba(255,255,255,0.08);
  --clr-card: #151b28;
  --clr-card2: #1a2133;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --font: 'Roboto', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-primary: 0 0 20px rgba(3,213,188,0.25);
  --shadow-secondary: 0 0 20px rgba(210,39,155,0.25);
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); background: var(--clr-bg); color: var(--clr-text); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-secondary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  text-decoration: none; transition: all var(--transition); white-space: nowrap;
}
.btn--primary {
  background: var(--clr-primary); color: #0a0f17;
  box-shadow: 0 0 0 rgba(3,213,188,0);
}
.btn--primary:hover { background: #02c0aa; color: #0a0f17; box-shadow: var(--shadow-primary); transform: translateY(-1px); }
.btn--secondary { background: var(--clr-secondary); color: #fff; }
.btn--secondary:hover { background: #c01e8a; color: #fff; box-shadow: var(--shadow-secondary); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--clr-primary); border: 1.5px solid var(--clr-primary); }
.btn--outline:hover { background: var(--clr-primary); color: #0a0f17; }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn--sm { padding: 7px 16px; font-size: 13px; }

.section-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #fff;
  margin-bottom: 28px; line-height: 1.3;
}
.section-title span { color: var(--clr-primary); }
.section-label {
  display: inline-block; background: rgba(3,213,188,0.1); color: var(--clr-primary);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}

.xb7f2 { display: none; }
.wp-content-meta { display: none; visibility: hidden; position: absolute; }
.elementor-placeholder { opacity: 0; height: 0; overflow: hidden; }

.site-header {
  background: var(--clr-header); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(3,213,188,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 40px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  color: var(--clr-text); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); transition: all var(--transition); text-decoration: none;
}
.nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-link:hover, .nav-link.active { background: rgba(3,213,188,0.1); color: var(--clr-primary); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.online-count {
  display: flex; align-items: center; gap: 6px; font-size: 12px;
  color: var(--clr-text-muted); white-space: nowrap;
}
.online-dot { width: 7px; height: 7px; background: #2ecc71; border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px; border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.08); }
.burger span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; background: var(--clr-header); border-top: 1px solid var(--clr-border);
  padding: 16px 0; animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--clr-border); margin-bottom: 12px; }
.mobile-nav .nav-link { padding: 10px 16px; }
.mobile-actions { display: flex; gap: 10px; padding: 0 4px; flex-wrap: wrap; }

.hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0f17 0%, #111827 50%, #0d1520 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background: url('/likesbet-banner.png') center/cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,15,23,0.92) 0%, rgba(10,15,23,0.5) 60%, rgba(10,15,23,0.15) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(3,213,188,0.12);
  border: 1px solid rgba(3,213,188,0.3); border-radius: 20px; padding: 6px 14px;
  font-size: 13px; color: var(--clr-primary); margin-bottom: 24px;
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--clr-primary); }
.hero-desc { font-size: 18px; color: var(--clr-text-muted); margin-bottom: 32px; line-height: 1.6; }
.hero-bonus-box {
  display: inline-flex; align-items: center; gap: 12px; background: rgba(3,213,188,0.08);
  border: 1px solid rgba(3,213,188,0.2); border-radius: var(--radius); padding: 14px 20px; margin-bottom: 32px;
}
.hero-bonus-amount { font-size: 28px; font-weight: 900; color: var(--clr-primary); }
.hero-bonus-text { font-size: 13px; color: var(--clr-text-muted); }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stars { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--clr-text-muted); }
.hero-stars svg { color: #f59e0b; }
.star-fill { fill: #f59e0b; stroke: none; }

.breadcrumb-bar { background: var(--clr-card); border-bottom: 1px solid var(--clr-border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-current { color: var(--clr-primary); }

.content-section { padding: 60px 0; }
.content-section + .content-section { padding-top: 0; }

.toc-block {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 40px;
}
.toc-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.toc-title svg { color: var(--clr-primary); }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.toc-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
  color: var(--clr-text); font-size: 14px; font-weight: 500; transition: all var(--transition);
  border: 1px solid transparent;
}
.toc-item svg { width: 18px; height: 18px; color: var(--clr-primary); flex-shrink: 0; }
.toc-item:hover { background: rgba(3,213,188,0.08); border-color: rgba(3,213,188,0.2); color: var(--clr-primary); transform: translateX(4px); }

.info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 40px; }
.info-table {
  width: 100%; border-collapse: collapse; background: var(--clr-card);
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--clr-border);
  min-width: 500px;
}
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--clr-border); font-size: 14px; }
.info-table th { background: var(--clr-header); color: var(--clr-text-muted); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-table td:first-child { color: var(--clr-text-muted); white-space: nowrap; width: 260px; }
.info-table td:last-child { color: var(--clr-text); font-weight: 500; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }
.table-icon { display: inline-flex; align-items: center; gap: 8px; }
.table-icon svg { width: 18px; height: 18px; color: var(--clr-primary); flex-shrink: 0; }
.badge-tag {
  display: inline-block; background: rgba(3,213,188,0.12); color: var(--clr-primary);
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin: 2px 2px 2px 0;
}

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 40px; }
.adv-card {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 24px 20px; transition: all var(--transition);
}
.adv-card:hover { border-color: rgba(3,213,188,0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.adv-icon {
  width: 48px; height: 48px; background: rgba(3,213,188,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.adv-icon svg { width: 24px; height: 24px; color: var(--clr-primary); }
.adv-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.adv-text { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }

.mirror-block {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 40px;
}
.mirror-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.mirror-time { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); background: rgba(255,255,255,0.04); padding: 6px 12px; border-radius: 6px; }
.mirror-table { width: 100%; border-collapse: collapse; }
.mirror-table th, .mirror-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--clr-border); font-size: 14px; }
.mirror-table th { color: var(--clr-text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.mirror-table tr:last-child td { border-bottom: none; }
.mirror-table tr:hover td { background: rgba(255,255,255,0.02); }
.status-badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px;
  font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
.status-badge.active { background: rgba(46,204,113,0.12); color: #2ecc71; }
.mirror-link { color: var(--clr-primary); font-weight: 600; font-size: 14px; }
.mirror-link:hover { color: var(--clr-secondary); }

.games-section { margin-bottom: 40px; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-card {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
}
.game-card:hover { border-color: rgba(3,213,188,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.game-thumb {
  height: 160px; background: linear-gradient(135deg, #1a2133, #0d1520);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-thumb-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
}
.game-thumb-placeholder svg { width: 48px; height: 48px; color: rgba(3,213,188,0.3); }
.game-thumb-placeholder span { font-size: 11px; color: var(--clr-text-muted); }
.game-provider-badge {
  position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7);
  font-size: 10px; color: var(--clr-text-muted); padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.game-info { padding: 14px; }
.game-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-rtp { font-size: 12px; color: var(--clr-text-muted); margin-bottom: 12px; }
.game-rtp span { color: var(--clr-primary); font-weight: 600; }

.swiper-games { display: none; }
.swiper-slide-game { width: 240px; flex-shrink: 0; }

.review-content {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 36px; margin-bottom: 40px;
}
.review-content h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 14px; line-height: 1.3; }
.review-content h3 { font-size: 18px; font-weight: 600; color: var(--clr-primary); margin: 22px 0 12px; }
.review-content h4 { font-size: 16px; font-weight: 600; color: #fff; margin: 18px 0 10px; }
.review-content p { font-size: 15px; color: var(--clr-text); line-height: 1.75; margin-bottom: 16px; }
.review-content ul { margin: 0 0 16px 0; padding-left: 0; }
.review-content ul li { padding: 6px 0 6px 24px; position: relative; font-size: 15px; color: var(--clr-text); line-height: 1.6; }
.review-content ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--clr-primary); border-radius: 50%; }
.review-content ol { margin: 0 0 16px 0; padding-left: 24px; }
.review-content ol li { padding: 6px 0; font-size: 15px; color: var(--clr-text); line-height: 1.6; }
.review-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; }
.review-content table th { background: var(--clr-header); padding: 12px 16px; text-align: left; font-size: 13px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.review-content table td { padding: 12px 16px; border-bottom: 1px solid var(--clr-border); font-size: 14px; color: var(--clr-text); }
.review-content table tr:last-child td { border-bottom: none; }
.review-content a { color: var(--clr-primary); }
.review-content strong { color: #fff; font-weight: 600; }
.review-content em { color: var(--clr-text-muted); font-style: italic; }
.review-content blockquote { border-left: 3px solid var(--clr-primary); padding: 12px 20px; background: rgba(3,213,188,0.05); border-radius: 0 8px 8px 0; margin: 16px 0 24px; font-style: italic; color: var(--clr-text-muted); }
.review-content img { border-radius: var(--radius-sm); max-width: 100%; margin: 16px 0; }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 28px 0; }

.security-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 40px; }
.security-card {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: all var(--transition);
}
.security-card:hover { border-color: rgba(3,213,188,0.2); }
.security-card-icon { width: 42px; height: 42px; background: rgba(3,213,188,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.security-card-icon svg { width: 22px; height: 22px; color: var(--clr-primary); }
.security-card-title { font-size: 15px; font-weight: 700; color: #fff; }
.security-card-text { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; }
.security-badge-row { display: flex; flex-wrap: wrap; gap: 6px; }
.sec-badge { background: rgba(46,204,113,0.1); color: #2ecc71; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 12px; }

.faq-block { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600; color: #fff;
  text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question.open { color: var(--clr-primary); }
.faq-chevron { width: 20px; height: 20px; color: var(--clr-text-muted); flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--clr-primary); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 600px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; }
.faq-answer a { color: var(--clr-primary); }

.author-block {
  background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 40px; display: flex; gap: 24px; align-items: flex-start;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  display: flex; align-items: center; justify-content: center;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar-fallback { font-size: 28px; font-weight: 700; color: #0a0f17; }
.author-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-role { font-size: 13px; color: var(--clr-primary); font-weight: 500; margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--clr-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 14px; height: 14px; }
.author-links { display: flex; gap: 10px; }
.author-social {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  background: rgba(255,255,255,0.06); border-radius: 8px; color: var(--clr-text-muted);
  transition: all var(--transition);
}
.author-social:hover { background: var(--clr-primary); color: #0a0f17; }
.author-social svg { width: 18px; height: 18px; }

.site-footer {
  background: var(--clr-header); border-top: 1px solid var(--clr-border); padding: 50px 0 0;
}
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand-text { font-size: 13px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--clr-text-muted);
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--clr-primary); color: #0a0f17; }
.footer-social-link svg { width: 18px; height: 18px; }
.footer-nav-title { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13px; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--clr-primary); }
.footer-divider { height: 1px; background: var(--clr-border); margin-bottom: 32px; }
.footer-logos-row { margin-bottom: 28px; }
.footer-logos-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.logo-pill {
  background: rgba(255,255,255,0.05); border: 1px solid var(--clr-border); border-radius: 8px;
  padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--clr-text-muted);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.logo-pill svg { width: 16px; height: 16px; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 800px; line-height: 1.5; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: rgba(255,255,255,0.08); border-radius: 6px; font-size: 10px; font-weight: 700; color: var(--clr-text-muted); flex-shrink: 0; }
.footer-email { font-size: 12px; color: var(--clr-text-muted); }
.footer-email a { color: var(--clr-primary); }

.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #0d1f1d 0%, #0a0f17 100%);
  border-top: 2px solid var(--clr-primary); padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  box-shadow: 0 -4px 24px rgba(3,213,188,0.15);
}
.widget-bonus-text { font-size: 14px; color: var(--clr-text); font-weight: 500; white-space: nowrap; }
.widget-bonus-text strong { color: var(--clr-primary); }
.widget-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); border: none; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer; color: var(--clr-text-muted); font-size: 16px;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.widget-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

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

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

.info-page-content {
  padding: 60px 0;
}
.info-page-inner {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 40px;
}
.info-page-inner h1 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.info-page-inner .page-updated { font-size: 13px; color: var(--clr-text-muted); margin-bottom: 28px; }
.info-page-inner h2 { font-size: 20px; font-weight: 700; color: #fff; margin: 24px 0 12px; }
.info-page-inner h3 { font-size: 17px; font-weight: 600; color: var(--clr-primary); margin: 18px 0 10px; }
.info-page-inner p { font-size: 15px; color: var(--clr-text); line-height: 1.75; margin-bottom: 14px; }
.info-page-inner ul, .info-page-inner ol { margin: 0 0 16px 20px; }
.info-page-inner li { font-size: 15px; color: var(--clr-text); line-height: 1.6; padding: 4px 0; }
.info-page-inner a { color: var(--clr-primary); }
.info-page-inner table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; border: 1px solid var(--clr-border); }
.info-page-inner table th { background: var(--clr-header); padding: 11px 14px; text-align: left; font-size: 13px; color: var(--clr-text-muted); }
.info-page-inner table td { padding: 11px 14px; border-bottom: 1px solid var(--clr-border); font-size: 14px; color: var(--clr-text); }
.info-page-inner strong { color: #fff; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.contact-card { background: rgba(255,255,255,0.03); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 24px; text-align: center; }
.contact-card svg { width: 32px; height: 32px; color: var(--clr-primary); margin: 0 auto 12px; }
.contact-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--clr-text-muted); }

.qp7k3 { position: absolute; left: -9999px; overflow: hidden; height: 0; }
.zx82m { display: none !important; }
.wp-nonce-field { display: none; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > .footer-brand { grid-column: 1 / -1; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .burger { display: flex; }
  .header-actions .btn--secondary { display: none; }
  .header-actions .btn--primary { display: none; }
  .hero { min-height: 420px; }
  .hero-content { padding: 60px 0; }
  .hero-bonus-box { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-top { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; }
  .author-avatar { width: 64px; height: 64px; }
  .games-grid { display: none; }
  .swiper-games { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 12px; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; }
  .swiper-games::-webkit-scrollbar { display: none; }
  .swiper-slide-game { width: 220px; scroll-snap-align: start; flex-shrink: 0; }
  .toc-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .sticky-widget { flex-direction: column; gap: 10px; padding: 14px 40px 14px 16px; }
  .widget-bonus-text { font-size: 13px; }
  .mirror-block { padding: 20px 16px; }
  .toc-block { padding: 20px; }
  .review-content { padding: 22px; }
  .info-page-inner { padding: 24px 20px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}
