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

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

:root {
  --color-bg: #15021a;
  --color-header: #1e0226;
  --color-pink: #f532b3;
  --color-teal: #21d1b4;
  --color-text: #e8e0ec;
  --color-text-muted: #a898b8;
  --color-border: #3a1a4a;
  --color-card: #1f0a2a;
  --color-card-alt: #260d33;
  --color-overlay: rgba(30, 2, 38, 0.85);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: "Montserrat", "Roboto", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  --transition: all 0.25s ease;
  --shadow: 0 4px 24px rgba(245, 50, 179, 0.1);
  --shadow-teal: 0 4px 24px rgba(33, 209, 180, 0.1);
}

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

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

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-pink);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: #fff;
}

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

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--pink {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 0 16px rgba(245, 50, 179, 0.4);
}

.btn--pink:hover {
  background: #d4199a;
  color: #fff;
  box-shadow: 0 0 28px rgba(245, 50, 179, 0.7);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--color-teal);
  color: #0a1a18;
  box-shadow: 0 0 16px rgba(33, 209, 180, 0.4);
}

.btn--teal:hover {
  background: #18b89e;
  color: #0a1a18;
  box-shadow: 0 0 28px rgba(33, 209, 180, 0.7);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-teal);
  color: var(--color-teal);
}

.btn--outline:hover {
  background: var(--color-teal);
  color: #0a1a18;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--xl {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(27%) sepia(100%) saturate(5000%)
    hue-rotate(300deg) brightness(1.2);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.header-nav a {
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(245, 50, 179, 0.12);
}

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

.header-online {
  font-size: 12px;
  color: var(--color-teal);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 8px;
  white-space: nowrap;
}

.header-online::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  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: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: 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 {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-header);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ba.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 2, 26, 0.8) 0%,
    rgba(30, 2, 38, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.hero-content p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 209, 180, 0.12);
  border: 1px solid rgba(33, 209, 180, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.section-head {
  margin-bottom: 32px;
}

.breadcrumbs {
  padding: 14px 0;
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumbs li::after {
  content: "/";
  color: var(--color-border);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--color-teal);
  font-size: 13px;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--color-pink);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-alt {
  background: var(--color-card-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.info-table th {
  background: var(--color-header);
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 38%;
}

.info-table td {
  color: var(--color-text);
  font-weight: 500;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td {
  color: #fff;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}

.table-scroll::-webkit-scrollbar {
  height: 6px;
}

.table-scroll::-webkit-scrollbar-track {
  background: var(--color-header);
}

.table-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.advantage-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.advantage-item:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-teal);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  background: rgba(33, 209, 180, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.advantage-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-teal);
  fill: none;
}

.advantage-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.advantage-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.winners-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.winner-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.winner-item:hover {
  border-color: rgba(245, 50, 179, 0.4);
}

.winner-rank {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  min-width: 22px;
}

.winner-rank.top3 {
  color: #f0c040;
}

.winner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.winner-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.winner-amount {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-teal);
  white-space: nowrap;
}

.video-section {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.slot-game {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.slot-machine {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px auto;
}

.slot-reel {
  width: 80px;
  height: 100px;
  background: var(--color-header);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.slot-reel.spinning {
  animation: reel-spin 0.4s linear infinite;
}

@keyframes reel-spin {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.2);
    opacity: 0.6;
  }
  100% {
    transform: scaleY(1);
  }
}

.slot-result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.slot-win {
  color: var(--color-teal);
  font-size: 18px;
  font-weight: 700;
  animation: fadeInUp 0.4s ease;
}

.slot-lose {
  color: var(--color-text-muted);
  font-size: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(245, 50, 179, 0.3);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #f0c040;
  stroke: none;
}

.review-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 560px;
}

.review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-header);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-text);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(33, 209, 180, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  background: rgba(33, 209, 180, 0.1);
  border: 1px solid var(--color-teal);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-teal);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  animation: fadeInUp 0.3s ease;
}

.form-success.show {
  display: block;
}

.site-footer {
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-logo-col img {
  filter: brightness(0) invert(27%) sepia(100%) saturate(5000%)
    hue-rotate(300deg) brightness(1.2);
}
.footer-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: var(--transition);
  font-family: var(--font-main);
}

.footer-nav a:hover {
  color: var(--color-teal);
}

.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-payments h4,
.footer-providers h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-weight: 600;
  margin-bottom: 8px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  transition: var(--transition);
}

.payment-badge:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-badge {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font-main);
}

.footer-middle {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.footer-providers h4 {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-legal-links a:hover {
  color: var(--color-teal);
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1e0226 0%, #260d33 100%);
  border-top: 1px solid rgba(245, 50, 179, 0.4);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.widget-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-main);
}

.widget-text span {
  color: var(--color-teal);
}

.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  color: #fff;
}

.widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.promo-block {
  background: linear-gradient(
    135deg,
    rgba(245, 50, 179, 0.12),
    rgba(33, 209, 180, 0.08)
  );
  border: 1px solid rgba(245, 50, 179, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 0 auto;
}

.promo-block h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  margin-bottom: 8px;
}

.promo-block .amount {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  background: linear-gradient(90deg, var(--color-pink), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin: 8px 0;
}

.promo-block p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.promo-code-block {
  background: var(--color-card-alt);
  border: 2px dashed var(--color-pink);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
}

.promo-code-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-weight: 600;
  margin-bottom: 8px;
}

.promo-code-value {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-pink);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 12px;
}

.copy-btn {
  background: var(--color-header);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  color: var(--color-text);
  font-size: 13px;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--color-teal);
  color: #0a1a18;
  border-color: var(--color-teal);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-table th {
  background: var(--color-header);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--color-border);
}

.compare-table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 600;
  color: #fff;
}

.check-yes {
  color: var(--color-teal);
  font-weight: 700;
}
.check-no {
  color: var(--color-pink);
}

.toc-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.toc-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-teal);
}

.toc-block ol {
  list-style: none;
  counter-reset: toc;
}

.toc-block ol li {
  counter-increment: toc;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.toc-block ol li:last-child {
  border-bottom: none;
}

.toc-block ol li::before {
  content: counter(toc);
  min-width: 24px;
  height: 24px;
  background: rgba(33, 209, 180, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  flex-shrink: 0;
}

.toc-block ol li a {
  color: var(--color-text);
  transition: var(--transition);
}

.toc-block ol li a:hover {
  color: var(--color-teal);
}

.author-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-teal);
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.author-title {
  font-size: 13px;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-links {
  display: flex;
  gap: 10px;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  border: 1px solid rgba(33, 209, 180, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: var(--transition);
}

.author-link:hover {
  background: rgba(33, 209, 180, 0.1);
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(33, 209, 180, 0.4);
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-main);
  user-select: none;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(33, 209, 180, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-teal);
  fill: none;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: rgba(33, 209, 180, 0.2);
}

.faq-item.open .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-teal));
}

.bonus-card:hover {
  border-color: rgba(245, 50, 179, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bonus-tag {
  display: inline-block;
  background: rgba(245, 50, 179, 0.15);
  color: var(--color-pink);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.bonus-amount {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #fff;
  font-family: var(--font-main);
  margin-bottom: 6px;
}

.bonus-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slider-slide {
  flex: 0 0 100%;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
  pointer-events: none;
  z-index: 5;
}

.slider-btn {
  width: 40px;
  height: 40px;
  background: rgba(30, 2, 38, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--color-header);
  border-color: var(--color-teal);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text);
  fill: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--color-teal);
  width: 20px;
  border-radius: 4px;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.jackpot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.jackpot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(245, 50, 179, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.jackpot-card:hover {
  border-color: rgba(245, 50, 179, 0.5);
  transform: translateY(-3px);
}

.jackpot-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #f0c040;
  font-family: var(--font-main);
  text-shadow: 0 0 20px rgba(240, 192, 64, 0.4);
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.rtp-table th {
  background: var(--color-header);
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.rtp-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.rtp-table tr:last-child td {
  border-bottom: none;
}

.rtp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rtp-bar-fill {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-pink));
  min-width: 20px;
}

.rtp-value {
  font-weight: 700;
  color: var(--color-teal);
  font-size: 14px;
  white-space: nowrap;
}

.demo-game-frame {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.demo-frame-wrapper {
  background: var(--color-header);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 200px;
}

.demo-frame-wrapper p {
  color: var(--color-text-muted);
  font-size: 14px;
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--color-text);
  min-width: 180px;
}

.download-btn:hover {
  border-color: var(--color-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.download-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(33, 209, 180, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-teal);
  fill: none;
}

.download-btn-text small {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
}

.download-btn-text strong {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
}

.screenshots-slider {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.screenshots-slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.official-link-block {
  background: linear-gradient(
    135deg,
    rgba(33, 209, 180, 0.1),
    rgba(245, 50, 179, 0.08)
  );
  border: 1px solid rgba(33, 209, 180, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.official-link-block h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.official-link-block p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.content-body {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 15px;
}

.content-body h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.content-body h3 {
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}

.content-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-teal);
  margin: 20px 0 8px;
}

.content-body p {
  margin-bottom: 14px;
  color: var(--color-text-muted);
}

.content-body ul,
.content-body ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.content-body li {
  margin-bottom: 6px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.content-body ul li::marker {
  color: var(--color-teal);
}

.content-body ol li::marker {
  color: var(--color-pink);
  font-weight: 700;
}

.content-body a {
  color: var(--color-teal);
  text-decoration: underline;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.content-body table th {
  background: var(--color-header);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.content-body table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-muted);
}

.content-body strong {
  color: #fff;
  font-weight: 600;
}

.content-body blockquote {
  border-left: 3px solid var(--color-teal);
  padding: 12px 18px;
  background: rgba(33, 209, 180, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.technical-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;
}

.technical-content h1 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
  color: #fff;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(33, 209, 180, 0.12);
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(33, 209, 180, 0.3);
}

.badge-pink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 50, 179, 0.12);
  color: var(--color-pink);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(245, 50, 179, 0.3);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mt-2 {
  margin-top: 8px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--color-text-muted);
}
.text-pink {
  color: var(--color-pink);
}
.text-teal {
  color: var(--color-teal);
}

.d-none {
  display: none;
}

.wp-x8f2k1 {
  display: none;
}
.wp-post-meta-5g2j {
  visibility: hidden;
  height: 0;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-header);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
  }

  .burger {
    display: flex;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .header-online {
    display: none;
  }

  .hero {
    min-height: 360px;
  }

  .winners-table {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .jackpots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-links {
    justify-content: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .bottom-widget {
    flex-direction: column;
    text-align: center;
    padding: 14px;
  }

  .slot-machine {
    gap: 6px;
  }

  .slot-reel {
    width: 64px;
    height: 80px;
    font-size: 36px;
  }

  .download-btns {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .promo-code-value {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .jackpots-grid {
    grid-template-columns: 1fr;
  }
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--xs {
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 6px;
}

.hero--slider {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero--slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.hero--slider .slider-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero--slider .slider-nav {
  top: auto;
  bottom: 20px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  z-index: 10;
}

.hero-h1-alt {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-block;
}

.dot.active {
  background: var(--color-teal);
  width: 24px;
  border-radius: 5px;
}

.tech-hero {
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0 28px;
}

.tech-h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
}

.mirror-link-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 209, 180, 0.1);
  border: 1px solid rgba(33, 209, 180, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.mirror-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

.mirror-url-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-header);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin: 16px 0;
}

.mirror-url {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal);
}

.mirror-link-block p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 16px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.bonus-card-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  font-family: var(--font-main);
  margin-bottom: 6px;
}

.bonus-card-amount {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-main);
  margin-bottom: 8px;
}

.bonus-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.bonus-card--accent {
  border-color: rgba(245, 50, 179, 0.4);
  background: linear-gradient(
    135deg,
    rgba(245, 50, 179, 0.08),
    var(--color-card)
  );
}

.screenshots-slider {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.screenshots-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screenshot-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.screenshot-item span {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}

.slot-balance {
  font-size: 16px;
  font-weight: 700;
  color: #f0c040;
  font-family: var(--font-main);
  margin: 12px 0;
}

.slot-balance span {
  color: var(--color-teal);
}

.jackpot-provider {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.jackpot-card--mega {
  border-color: rgba(240, 192, 64, 0.5);
  background: linear-gradient(
    135deg,
    rgba(240, 192, 64, 0.05),
    var(--color-card)
  );
}

.jackpot-card--major {
  border-color: rgba(245, 50, 179, 0.4);
}

.jackpot-card .btn {
  margin-top: 12px;
}

.rtp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-main);
}

.rtp-high {
  background: rgba(33, 209, 180, 0.15);
  color: var(--color-teal);
}

.rtp-mid {
  background: rgba(245, 50, 179, 0.12);
  color: var(--color-pink);
}

.demo-game-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

@media (max-width: 768px) {
  .screenshots-track {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .mirror-url-box {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .content-body {
    overflow-x: hidden;
  }
  .content-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-body {
    padding: 20px 16px;
  }
  .comparison-table-wrap {
    max-width: calc(100vw - 40px);
  }
  .promo-block {
    padding: 20px 16px;
  }
  .promo-code-display {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 16px;
  }
  .promo-code-text {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .get-bonus-block {
    padding: 24px 16px;
  }
  .author-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .wrapper > * {
    min-width: 0;
    overflow-x: hidden;
  }
  .hero--slider {
    min-height: 360px;
  }
  .hero--slider .slider-slide {
    min-height: 360px;
    flex: 0 0 100vw;
    max-width: 100vw;
  }
  .header-logo img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero--slider {
    min-height: 300px;
  }
  .hero--slider .slider-slide {
    min-height: 300px;
  }
  .header-logo img {
    height: 32px;
  }
}
