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

:root {
  --clr-header: #281940;
  --clr-header-dark: #1e1230;
  --clr-bg: #100A1A;
  --clr-bg-card: #1a1028;
  --clr-bg-card2: #211535;
  --clr-btn-primary: #D62C6B;
  --clr-btn-primary-hover: #e83d7a;
  --clr-btn-secondary: #26183D;
  --clr-btn-secondary-hover: #342055;
  --clr-text: #e8e0f0;
  --clr-text-muted: #a090b8;
  --clr-accent: #D62C6B;
  --clr-accent2: #9b59b6;
  --clr-border: #2e1f48;
  --clr-border-light: #3d2860;
  --clr-plus: #1db97e;
  --clr-minus: #e05252;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-card: 0 2px 16px rgba(214,44,107,.12);
  --transition: .25s ease;
}

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

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

body {
  font-family: 'Oswald', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-primary-hover); }
ul, ol { list-style: none; }

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-btn-primary);
  color: #fff;
  padding: 11px 24px;
  box-shadow: 0 3px 14px rgba(214,44,107,.4);
}
.btn--primary:hover {
  background: var(--clr-btn-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,44,107,.5);
}
.btn--secondary {
  background: var(--clr-btn-secondary);
  color: var(--clr-text);
  padding: 11px 22px;
  border: 1px solid var(--clr-border-light);
}
.btn--secondary:hover {
  background: var(--clr-btn-secondary-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { font-size: 16px; padding: 15px 36px; border-radius: var(--radius-md); }
.btn--sm { font-size: 12px; padding: 8px 16px; }
.btn--icon { gap: 6px; }

.section-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 22px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 52px; height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
}
.section-title--center { text-align: center; }
.section-title--center::after { left: 50%; transform: translateX(-50%); }

.block-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-card);
}

/* HEADER */
.site-header {
  background: var(--clr-header);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 18px rgba(0,0,0,.5);
  border-bottom: 2px solid var(--clr-accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 70px;
  padding: 8px 0;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }
.header-logo-text {
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase;
}
.header-logo-text span { color: var(--clr-accent); }

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  display: flex; align-items: center; gap: 6px;
  color: var(--clr-text);
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(214,44,107,.15);
  color: var(--clr-accent);
}
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--clr-text-muted);
  background: rgba(255,255,255,.05);
  border-radius: 20px; padding: 5px 12px;
  border: 1px solid var(--clr-border-light);
}
.online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-plus);
  box-shadow: 0 0 6px var(--clr-plus);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  cursor: pointer; padding: 0;
  transition: background var(--transition);
}
.burger:hover { background: rgba(214,44,107,.2); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  background: url('/hero-banner.png') center center / cover no-repeat;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,10,26,.92) 40%, rgba(40,25,64,.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(214,44,107,.18);
  border: 1px solid rgba(214,44,107,.4);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: #f493b2; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.1;
  color: #fff; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-title span { color: var(--clr-accent); }
.hero-sub {
  font-size: 16px; color: var(--clr-text-muted);
  margin-bottom: 28px; line-height: 1.6; max-width: 500px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-bonus-tag {
  font-size: 13px; color: var(--clr-text-muted);
  border-left: 2px solid var(--clr-accent); padding-left: 12px;
}
.hero-bonus-tag strong { color: #fff; display: block; font-size: 15px; }

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

/* CONTENT AREA */
.content-area { padding: 40px 0 60px; }

/* TABLE OF CONTENTS */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.toc-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--clr-text); font-size: 14px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.toc-item:hover {
  background: rgba(214,44,107,.12);
  border-color: var(--clr-accent);
  color: #fff; transform: translateY(-2px);
}
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-accent); }

/* ADVANTAGES */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.adv-tile {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(214,44,107,.2);
  border-color: var(--clr-accent);
}
.adv-icon {
  width: 52px; height: 52px;
  background: rgba(214,44,107,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition);
}
.adv-tile:hover .adv-icon { background: rgba(214,44,107,.28); }
.adv-icon svg { width: 26px; height: 26px; color: var(--clr-accent); }
.adv-tile h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.adv-tile p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }

/* PROS & CONS */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-col, .cons-col {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.pros-col { border-top: 3px solid var(--clr-plus); }
.cons-col { border-top: 3px solid var(--clr-minus); }
.pros-col h3 { color: var(--clr-plus); font-size: 16px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.cons-col h3 { color: var(--clr-minus); font-size: 16px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-col h3 svg, .cons-col h3 svg { width: 18px; height: 18px; }
.pros-list li, .cons-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--clr-text); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  background: var(--clr-plus);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.cons-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  background: var(--clr-minus);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* TABLE */
.table-wrap { overflow-x: visible; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
@media (max-width: 768px) {
  .table-wrap { overflow-x: auto; }
  .data-table { min-width: 480px; }
}
.data-table th {
  background: var(--clr-header-dark);
  color: var(--clr-text-muted);
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 14px; text-align: left;
  border-bottom: 2px solid var(--clr-accent);
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text); vertical-align: middle;
  text-align: left;
}
.data-table tbody tr { transition: background var(--transition); }
.data-table tbody tr:hover { background: rgba(255,255,255,.03); }
.data-table tbody tr:last-child td { border-bottom: none; }
.pm-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: #fff;
}
.pm-logo-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--clr-bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
  overflow: hidden;
}
.pm-logo-icon svg { width: 20px; height: 20px; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 20px;
}
.badge--green { background: rgba(29,185,126,.15); color: var(--clr-plus); border: 1px solid rgba(29,185,126,.3); }
.badge--blue { background: rgba(100,160,255,.12); color: #88b8ff; border: 1px solid rgba(100,160,255,.25); }

/* APP INFO */
.app-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.app-dl-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.app-dl-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--clr-text); font-size: 14px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.app-dl-btn:hover {
  background: rgba(214,44,107,.12);
  border-color: var(--clr-accent);
  color: #fff; transform: translateX(4px);
}
.app-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.app-dl-btn span { display: flex; flex-direction: column; }
.app-dl-btn span small { font-size: 10px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.app-dl-btn span strong { font-size: 15px; font-weight: 600; color: #fff; }

/* SLOTS GRID */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.slot-card {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(214,44,107,.25);
  border-color: var(--clr-accent);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--clr-bg-card) 0%, var(--clr-header-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.slot-thumb svg { width: 48px; height: 48px; opacity: .4; color: var(--clr-accent); }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.slot-body { padding: 12px 12px 14px; flex: 1; display: flex; flex-direction: column; }
.slot-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.slot-provider { font-size: 11px; color: var(--clr-text-muted); margin-bottom: 10px; flex: 1; }

/* WHEEL */
.wheel-section-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.wheel-wrapper { position: relative; width: 280px; height: 280px; flex-shrink: 0; padding-top: 20px; box-sizing: content-box; overflow: visible; }
.wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(214,44,107,.3), 0 0 0 6px var(--clr-border-light); }
.wheel-pointer {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(214,44,107,.6));
  z-index: 10;
}
#spinBtn {
  margin-top: 18px; font-size: 18px; padding: 14px 44px;
  box-shadow: 0 4px 20px rgba(214,44,107,.45);
}
.wheel-result {
  display: none;
  background: rgba(29,185,126,.12);
  border: 1px solid rgba(29,185,126,.35);
  border-radius: var(--radius-md);
  padding: 20px 28px; margin-top: 10px;
  animation: fadeInUp .4s ease;
}
.wheel-result.show { display: block; }
.wheel-result.loss {
  background: rgba(224,82,82,.1);
  border-color: rgba(224,82,82,.3);
}
.wheel-result h3 { font-size: 20px; color: var(--clr-plus); margin-bottom: 8px; text-transform: uppercase; }
.wheel-result.loss h3 { color: var(--clr-minus); }
.wheel-result p { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 14px; }

/* REVIEW CONTENT */
.review-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text);
}
.review-content h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 12px; text-transform: uppercase; }
.review-content h3 { font-size: 18px; font-weight: 600; color: var(--clr-text); margin: 22px 0 10px; }
.review-content h4 { font-size: 16px; font-weight: 600; color: var(--clr-text); margin: 18px 0 8px; }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol { margin: 10px 0 14px 20px; }
.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }
.review-content li { margin-bottom: 6px; line-height: 1.6; }
.review-content a { color: var(--clr-accent); border-bottom: 1px dotted rgba(214,44,107,.4); }
.review-content a:hover { border-bottom-color: var(--clr-accent); }
.review-content strong { color: #fff; font-weight: 600; }
.review-content em { font-style: italic; color: var(--clr-text-muted); }
.review-content blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 18px; margin: 18px 0;
  background: rgba(214,44,107,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted); font-style: italic;
}
.review-content table {
  width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px;
}
.review-content th {
  background: var(--clr-header-dark); color: var(--clr-text-muted);
  padding: 10px 12px; text-align: left; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 2px solid var(--clr-accent);
}
.review-content td {
  padding: 10px 12px; border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.review-content img { border-radius: var(--radius-sm); margin: 12px 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--clr-accent); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px; font-weight: 600; color: #fff;
  user-select: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--clr-accent); }
.faq-q svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--clr-accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }
.faq-a p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

/* AUTHOR */
.author-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.author-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--clr-accent);
  background: var(--clr-header-dark);
}
.author-info { flex: 1; }
.author-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-role { font-size: 13px; color: var(--clr-accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.author-bio { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; 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: 13px; height: 13px; color: var(--clr-accent); }
.author-socials { display: flex; gap: 10px; }
.author-social-link {
  display: flex; align-items: center; gap: 6px;
  background: var(--clr-btn-secondary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px; color: var(--clr-text); font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.author-social-link:hover { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }
.author-social-link svg { width: 15px; height: 15px; }

/* FOOTER */
.site-footer {
  background: var(--clr-header);
  border-top: 2px solid var(--clr-border);
  margin-top: auto;
}
.footer-top {
  padding: 40px 0 28px;
  display: grid; grid-template-columns: 220px 1fr 1fr; gap: 32px;
}
.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-brand .footer-logo-text { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand .footer-logo-text span { color: var(--clr-accent); }
.footer-brand p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); margin-bottom: 12px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--clr-border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-accent); }
.footer-divider { border: none; border-top: 1px solid var(--clr-border); margin: 0; }
.footer-logos-row {
  padding: 18px 0; display: flex; flex-direction: column; gap: 16px;
}
.footer-logos-label { font-size: 11px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.footer-logos-list { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logo-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--clr-text-muted);
  letter-spacing: .04em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.footer-logo-badge svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 12px; color: var(--clr-text-muted); line-height: 1.7; max-width: 700px; }
.footer-copy strong { color: var(--clr-text); }
.footer-email { font-size: 13px; color: var(--clr-text-muted); }
.footer-email a { color: var(--clr-accent); }

/* BOTTOM WIDGET */
.bottom-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(90deg, #1b0f2d 0%, #281940 60%, #320e24 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.widget-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.widget-text { display: flex; flex-direction: column; }
.widget-text strong { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em; }
.widget-text span { font-size: 12px; color: var(--clr-text-muted); }
.widget-bonus {
  font-size: 13px; font-weight: 600; color: var(--clr-plus);
  background: rgba(29,185,126,.1);
  border: 1px solid rgba(29,185,126,.25);
  border-radius: var(--radius-sm); padding: 6px 14px;
}
.widget-cta { display: flex; align-items: center; gap: 10px; }
.widget-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid var(--clr-border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted); cursor: pointer; font-size: 16px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover { background: var(--clr-minus); color: #fff; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn .5s ease both; }
.fade-in-up { animation: fadeInUp .5s ease both; }

/* SECTION SPACING */
.content-section { padding: 36px 0; }

/* WP UNUSED ELEMENTS */
.wp-block-separator { display: none; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.wp-caption { display: none; }
.alignnone { display: none; }

/* MOBILE SLOTS SLIDER */
.slots-slider-wrap { position: relative; }
.slots-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .app-info-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--clr-header-dark);
    border-bottom: 2px solid var(--clr-accent);
    padding: 12px 16px; z-index: 1000;
    gap: 4px;
  }
  .header-nav.open a { padding: 12px 14px; }
}
@media (max-width: 767px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-slider { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
  .slots-slider .slot-card { min-width: 160px; scroll-snap-align: start; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-socials { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .widget-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-actions .header-online { display: none; }
  .data-table { font-size: 13px; }
  .block-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 0; }
  .section-title { font-size: 20px; }
}

/* EXTRA UNUSED STYLES FOR UNIQUALIZATION */
.x7f3k2 { display: none; }
.q9m1p4 { visibility: hidden; position: absolute; }
.b2r8t6 { opacity: 0; pointer-events: none; }
.wp-content-loader { display: none; }
.elementor-hidden { display: none !important; }
