:root {
  --color-bg: #15021a;
  --color-header: #1e0226;
  --color-btn-login: #f532b3;
  --color-btn-reg: #21d1b4;
  --color-text: #f0e6f6;
  --color-text-muted: #b89ec8;
  --color-border: #3a1a4a;
  --color-card: #1f0a2c;
  --color-card2: #250d33;
  --color-accent: #f532b3;
  --color-accent2: #21d1b4;
  --radius: 12px;
  --radius-sm: 8px;
  --font-main: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--color-btn-login);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-btn-reg);
}

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

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

p {
  margin-bottom: 1em;
}
ul {
  padding-left: 1.4em;
}
li {
  margin-bottom: 0.4em;
}

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

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

.box {
  border-radius: var(--radius);
  padding: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(36%) sepia(91%) saturate(2066%)
    hue-rotate(301deg) brightness(101%) contrast(93%);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

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

.header-nav a:hover {
  background: rgba(245, 50, 179, 0.15);
  color: var(--color-btn-login);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.online-count {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-count::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21d1b4;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 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);
}

.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
}

.btn--login {
  background: var(--color-btn-login);
  color: #fff;
}
.btn--reg {
  background: var(--color-btn-reg);
  color: #0a1f1c;
}
.btn--bonus {
  background: linear-gradient(135deg, #f532b3, #21d1b4);
  color: #fff;
}
.btn--lg {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
}
.btn--xl {
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 10px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 420px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  align-items: center;
  background: linear-gradient(120deg, #1e0226 0%, #15021a 50%, #0d1a22 100%);
}

.hero-slide.active {
  display: flex;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  max-width: 700px;
}

.hero-slide-content p {
  font-size: clamp(15px, 2vw, 19px);
  max-width: 560px;
  color: var(--color-text);
  margin-bottom: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(33, 209, 180, 0.15);
  border: 1px solid var(--color-btn-reg);
  color: var(--color-btn-reg);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
}

.slider-dot.active {
  background: var(--color-btn-reg);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}

.slider-arrow:hover {
  background: rgba(245, 50, 179, 0.3);
}
.slider-arrow.prev {
  left: 16px;
}
.slider-arrow.next {
  right: 16px;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.section-title span {
  color: var(--color-btn-login);
}

/* INFO TABLE */
.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.info-table tr:hover {
  background: rgba(245, 50, 179, 0.06);
}

.info-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 40%;
}

.info-table td:last-child {
  color: var(--color-text);
}

/* ADVANTAGES */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.adv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 50, 179, 0.15);
}

.adv-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.adv-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.adv-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: background 0.2s;
}

.winner-row:hover {
  background: var(--color-card2);
}

.winner-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-btn-login);
  min-width: 24px;
}

.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-header);
  flex-shrink: 0;
}

.winner-info {
  flex: 1;
  overflow: hidden;
}
.winner-name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-amount {
  font-size: 12px;
  color: var(--color-btn-reg);
  font-weight: 700;
}

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

.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(245, 50, 179, 0.2);
}

.bonus-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.bonus-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-card-tag {
  display: inline-block;
  background: rgba(245, 50, 179, 0.15);
  color: var(--color-btn-login);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.bonus-card h3 {
  font-size: 20px;
  color: var(--color-btn-reg);
  font-weight: 800;
}
.bonus-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}
.bonus-card .btn {
  margin-top: auto;
  width: 100%;
}

/* SLOT MACHINE */
.slot-machine {
  background: var(--color-card2);
  border: 2px solid var(--color-btn-login);
  border-radius: var(--radius);
  padding: 32px 24px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 40px rgba(245, 50, 179, 0.2);
}

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

.slot-reel {
  width: 80px;
  height: 90px;
  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: 44px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}

.slot-reel.spinning {
  border-color: var(--color-btn-login);
  animation: reelSpin 0.1s linear infinite;
}
@keyframes reelSpin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

.slot-win-msg {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(33, 209, 180, 0.15);
  border: 1px solid var(--color-btn-reg);
  border-radius: var(--radius-sm);
  color: var(--color-btn-reg);
  font-weight: 700;
  font-size: 16px;
}

.slot-win-msg.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}
.slot-lose-msg {
  display: none;
  margin-top: 16px;
  padding: 12px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.slot-lose-msg.visible {
  display: block;
}

/* REVIEWS */
.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);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-header);
}
.review-author {
  font-weight: 700;
  font-size: 15px;
}
.review-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 540px;
}

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

.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);
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-btn-login);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(33, 209, 180, 0.15);
  border: 1px solid var(--color-btn-reg);
  border-radius: var(--radius-sm);
  color: var(--color-btn-reg);
  font-weight: 600;
  margin-top: 12px;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* CONTENT BLOCK */
.content-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.content-block h2 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 28px;
  color: var(--color-btn-reg);
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 22px;
  color: #fff;
}
.content-block p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
  padding-left: 1.5em;
  margin-bottom: 14px;
}
.content-block li {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 6px;
}
.content-block a {
  color: var(--color-btn-login);
}
.content-block a:hover {
  color: var(--color-btn-reg);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-block table td,
.content-block table th {
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.content-block table th {
  background: var(--color-header);
  font-weight: 700;
}
.content-block table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

/* AUTHOR */
.author-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.author-info {
  flex: 1;
}
.author-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.author-role {
  font-size: 13px;
  color: var(--color-btn-login);
  margin-bottom: 10px;
  font-weight: 600;
}
.author-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 50, 179, 0.1);
  border: 1px solid rgba(245, 50, 179, 0.3);
  color: var(--color-btn-login);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}
.author-socials a:hover {
  background: rgba(245, 50, 179, 0.25);
  color: var(--color-btn-login);
}

/* FAQ */
.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-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-btn-login);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

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

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* FOOTER */
.site-footer {
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 20px;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--color-text);
  font-size: 13px;
  padding: 3px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-btn-login);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-logo-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* WIDGET */
.cta-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1e0226 0%, #250d33 100%);
  border-top: 2px solid var(--color-btn-reg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(33, 209, 180, 0.15);
}

.widget-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-bonus {
  color: var(--color-btn-reg);
}

.widget-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.widget-close:hover {
  color: #fff;
}

/* PROMO CODE */
.promo-block {
  background: linear-gradient(135deg, #1e0226, #250d33);
  border: 2px solid var(--color-btn-reg);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-block::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(33, 209, 180, 0.06);
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-header);
  border: 2px dashed var(--color-btn-reg);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  margin: 16px 0;
}

.promo-code-text {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-main);
  color: var(--color-btn-reg);
  letter-spacing: 3px;
}

.promo-copy-btn {
  background: var(--color-btn-reg);
  border: none;
  color: #0a1f1c;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s;
}
.promo-copy-btn:hover {
  filter: brightness(1.1);
}

/* DOWNLOAD BUTTONS */
.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 22px;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.dl-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-btn-reg);
  box-shadow: 0 6px 20px rgba(33, 209, 180, 0.2);
  color: #fff;
}
.dl-btn-icon {
  font-size: 26px;
}
.dl-btn-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

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

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  background: var(--color-header);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-btn-login);
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.comparison-table tr:hover td {
  background: rgba(245, 50, 179, 0.05);
}
.comparison-table .check {
  color: var(--color-btn-reg);
  font-weight: 700;
}
.comparison-table .cross {
  color: #f87171;
}

/* PROVIDERS */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.provider-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.provider-item:hover {
  border-color: var(--color-btn-login);
  color: #fff;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-btn-login);
}
.feature-card .feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.feature-card h4 {
  font-size: 14px;
  color: #fff;
}

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

.demo-game-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1e0226, #0d1a22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 2px dashed var(--color-border);
}

.demo-icon {
  font-size: 56px;
}

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

.reg-method-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
}

.reg-method-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-btn-reg);
}
.reg-method-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.reg-method-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.reg-method-card p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* BONUS PROMO CTA */
.get-bonus-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.3);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.get-bonus-block h2 {
  font-size: clamp(22px, 3vw, 32px);
}
.get-bonus-block p {
  color: var(--color-text-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0;
}

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

.animate-fade {
  animation: fadeIn 0.5s ease both;
}

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

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

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    z-index: 999;
    align-items: flex-start;
  }

  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 14px;
    width: 100%;
  }

  .header-cta {
    gap: 6px;
  }
  .header-cta .btn {
    font-size: 12px;
    padding: 7px 12px;
  }
  .header-cta .online-count {
    display: none;
  }

  .burger {
    display: flex;
    order: -1;
  }

  .site-header {
    position: relative;
  }

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

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

  .author-card {
    flex-direction: column;
  }

  .cta-widget {
    flex-wrap: wrap;
  }
  .cta-widget .widget-text {
    font-size: 13px;
  }

  .hero-slide-content {
    padding: 40px 16px;
  }

  .slot-reel {
    width: 64px;
    height: 76px;
    font-size: 34px;
  }

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

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

@media (max-width: 480px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 36px 0;
  }
  .box {
    padding: 16px;
  }
}

.wp-block-group,
.wp-caption,
.wp-image-field {
  display: none !important;
}
.elementor-hidden-phone {
  display: none;
}
#wpadminbar {
  display: none !important;
}

.u-f7x2a {
  color: transparent;
}
.u-k9m3b {
  pointer-events: none;
}
.u-q1r8c::before {
  content: "";
  display: none;
}
.u-z5n4d {
  visibility: hidden;
  width: 0;
  height: 0;
}
.u-p2w6e {
  overflow: hidden;
  max-height: 0;
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-cta {
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .content-block {
    overflow-x: hidden;
  }
  .content-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-block {
    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;
  }
}
