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

:root {
  --c-bg: #242630;
  --c-header: #1A1C24;
  --c-btn-primary: #00CC5F;
  --c-btn-secondary: #3D404C;
  --c-text: #E8EAF0;
  --c-text-muted: #9499AB;
  --c-border: #2E3040;
  --c-card: #1E2030;
  --c-accent: #00CC5F;
  --c-accent-hover: #00a84d;
  --c-white: #FFFFFF;
  --c-green-glow: rgba(0, 204, 95, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font: 'Montserrat', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.xw9k2 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.b3r7p { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--c-btn-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,204,95,0.3);
}
.btn-primary:hover {
  background: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,204,95,0.45);
}

.btn-secondary {
  background: var(--c-btn-secondary);
  color: var(--c-text);
}
.btn-secondary:hover {
  background: #4a4d5c;
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }

/* ===== HEADER ===== */
#xhdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.hdr-logo { flex-shrink: 0; }
.hdr-logo img { height: 40px; width: auto; }

.hdr-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }

.hdr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.hdr-nav a:hover, .hdr-nav a.active {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
}
.hdr-nav a svg { flex-shrink: 0; }

.hdr-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(--c-text-muted);
  padding: 6px 10px;
  background: rgba(0,204,95,0.08);
  border-radius: 20px;
  border: 1px solid rgba(0,204,95,0.2);
}
.online-dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-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); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  gap: 4px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.mob-menu a:hover { background: rgba(255,255,255,0.05); color: var(--c-text); }

/* ===== HERO ===== */
#xhero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header);
}
#xhero .xw9k2 { width: 100%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/spinago-banner.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,28,36,0.92) 0%, rgba(26,28,36,0.6) 60%, rgba(26,28,36,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,204,95,0.15);
  border: 1px solid rgba(0,204,95,0.35);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--c-white);
}
.hero-content h1 span { color: var(--c-accent); }
.hero-content p {
  font-size: 16px;
  color: rgba(232,234,240,0.8);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.hero-bonus-tag strong { color: var(--c-accent); }

/* ===== BREADCRUMBS ===== */
#xbcrumb {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { color: var(--c-border); }
.breadcrumbs .current { color: var(--c-text); }

/* ===== SECTIONS ===== */
.xsec { padding: 60px 0; }
.xsec-sm { padding: 40px 0; }

.sec-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.sec-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.sec-head { margin-bottom: 32px; }
.sec-head .sec-title { margin-bottom: 6px; }

/* ===== TABLE OF CONTENTS ===== */
#xtoc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 0 0 40px 0;
}
.toc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.toc-item:hover {
  background: var(--c-green-glow);
  border-color: rgba(0,204,95,0.3);
  color: var(--c-accent);
}
.toc-item svg { flex-shrink: 0; color: var(--c-accent); }
.toc-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-btn-secondary);
  color: var(--c-text-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,204,95,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--c-green-glow);
  border: 1px solid rgba(0,204,95,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--c-accent);
}
.adv-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}
.adv-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ===== TABLES ===== */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--c-border); }
.xdata-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.xdata-tbl thead tr {
  background: var(--c-header);
}
.xdata-tbl th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}
.xdata-tbl td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}
.xdata-tbl tbody tr:last-child td { border-bottom: none; }
.xdata-tbl tbody tr:hover { background: rgba(255,255,255,0.03); }
.pm-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-white);
}
.pm-icon {
  width: 32px;
  height: 20px;
  border-radius: 4px;
  background: var(--c-btn-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-instant {
  display: inline-block;
  background: rgba(0,204,95,0.15);
  color: var(--c-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}
.badge-days {
  display: inline-block;
  background: rgba(255,180,0,0.12);
  color: #ffb400;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
}
.mirror-dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* ===== MIRRORS SECTION ===== */
.mirror-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.mirror-timestamp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 5px 12px;
}
.mirror-timestamp svg { color: var(--c-accent); flex-shrink: 0; }

/* ===== GAMES SLIDER ===== */
#xgames { overflow: hidden; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,204,95,0.35);
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--c-btn-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.game-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #1e2030 0%, #2a2d40 100%);
  position: relative;
}
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--c-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.game-info { padding: 12px; }
.game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.game-card .btn { width: 100%; font-size: 12px; padding: 8px 12px; }

.games-slider-wrap { position: relative; }
.games-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-btn-secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: background var(--transition);
}
.slider-btn:hover { background: var(--c-accent); color: #fff; }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-btn-secondary);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--c-accent); }

/* ===== CONTENT BLOCK ===== */
#xcontent { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px 36px; }

#xcontent h2 { font-size: 22px; font-weight: 700; color: var(--c-white); margin: 28px 0 12px; }
#xcontent h3 { font-size: 18px; font-weight: 600; color: var(--c-white); margin: 22px 0 10px; }
#xcontent h4 { font-size: 16px; font-weight: 600; color: var(--c-text); margin: 18px 0 8px; }
#xcontent p { margin-bottom: 14px; color: var(--c-text); line-height: 1.7; }
#xcontent ul, #xcontent ol { margin: 0 0 16px 20px; color: var(--c-text); line-height: 1.7; }
#xcontent li { margin-bottom: 6px; }
#xcontent a { color: var(--c-accent); }
#xcontent a:hover { text-decoration: underline; }
#xcontent strong, #xcontent b { color: var(--c-white); font-weight: 600; }
#xcontent em { font-style: italic; color: var(--c-text-muted); }
#xcontent blockquote {
  border-left: 3px solid var(--c-accent);
  background: rgba(0,204,95,0.05);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
#xcontent table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
#xcontent table th {
  background: var(--c-header);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
#xcontent table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
#xcontent img { border-radius: 8px; margin: 16px 0; max-width: 100%; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: rgba(0,204,95,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-btn-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
  border: 2px solid rgba(0,204,95,0.25);
}
.rev-meta { flex: 1; }
.rev-name { font-size: 14px; font-weight: 700; color: var(--c-white); }
.rev-date { font-size: 11px; color: var(--c-text-muted); margin-top: 2px; }
.rev-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.rev-stars svg { color: #FFB800; }
.rev-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; }

.review-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.review-form-wrap h3 { font-size: 18px; font-weight: 700; color: var(--c-white); margin-bottom: 20px; }
.xform { display: flex; flex-direction: column; gap: 14px; }
.xform label { font-size: 13px; font-weight: 500; color: var(--c-text-muted); margin-bottom: 5px; display: block; }
.xform input, .xform textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--transition);
}
.xform input:focus, .xform textarea:focus { border-color: var(--c-accent); }
.xform input::placeholder, .xform textarea::placeholder { color: var(--c-text-muted); }
.xform textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
}
.form-msg.success { display: block; background: rgba(0,204,95,0.12); color: var(--c-accent); border: 1px solid rgba(0,204,95,0.25); }
.form-msg.error { display: block; background: rgba(255,70,70,0.1); color: #ff6b6b; border: 1px solid rgba(255,70,70,0.2); }

/* ===== AUTHOR ===== */
.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(0,204,95,0.3);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--c-btn-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--c-accent);
}
.author-info { flex: 1; }
.author-name { font-size: 18px; font-weight: 700; color: var(--c-white); margin-bottom: 3px; }
.author-position { font-size: 13px; color: var(--c-accent); font-weight: 500; margin-bottom: 10px; }
.author-bio { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--c-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  background: var(--c-btn-secondary);
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.author-link:hover { background: rgba(0,204,95,0.15); color: var(--c-accent); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  transition: background var(--transition);
  gap: 12px;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q.open { color: var(--c-accent); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-btn-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-q.open .faq-icon { background: var(--c-accent); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 0 20px 16px; }

/* ===== FOOTER ===== */
#xfooter {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-brand .footer-logo img { height: 36px; }
.footer-brand p { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 14px; }
.footer-flag { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--c-text-muted); }
.flag-au {
  width: 24px; height: 16px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  background: #00008b;
  position: relative;
  flex-shrink: 0;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-accent); }

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
}
.footer-badge svg { color: var(--c-accent); }

.footer-divider { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 12px; color: var(--c-text-muted); }
.footer-copyright a { color: var(--c-text-muted); }
.footer-copyright a:hover { color: var(--c-accent); }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: var(--c-btn-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--c-accent); color: #fff; }

.footer-legal {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  text-align: center;
}

/* ===== STICKY WIDGET ===== */
#xwidget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-header);
  border-top: 2px solid var(--c-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.widget-text { flex: 1; }
.widget-text .w-bonus { font-size: 15px; font-weight: 700; color: var(--c-white); }
.widget-text .w-bonus span { color: var(--c-accent); }
.widget-text .w-sub { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.widget-close {
  background: transparent;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover { color: var(--c-text); }

body { padding-bottom: 70px; }
body.widget-hidden { padding-bottom: 0; }
#xwidget.hidden { display: none; }

/* ===== SECTION DIVIDER ===== */
.xdivider {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}

/* ===== PROVIDER BADGES ===== */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prov-badge {
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-muted);
}

/* ===== BONUS HIGHLIGHT ===== */
.bonus-hl {
  background: linear-gradient(135deg, rgba(0,204,95,0.12) 0%, rgba(0,204,95,0.04) 100%);
  border: 1px solid rgba(0,204,95,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bonus-hl-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,204,95,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.bonus-hl-text { flex: 1; }
.bonus-hl-title { font-size: 20px; font-weight: 800; color: var(--c-white); margin-bottom: 4px; }
.bonus-hl-sub { font-size: 13px; color: var(--c-text-muted); }

/* ===== ANIMATIONS ===== */
.js .fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== WP DECOY ELEMENTS ===== */
.wp-block-group, .wp-block-columns, .wp-caption, .wp-post-image { display: contents; }
.entry-meta, .entry-footer, .post-thumbnail, .widget-area { display: none; }
.elementor-widget-container, .elementor-section { display: contents; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .burger { display: flex; }
  .online-count { display: none; }
  .hdr-actions > .btn { display: none; }
  .mob-menu-btns { display: flex; gap: 10px; margin-top: 12px; }
  .mob-menu-btns .btn { flex: 1; justify-content: center; }

  #hero { min-height: 380px; }
  .hero-content { max-width: 100%; }

  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    scrollbar-width: none;
  }
  .games-grid::-webkit-scrollbar { display: none; }
  .games-slider-nav { display: flex; }
  .game-card { flex: 0 0 100%; width: 100%; scroll-snap-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta, .author-links { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  #xcontent { padding: 20px 18px; }
  .review-form-wrap { padding: 20px 18px; }
  .toc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .xsec { padding: 40px 0; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns .btn-lg { width: 100%; }
  .bonus-hl { flex-direction: column; text-align: center; }
  #xwidget { flex-wrap: wrap; }
}

/* ===== DECOY/UNUSED STYLES ===== */
.agt-7f2b, .kdr-9x1a, .pxn-4w8z { display: none !important; }
.wp-content-area .post-56a2 { visibility: hidden; }
.elementor-1024 .widget-89bc { pointer-events: none; }
.yoast-schema-graph--main { opacity: 0; }
#wpadminbar { display: none; }
.qp-7d3k { z-index: -9999; position: absolute; }
.elementor-location-header .e-n-c-9 { max-height: 0; overflow: hidden; }
