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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #1f1619;
  --c-header: #1f161a;
  --c-btn-dark: #27151a;
  --c-btn-green: #aef51d;
  --c-btn-green-hover: #c5ff2e;
  --c-text: #e8e0e4;
  --c-text-muted: #9a8e94;
  --c-border: #3a2a30;
  --c-card: #251b20;
  --c-card2: #2c1f25;
  --c-accent: #aef51d;
  --c-accent2: #d4ff5e;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-accent2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
  color: var(--c-text);
}
strong,
b {
  color: #fff;
}

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

.x7f2a {
  display: none;
}
.wp4811 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.qr19z {
  height: 0;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  gap: 0.4rem;
}
.btn--dark {
  background: var(--c-btn-dark);
  color: #fff;
  border: 1px solid #3a2a30;
}
.btn--dark:hover {
  background: #3a2230;
  color: #fff;
}
.btn--green {
  background: var(--c-btn-green);
  color: #1a1a1a;
  font-weight: 700;
}
.btn--green:hover {
  background: var(--c-btn-green-hover);
  color: #1a1a1a;
}
.btn--lg {
  padding: 0.75rem 1.8rem;
  font-size: 1.05rem;
}
.btn--xl {
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
}
.btn--block {
  width: 100%;
  text-align: center;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-btn-green);
  color: var(--c-btn-green);
}
.btn--outline:hover {
  background: var(--c-btn-green);
  color: #1a1a1a;
}

header.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}
.header-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(4000%)
    hue-rotate(300deg) brightness(95%) contrast(105%);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-accent);
  background: rgba(174, 245, 29, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-online {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 0.8rem 0;
  gap: 0.2rem;
}
.mobile-nav a {
  color: var(--c-text);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  color: var(--c-accent);
  background: rgba(174, 245, 29, 0.08);
}
.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 22, 25, 0.95) 40%,
    rgba(31, 22, 25, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 3rem 0;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  color: var(--c-text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(174, 245, 29, 0.15);
  border: 1px solid rgba(174, 245, 29, 0.3);
  color: var(--c-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
  position: relative;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 22, 25, 0.92) 40%,
    rgba(31, 22, 25, 0.35) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 600px;
}
.slide-content h1,
.slide-content h2 {
  color: #fff;
  margin-bottom: 0.8rem;
}
.slide-content p {
  color: var(--c-text);
  margin-bottom: 1.4rem;
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.slider-dot.active {
  background: var(--c-accent);
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(31, 22, 25, 0.6);
  border: 1px solid var(--c-border);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1.1rem;
}
.slider-prev {
  left: 12px;
}
.slider-next {
  right: 12px;
}
.slider-prev:hover,
.slider-next:hover {
  background: rgba(174, 245, 29, 0.2);
  border-color: var(--c-accent);
}

.section {
  padding: 2.5rem 0;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

.block-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.block-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}
.block-card--accent {
  border-color: rgba(174, 245, 29, 0.25);
  background: linear-gradient(
    135deg,
    var(--c-card) 0%,
    rgba(174, 245, 29, 0.04) 100%
  );
}

.toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem;
}
.toc-list li {
  margin: 0;
}
.toc-list a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  padding: 0.25rem 0.4rem;
  display: block;
  border-radius: 4px;
  transition: all 0.2s;
}
.toc-list a:hover {
  color: var(--c-accent);
  background: rgba(174, 245, 29, 0.07);
}
.toc-list a::before {
  content: "#";
  color: var(--c-accent);
  margin-right: 0.3rem;
  font-weight: 600;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.info-table th,
.info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.info-table th {
  background: var(--c-card2);
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:hover td {
  background: rgba(174, 245, 29, 0.04);
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-size: 0.87rem;
  white-space: nowrap;
  width: 40%;
}
.info-table td:last-child {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

.mirror-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.mirror-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.mirror-time {
  font-size: 0.8rem;
  color: var(--c-accent);
  background: rgba(174, 245, 29, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-family: monospace;
}
.mirror-table {
  width: 100%;
  border-collapse: collapse;
}
.mirror-table th,
.mirror-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.mirror-table th {
  background: var(--c-card2);
  color: var(--c-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mirror-table td {
  font-size: 0.9rem;
}
.mirror-table tr:last-child td {
  border-bottom: none;
}
.mirror-table .badge-active {
  background: rgba(174, 245, 29, 0.15);
  color: var(--c-accent);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.video-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.video-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(174, 245, 29, 0.3);
}
.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.game-card-body {
  padding: 0.8rem;
}
.game-card-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.game-card-provider {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 0.6rem;
}
.game-card .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.2s;
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slot-machine {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.reel {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--c-card2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.15s;
  user-select: none;
}
.reel.spinning {
  animation: spin 0.1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotateX(0);
  }
  to {
    transform: rotateX(360deg);
  }
}
.slot-result {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}
.slot-win {
  color: var(--c-accent);
  font-size: 1.1rem;
  font-weight: 700;
  animation: fadeIn 0.3s;
}
.slot-lose {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-card2);
  border: 2px solid var(--c-border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-accent);
  font-weight: 700;
}
.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}
.review-stars {
  color: #ffd700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.55;
}
.review-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-form h3 {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-accent);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  background: rgba(174, 245, 29, 0.12);
  border: 1px solid rgba(174, 245, 29, 0.3);
  color: var(--c-accent);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  display: none;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.bonus-card-header {
  background: linear-gradient(135deg, #2c1f25, #3a2a30);
  padding: 1.2rem;
  text-align: center;
}
.bonus-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.bonus-card-title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.bonus-card-value {
  color: var(--c-accent);
  font-size: 1.5rem;
  font-weight: 800;
}
.bonus-card-body {
  padding: 1rem;
}
.bonus-card-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0.8rem;
}
.bonus-card .btn {
  width: 100%;
}
.bonus-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--c-accent);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.compare-table th {
  background: var(--c-card2);
  color: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 2px solid var(--c-border);
}
.compare-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
  vertical-align: middle;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: rgba(174, 245, 29, 0.04);
}
.compare-table .c-check {
  color: var(--c-accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.compare-table .c-no {
  color: #ef4444;
  font-weight: 700;
}

.promo-block {
  background: linear-gradient(
    135deg,
    #2c1f25 0%,
    rgba(174, 245, 29, 0.08) 100%
  );
  border: 2px solid rgba(174, 245, 29, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.promo-block::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(174, 245, 29, 0.07);
  border-radius: 50%;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--c-card);
  border: 2px dashed rgba(174, 245, 29, 0.4);
  border-radius: var(--radius);
  padding: 0.8rem 1.4rem;
  margin: 1rem 0;
  cursor: pointer;
  transition: all 0.2s;
}
.promo-code-box:hover {
  border-color: var(--c-accent);
  background: rgba(174, 245, 29, 0.05);
}
.promo-code-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  font-family: monospace;
}
.promo-copy-btn {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  background: var(--c-card2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  color: var(--c-text);
  transition: all 0.2s;
}
.promo-copy-btn:hover {
  color: var(--c-accent);
}
.promo-copy-btn.copied {
  color: var(--c-accent);
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reg-method {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s;
}
.reg-method:hover {
  border-color: rgba(174, 245, 29, 0.3);
  transform: translateY(-2px);
}
.reg-method-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.reg-method-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.reg-method-desc {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.faq-list {
  margin-bottom: 1.5rem;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  gap: 0.8rem;
  transition: background 0.2s;
  list-style: none;
}
.faq-question:hover {
  background: rgba(174, 245, 29, 0.05);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(174, 245, 29, 0.12);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  color: var(--c-text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  display: block;
}

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(174, 245, 29, 0.2);
}
.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.author-bio {
  font-size: 0.87rem;
  color: var(--c-text);
  margin-bottom: 0.8rem;
}
.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: 0.25rem 0.6rem;
  background: var(--c-card2);
  border-radius: 4px;
  transition: color 0.2s;
}
.author-links a:hover {
  color: var(--c-accent);
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.provider-chip {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  transition: all 0.2s;
  cursor: default;
}
.provider-chip:hover {
  border-color: rgba(174, 245, 29, 0.3);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: rgba(174, 245, 29, 0.3);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.feature-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.feature-desc {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.alt-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  transition: all 0.2s;
}
.alt-card:hover {
  border-color: rgba(174, 245, 29, 0.3);
  transform: translateY(-2px);
}
.alt-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.alt-card-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 0.8rem;
}
.alt-card .btn {
  width: 100%;
  font-size: 0.8rem;
}

.reg-bonus-block {
  background: linear-gradient(
    135deg,
    rgba(174, 245, 29, 0.08) 0%,
    var(--c-card) 100%
  );
  border: 1px solid rgba(174, 245, 29, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.reg-bonus-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.reg-bonus-label {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.reg-bonus-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 1.2rem;
}

.content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.content-block h2 {
  font-size: 1.3rem;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-border);
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.content-block p {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.content-block ul,
.content-block ol {
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}
.content-block li {
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.content-block a {
  color: var(--c-accent);
  text-decoration: underline;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  overflow-x: auto;
  display: block;
}
.content-block table th,
.content-block table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--c-border);
  text-align: left;
  font-size: 0.88rem;
}
.content-block table th {
  background: var(--c-card2);
  color: #fff;
}
.content-block strong {
  color: #fff;
}
.content-block em {
  color: var(--c-text-muted);
  font-style: italic;
}
.content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 0.6rem 1rem;
  background: rgba(174, 245, 29, 0.04);
  margin: 1rem 0;
  font-style: italic;
  color: var(--c-text-muted);
}

footer.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
  padding: 2rem 0 1rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(4000%)
    hue-rotate(300deg) brightness(95%) contrast(105%);
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 380px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-bottom: 0.8rem;
}
.footer-nav a {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--c-accent);
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
}
.footer-legal-nav a {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  transition: color 0.2s;
  opacity: 0.7;
}
.footer-legal-nav a:hover {
  color: var(--c-accent);
  opacity: 1;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-payment-chip {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  font-weight: 500;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.footer-provider-chip {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  color: var(--c-text-muted);
}
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--c-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 0.3rem;
  color: var(--c-text-muted);
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--c-header);
  border-top: 1px solid rgba(174, 245, 29, 0.2);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.widget-text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  flex: 1;
  min-width: 0;
}
.widget-text strong {
  color: #fff;
  display: block;
  font-size: 0.88rem;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.2rem 0.4rem;
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}

.pb-widget {
  padding-bottom: 60px;
}

@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 320px;
  }
  .hero-content {
    padding: 2rem 0;
  }
  .slider-wrap {
    min-height: 320px;
  }
  .slide {
    min-height: 320px;
  }
  .slide-content {
    padding: 2rem 0;
  }
  .reg-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .author-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .author-photo {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-cards {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .reel {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  .header-inner {
    gap: 0.5rem;
  }
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.wp-block-column {
  flex: 1;
}
.has-text-align-center {
  text-align: center;
}
.wp-block-heading {
  margin-bottom: 0.5rem;
}
.elementor-section {
  width: 100%;
}
.wp-caption {
  display: inline-block;
  max-width: 100%;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.size-full {
  max-width: 100%;
  height: auto;
}

.l8f3k {
  position: relative;
  z-index: 1;
}
.r4t9m {
  display: block;
  line-height: inherit;
}
.k2n7p {
  padding: inherit;
}
.j5w1q {
  margin: auto;
}
.v0x6r {
  overflow: visible;
}
.d9h4s {
  white-space: normal;
}

@media (max-width: 600px) {
  .btn--xl {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    padding: 13px 16px;
    font-size: 0.9rem;
  }
}
