:root {
  --color-header: #395277;
  --color-header-dark: #2c3f5c;
  --color-btn-green: #57d093;
  --color-btn-green-hover: #3fba7a;
  --color-btn-blue: #395277;
  --color-btn-blue-hover: #2c3f5c;
  --color-bg: #252d40;
  --color-bg-card: #2e3a52;
  --color-bg-card2: #32405a;
  --color-text: #e8edf5;
  --color-text-muted: #9badc7;
  --color-accent: #57d093;
  --color-border: #3d4f6e;
  --color-gold: #f5c842;
  --color-red: #e05555;
  --radius: 10px;
  --radius-lg: 16px;
  --font-sans: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.28);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.18);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-btn-green-hover); }

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

/* ===== HEADER ===== */
.qp7r3-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  border-bottom: 2px solid var(--color-header-dark);
}
.qp7r3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.wr4t1-logo { display: flex; align-items: center; flex-shrink: 0; }
.wr4t1-logo img { height: 44px; width: auto; }
.wr4t1-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.wr4t1-logo-text span { color: var(--color-accent); }

.mn5k8-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.mn5k8-nav a {
  color: #c9d8ee;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.mn5k8-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.hd9x2-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #a8c4e8;
  white-space: nowrap;
  flex-shrink: 0;
}
.hd9x2-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hd9x2-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.btn-login {
  background: var(--color-btn-green);
  color: #0f2010;
}
.btn-login:hover { background: var(--color-btn-green-hover); color: #0f2010; }
.btn-signup {
  background: var(--color-btn-blue);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-signup:hover { background: var(--color-btn-blue-hover); color: #fff; }
.btn-hero {
  background: var(--color-btn-green);
  color: #0f2010;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(87,208,147,0.35);
}
.btn-hero:hover { background: var(--color-btn-green-hover); color: #0f2010; box-shadow: 0 6px 28px rgba(87,208,147,0.5); }
.btn-widget {
  background: var(--color-btn-blue);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.btn-widget:hover { background: var(--color-btn-blue-hover); color: #fff; }
.btn-review {
  background: var(--color-btn-green);
  color: #0f2010;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
}
.btn-review:hover { background: var(--color-btn-green-hover); color: #0f2010; }

.bj3m1-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: none;
}
.bj3m1-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.bj3m1-burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.bj3m1-burger.active span:nth-child(2) { opacity: 0; }
.bj3m1-burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mn5k8-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-header-dark);
  padding: 16px 20px;
  gap: 8px;
  border-top: 1px solid var(--color-border);
  animation: slideDown 0.22s ease;
}
.mn5k8-mobile.active { display: flex; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mn5k8-mobile a {
  color: #c9d8ee;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 7px;
  transition: background var(--transition);
}
.mn5k8-mobile a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== HERO ===== */
.hz8v4-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-header-dark);
}
.hz8v4-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/slotozal-banneer.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
  transition: transform 0.4s ease;
}
.hz8v4-hero:hover .hz8v4-hero-bg { transform: scale(1.02); }
.hz8v4-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37,45,64,0.82) 40%, rgba(57,82,119,0.55) 100%);
  z-index: 1;
}
.hz8v4-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}
.hz8v4-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hz8v4-hero-content p {
  font-size: 1.1rem;
  color: #cde0f5;
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.6;
}
.hz8v4-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-accent) 0%, #3bc97e 100%);
  color: #0f2010;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ===== BREADCRUMBS ===== */
.bc5j7-breadcrumbs {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.bc5j7-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bc5j7-list li a { color: var(--color-accent); }
.bc5j7-list li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--color-text-muted); }

/* ===== MAIN LAYOUT ===== */
.xk9f2-main { padding: 40px 20px 60px; max-width: 1200px; margin: 0 auto; width: 100%; }
.xk9f2-section { margin-bottom: 40px; }

/* ===== BLOCK ===== */
.bl2r9-block {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.bl2r9-block:hover { box-shadow: var(--shadow); }

.bl2r9-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-border);
}
.bl2r9-title-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #3bc97e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bl2r9-title-icon svg { width: 18px; height: 18px; fill: #0f2010; }

/* ===== TABLE OF CONTENTS ===== */
.tc3k6-toc { display: flex; flex-direction: column; gap: 6px; }
.tc3k6-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 0.92rem;
  transition: background var(--transition), color var(--transition);
  border-left: 2px solid transparent;
}
.tc3k6-toc a:hover { background: rgba(87,208,147,0.1); color: var(--color-accent); border-left-color: var(--color-accent); }
.tc3k6-toc a span { width: 22px; height: 22px; background: var(--color-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--color-accent); flex-shrink: 0; }

/* ===== INFO TABLE ===== */
.it7n3-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.it7n3-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.it7n3-table tr { border-bottom: 1px solid var(--color-border); }
.it7n3-table tr:last-child { border-bottom: none; }
.it7n3-table tr:hover { background: rgba(87,208,147,0.05); }
.it7n3-table td {
  padding: 12px 16px;
  vertical-align: top;
  line-height: 1.5;
}
.it7n3-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 40%;
  white-space: nowrap;
}
.it7n3-table td:last-child { color: var(--color-text); font-weight: 500; }
.it7n3-badge-green {
  display: inline-block;
  background: rgba(87,208,147,0.15);
  color: var(--color-accent);
  border-radius: 5px;
  padding: 2px 9px;
  font-size: 0.82rem;
  font-weight: 700;
}
.it7n3-badge-gold {
  display: inline-block;
  background: rgba(245,200,66,0.15);
  color: var(--color-gold);
  border-radius: 5px;
  padding: 2px 9px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== ADVANTAGES ===== */
.adv4q1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.adv4q1-item {
  background: var(--color-bg-card2);
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv4q1-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.adv4q1-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2ec87a 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.adv4q1-icon svg { width: 20px; height: 20px; fill: #0f2010; }
.adv4q1-text h3 { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.adv4q1-text p { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; }

/* ===== PROS CONS ===== */
.pc6w2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc6w2-col { border-radius: var(--radius); padding: 20px; }
.pc6w2-pros { background: rgba(87,208,147,0.07); border: 1.5px solid rgba(87,208,147,0.25); }
.pc6w2-cons { background: rgba(224,85,85,0.07); border: 1.5px solid rgba(224,85,85,0.22); }
.pc6w2-col-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pc6w2-pros .pc6w2-col-title { color: var(--color-accent); }
.pc6w2-cons .pc6w2-col-title { color: var(--color-red); }
.pc6w2-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc6w2-list li {
  font-size: 0.9rem;
  color: var(--color-text);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5;
}
.pc6w2-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.pc6w2-pros .pc6w2-list li::before { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2357d093'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat; }
.pc6w2-cons .pc6w2-list li::before { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e05555'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ===== MIRRORS ===== */
.mr9p5-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.mr9p5-time {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  display: flex; align-items: center; gap: 6px;
}
.mr9p5-live { color: var(--color-accent); font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; gap: 5px; }
.mr9p5-live::before { content: ''; width: 7px; height: 7px; background: var(--color-accent); border-radius: 50%; animation: pulse-dot 1.4s ease-in-out infinite; }
.mr9p5-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.mr9p5-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.mr9p5-table thead tr { background: var(--color-bg-card2); }
.mr9p5-table th { padding: 12px 16px; text-align: left; font-size: 0.82rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.6px; white-space: nowrap; }
.mr9p5-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.mr9p5-table tr:last-child td { border-bottom: none; }
.mr9p5-table tr:hover td { background: rgba(87,208,147,0.04); }
.mr9p5-status { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 600; color: var(--color-accent); }
.mr9p5-status::before { content: ''; width: 7px; height: 7px; background: var(--color-accent); border-radius: 50%; }
.mr9p5-link { color: var(--color-accent); font-weight: 600; font-size: 0.88rem; }
.mr9p5-link:hover { text-decoration: underline; color: var(--color-btn-green-hover); }
.mr9p5-btn { background: var(--color-btn-green); color: #0f2010; padding: 6px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; }
.mr9p5-btn:hover { background: var(--color-btn-green-hover); color: #0f2010; }

/* ===== WINNERS ===== */
.wn2a8-list { display: flex; flex-direction: column; gap: 8px; }
.wn2a8-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  background: var(--color-bg-card2);
  border-radius: 9px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition);
}
.wn2a8-item:hover { transform: translateX(4px); }
.wn2a8-rank {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  flex-shrink: 0;
}
.wn2a8-rank-1 { background: linear-gradient(135deg, #f5c842, #e6a800); color: #000; }
.wn2a8-rank-2 { background: linear-gradient(135deg, #b0bec5, #78909c); color: #fff; }
.wn2a8-rank-3 { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.wn2a8-rank-other { background: var(--color-bg); color: var(--color-text-muted); border: 1px solid var(--color-border); }
.wn2a8-nick { flex: 1; font-size: 0.9rem; font-weight: 600; color: var(--color-text); }
.wn2a8-game { font-size: 0.8rem; color: var(--color-text-muted); }
.wn2a8-amount { font-size: 0.95rem; font-weight: 800; color: var(--color-gold); white-space: nowrap; }

/* ===== GAMES ===== */
.gm6b3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gm6b3-card {
  background: var(--color-bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.gm6b3-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.gm6b3-img {
  width: 100%; height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-header-dark) 0%, var(--color-bg) 100%);
  display: flex; align-items: center; justify-content: center;
}
.gm6b3-img-placeholder {
  width: 100%; height: 140px;
  background: linear-gradient(135deg, #1e2b3e 0%, #2c3f5c 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.gm6b3-img-placeholder svg { width: 40px; height: 40px; fill: rgba(87,208,147,0.35); }
.gm6b3-img-placeholder span { font-size: 0.75rem; color: rgba(87,208,147,0.5); }
.gm6b3-info { padding: 14px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.gm6b3-name { font-size: 0.95rem; font-weight: 700; color: #fff; }
.gm6b3-provider { font-size: 0.78rem; color: var(--color-text-muted); }
.gm6b3-btn {
  display: block;
  text-align: center;
  background: var(--color-btn-green);
  color: #0f2010;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px;
  border-radius: 7px;
  margin-top: auto;
  transition: background var(--transition);
}
.gm6b3-btn:hover { background: var(--color-btn-green-hover); color: #0f2010; }

/* Slider */
.sl4f7-slider { position: relative; overflow: hidden; }
.sl4f7-track { display: flex; gap: 14px; transition: transform 0.35s ease; will-change: transform; }
.sl4f7-track .gm6b3-card { min-width: 230px; }
.sl4f7-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.sl4f7-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); cursor: pointer; transition: background var(--transition); border: none; }
.sl4f7-dot.active { background: var(--color-accent); }
.sl4f7-prev, .sl4f7-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-header); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background var(--transition); box-shadow: var(--shadow-sm);
}
.sl4f7-prev { left: 4px; }
.sl4f7-next { right: 4px; }
.sl4f7-prev:hover, .sl4f7-next:hover { background: var(--color-accent); color: #0f2010; }

/* ===== CONTENT BLOCK ===== */
.ct8j1-content {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--color-text);
}
.ct8j1-content h2 { font-size: 1.35rem; font-weight: 800; color: #fff; margin: 28px 0 14px; border-left: 4px solid var(--color-accent); padding-left: 14px; }
.ct8j1-content h3 { font-size: 1.1rem; font-weight: 700; color: #e2eaf5; margin: 22px 0 10px; }
.ct8j1-content h4 { font-size: 1rem; font-weight: 700; color: #cad8ee; margin: 18px 0 8px; }
.ct8j1-content p { margin-bottom: 14px; }
.ct8j1-content ul, .ct8j1-content ol { margin: 12px 0 16px 22px; display: flex; flex-direction: column; gap: 8px; }
.ct8j1-content li { line-height: 1.6; }
.ct8j1-content a { color: var(--color-accent); text-decoration: underline; }
.ct8j1-content a:hover { color: var(--color-btn-green-hover); }
.ct8j1-content strong { color: #fff; font-weight: 700; }
.ct8j1-content em { color: var(--color-text-muted); font-style: italic; }
.ct8j1-content blockquote { border-left: 4px solid var(--color-accent); padding: 12px 18px; background: var(--color-bg-card2); border-radius: 0 8px 8px 0; margin: 16px 0; color: var(--color-text-muted); font-style: italic; }
.ct8j1-content table { width: 100%; border-collapse: collapse; margin: 18px 0; border-radius: 8px; overflow: hidden; }
.ct8j1-content table th { background: var(--color-bg-card2); color: var(--color-accent); font-weight: 700; padding: 11px 14px; text-align: left; border: 1px solid var(--color-border); }
.ct8j1-content table td { padding: 10px 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.ct8j1-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.ct8j1-content img { border-radius: 8px; max-width: 100%; margin: 16px 0; }
.ct8j1-content code { background: var(--color-bg-card2); border-radius: 4px; padding: 2px 7px; font-family: monospace; font-size: 0.88em; color: var(--color-accent); }
.ct8j1-content hr { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }

/* ===== FAQ ===== */
.fq5e9-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.fq5e9-item + .fq5e9-item { margin-top: 10px; }
.fq5e9-item.open { border-color: rgba(87,208,147,0.4); }
.fq5e9-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: var(--color-bg-card2);
  user-select: none;
  transition: background var(--transition);
}
.fq5e9-question:hover { background: rgba(87,208,147,0.06); }
.fq5e9-question h3 { font-size: 0.95rem; font-weight: 700; color: #fff; line-height: 1.4; }
.fq5e9-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); font-size: 1.1rem;
  transition: transform var(--transition);
}
.fq5e9-item.open .fq5e9-icon { transform: rotate(45deg); }
.fq5e9-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 18px;
  background: var(--color-bg-card);
}
.fq5e9-item.open .fq5e9-answer { max-height: 400px; padding: 16px 18px; }
.fq5e9-answer p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.65; }
.fq5e9-answer a { color: var(--color-accent); }

/* ===== REVIEWS ===== */
.rv3c5-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.rv3c5-card {
  background: var(--color-bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 20px 18px;
  transition: transform var(--transition);
}
.rv3c5-card:hover { transform: translateY(-3px); }
.rv3c5-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv3c5-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-header) 0%, #2c3f5c 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--color-accent);
  flex-shrink: 0;
}
.rv3c5-name { font-size: 0.95rem; font-weight: 700; color: #fff; }
.rv3c5-stars { display: flex; gap: 2px; margin-top: 3px; }
.rv3c5-star svg { width: 14px; height: 14px; }
.rv3c5-text { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }

.rv3c5-form {
  background: var(--color-bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 24px 20px;
}
.rv3c5-form h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.rv3c5-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.rv3c5-form label { font-size: 0.84rem; font-weight: 600; color: var(--color-text-muted); }
.rv3c5-form input, .rv3c5-form textarea {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  padding: 10px 14px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.rv3c5-form input:focus, .rv3c5-form textarea:focus { border-color: var(--color-accent); }
.rv3c5-form textarea { min-height: 100px; resize: vertical; }
.rv3c5-form input::placeholder, .rv3c5-form textarea::placeholder { color: rgba(155,173,199,0.5); }
.rv3c5-success {
  display: none;
  background: rgba(87,208,147,0.12);
  border: 1.5px solid rgba(87,208,147,0.35);
  border-radius: 9px;
  padding: 14px 18px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  margin-top: 12px;
}
.rv3c5-success.show { display: block; }

/* ===== AUTHOR ===== */
.au7h0-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.au7h0-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-header) 0%, #2c3f5c 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: var(--color-accent);
  flex-shrink: 0;
  border: 3px solid var(--color-accent);
  overflow: hidden;
}
.au7h0-avatar img { width: 100%; height: 100%; object-fit: cover; }
.au7h0-info { flex: 1; min-width: 200px; }
.au7h0-name { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.au7h0-role { font-size: 0.84rem; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; }
.au7h0-bio { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 14px; }
.au7h0-social { display: flex; gap: 10px; flex-wrap: wrap; }
.au7h0-social a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-bg-card2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.au7h0-social a:hover { background: rgba(87,208,147,0.1); border-color: var(--color-accent); color: var(--color-accent); }
.au7h0-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== FOOTER ===== */
.ft1k9-footer {
  background: var(--color-header-dark);
  border-top: 2px solid var(--color-border);
  padding: 40px 0 24px;
  margin-top: 20px;
}
.ft1k9-top {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.ft1k9-logo { display: flex; align-items: center; gap: 10px; }
.ft1k9-logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; }
.ft1k9-logo-text span { color: var(--color-accent); }
.ft1k9-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.ft1k9-nav a { color: #9badc7; font-size: 0.88rem; transition: color var(--transition); }
.ft1k9-nav a:hover { color: var(--color-accent); }
.ft1k9-payments { display: flex; flex-direction: column; gap: 12px; }
.ft1k9-payments-title { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.ft1k9-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.ft1k9-badge-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.ft1k9-providers-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; border-top: 1px solid var(--color-border); padding-top: 24px; }
.ft1k9-providers-title { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.ft1k9-providers { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ft1k9-provider-badge {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.74rem;
  color: var(--color-text-muted);
}
.ft1k9-legal { max-width: 1200px; margin: 0 auto; padding: 0 20px; border-top: 1px solid var(--color-border); padding-top: 20px; }
.ft1k9-copyright { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; text-align: center; }
.ft1k9-copyright a { color: var(--color-text-muted); }
.ft1k9-age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--color-text-muted);
  font-size: 0.7rem; font-weight: 800; color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* ===== WIDGET ===== */
.wg8x3-widget {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--color-btn-blue) 0%, #2c3f5c 100%);
  border-top: 2px solid var(--color-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
}
.wg8x3-text { flex: 1; }
.wg8x3-title { font-size: 0.92rem; font-weight: 800; color: #fff; }
.wg8x3-bonus { font-size: 0.82rem; color: var(--color-accent); font-weight: 700; }
.wg8x3-close {
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.wg8x3-close:hover { background: rgba(255,255,255,0.2); }

body { padding-bottom: 72px; }
body.wg8x3-hidden { padding-bottom: 0; }

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

@media (max-width: 768px) {
  .mn5k8-nav { display: none; }
  .bj3m1-burger { display: flex; }
  .hd9x2-online { display: none; }

  .pc6w2-grid { grid-template-columns: 1fr; }
  .gm6b3-grid { display: none; }
  .sl4f7-slider { display: block; }

  .ft1k9-top { grid-template-columns: 1fr; }
  .hz8v4-hero-content { padding: 44px 18px; }
  .hz8v4-hero-content h1 { font-size: 1.65rem; }
  .bl2r9-block { padding: 20px 16px; }

  .adv4q1-grid { grid-template-columns: 1fr 1fr; }
  .wg8x3-widget { flex-wrap: wrap; }
  .rv3c5-grid { grid-template-columns: 1fr; }

  .qp7r3-header-inner { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .adv4q1-grid { grid-template-columns: 1fr; }
  .wg8x3-widget { padding: 10px 14px; }
  .hd9x2-buttons .btn { padding: 8px 12px; font-size: 0.8rem; }
  .bl2r9-title { font-size: 1.05rem; }
}

/* ===== WP CAMOUFLAGE ===== */
.wp-block-group, .wp-block-cover, .entry-content, .post-content, .site-main, .widget-area { display: contents; }
.elementor-section { display: contents; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.alignnone, .alignleft, .alignright { max-width: 100%; }
.wp-caption { max-width: 100%; }

/* Unused decorative */
.fx3n2-shimmer { background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%); background-size: 200% 100%; }
.qz1v8-glow { box-shadow: 0 0 30px rgba(87,208,147,0.08); }
.lp9r4-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.lp9r4-fade.visible { opacity: 1; transform: translateY(0); }
.k2m7j-underline { text-decoration: underline; text-underline-offset: 3px; }
.e5t1x-tag { font-size: 0.72rem; background: rgba(87,208,147,0.12); color: var(--color-accent); padding: 2px 7px; border-radius: 4px; font-weight: 600; display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
