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

:root {
  --color-bg: #140f2f;
  --color-bg-alt: #1c1647;
  --color-bg-card: #1e1850;
  --color-header: #140f2f;
  --color-pink: #ff00e5;
  --color-green: #00ed6d;
  --color-text: #e8e4ff;
  --color-text-muted: #a09ccc;
  --color-border: rgba(255, 0, 229, 0.2);
  --color-border-green: rgba(0, 237, 109, 0.3);
  --font: "Inter", Arial, Helvetica, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --trans: 0.25s ease;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-pink);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--color-green);
}
ul,
ol {
  padding-left: 1.4em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.wp-content-loader {
  display: none;
}
.wp-block-spacer {
  height: 0;
  visibility: hidden;
}
#wpadminbar {
  display: none !important;
}
.elementor-invisible {
  visibility: hidden;
}

.x9a2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.b7f3q {
  font-size: 0;
  line-height: 0;
}
.zt4r1 {
  pointer-events: none;
  user-select: none;
  opacity: 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    filter var(--trans);
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
}

.btn--pink {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 229, 0.4);
}
.btn--green {
  background: var(--color-green);
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(0, 237, 109, 0.35);
}
.btn--outline-pink {
  background: transparent;
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
}
.btn--outline-pink:hover {
  background: var(--color-pink);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.header-logo img {
  height: 80px;
  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: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--trans),
    color var(--trans);
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(255, 0, 229, 0.12);
  color: var(--color-pink);
}

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

.header-online {
  font-size: 12px;
  color: var(--color-green);
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-online::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 237, 109, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 237, 109, 0);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--trans);
}
.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-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1240 0%, #0d0926 100%);
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-slide-content p {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}
.hero-dot.active {
  background: var(--color-pink);
  width: 24px;
  border-radius: 4px;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 0, 229, 0.2);
  border: 1px solid var(--color-pink);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--trans);
}
.hero-prev:hover,
.hero-next:hover {
  background: var(--color-pink);
}
.hero-prev {
  left: 16px;
}
.hero-next {
  right: 16px;
}

.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumbs a {
  color: var(--color-text-muted);
}
.breadcrumbs a:hover {
  color: var(--color-pink);
}
.breadcrumbs span {
  color: var(--color-text);
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-green));
  border-radius: 2px;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition:
    border-color var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
}
.card:hover {
  border-color: rgba(255, 0, 229, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 0, 229, 0.12);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.info-table th {
  background: rgba(255, 0, 229, 0.08);
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  width: 40%;
}
.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,
.info-table tr:hover th {
  background: rgba(255, 255, 255, 0.03);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: rgba(255, 0, 229, 0.12);
  color: #fff;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.mirror-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}
.mirror-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.mirror-table th,
.mirror-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.mirror-table th {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 13px;
}
.mirror-table td {
  color: var(--color-text);
}
.mirror-table a {
  color: var(--color-green);
  font-weight: 600;
}
.mirror-date {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.badge-active {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(0, 237, 109, 0.15);
  color: var(--color-green);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tournament-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-green));
}
.tournament-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.tournament-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.tournament-prize {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 8px;
}
.tournament-timer {
  font-size: 13px;
  color: var(--color-text-muted);
}
.tournament-timer span {
  color: var(--color-pink);
  font-weight: 700;
  font-size: 15px;
}

.video-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding-bottom: 12px;
}
.video-title {
  padding: 20px 20px 12px;
  font-size: 18px;
  font-weight: 600;
}
.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.slot-game {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.slot-game h3 {
  margin-bottom: 16px;
  font-size: 18px;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.reel {
  width: 72px;
  height: 72px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: transform 0.1s;
  overflow: hidden;
}
.reel.spinning {
  animation: reelSpin 0.15s linear infinite;
}
@keyframes reelSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.slot-result {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.slot-result-text {
  display: none;
}
.slot-result-text.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}
.win-text {
  color: var(--color-green);
  font-weight: 700;
  font-size: 18px;
}
.lose-text {
  color: var(--color-pink);
  font-size: 15px;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 15px;
}
.review-stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 16px;
  height: 16px;
  fill: #ffd700;
}
.review-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
}
.review-form h3 {
  margin-bottom: 20px;
  font-size: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.form-input,
.form-textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--trans);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 229, 0.1);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  display: none;
  padding: 12px 16px;
  background: rgba(0, 237, 109, 0.12);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-sm);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 500;
}
.form-success.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

.site-footer {
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}
.footer-logo img {
  height: 60px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(4000%)
    hue-rotate(300deg) brightness(95%) contrast(105%);
}
.footer-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 7px;
  transition: color var(--trans);
}
.footer-col a:hover {
  color: var(--color-pink);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.provider-badge {
  background: rgba(255, 0, 229, 0.08);
  border: 1px solid rgba(255, 0, 229, 0.18);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--color-text-muted);
}

.widget-cta {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.widget-cta-inner {
  background: linear-gradient(90deg, var(--color-bg-card), #1a1240);
  border: 1px solid var(--color-green);
  border-radius: 40px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0, 237, 109, 0.25);
  pointer-events: auto;
  max-width: 560px;
  width: calc(100% - 32px);
}
.widget-cta-text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  flex: 1;
}
.widget-cta-text strong {
  color: var(--color-green);
}
.widget-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 0 4px;
  line-height: 1;
  transition: color var(--trans);
}
.widget-close:hover {
  color: #fff;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 0, 229, 0.15);
}
.bonus-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-green));
}
.bonus-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.bonus-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.bonus-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.bonus-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 16px;
}

.promo-accent {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 229, 0.12),
    rgba(0, 237, 109, 0.08)
  );
  border: 1px solid var(--color-green);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin: 32px 0;
}
.promo-accent h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg);
  border: 2px dashed var(--color-green);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  margin: 16px auto;
  cursor: pointer;
}
.promo-code-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: 3px;
}
.promo-copy-hint {
  font-size: 12px;
  color: var(--color-text-muted);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.advantage-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.advantage-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.advantage-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.advantage-item p {
  font-size: 12px;
  color: var(--color-text-muted);
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 24px;
  text-decoration: none !important;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition:
    border-color var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
}
.download-btn:hover {
  border-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 237, 109, 0.15);
  color: var(--color-green);
}
.download-btn svg {
  width: 24px;
  height: 24px;
}

.author-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-pink);
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.author-bio {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-text-muted);
  transition: all var(--trans);
}
.author-link:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  font-size: 15px;
  transition: color var(--trans);
}
.faq-q:hover {
  color: var(--color-pink);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 16px;
}

.reg-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.reg-method-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.reg-method-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.reg-method-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.reg-method-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.official-link-block {
  background: linear-gradient(
    135deg,
    rgba(0, 237, 109, 0.1),
    rgba(255, 0, 229, 0.08)
  );
  border: 1px solid var(--color-green);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.official-link-block h3 {
  margin-bottom: 12px;
}
.official-link-block p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.security-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.security-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.security-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--trans),
    border-color var(--trans);
}
.slot-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-pink);
}
.slot-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.slot-card-body {
  padding: 12px;
}
.slot-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.slot-card-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}
.slot-card-rtp {
  color: var(--color-green);
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.feature-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.rtp-table th,
.rtp-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.rtp-table th {
  background: rgba(255, 0, 229, 0.1);
  color: #fff;
  font-weight: 600;
}
.rtp-table td {
  color: var(--color-text);
}
.rtp-table tr:last-child td {
  border-bottom: none;
}
.rtp-val {
  color: var(--color-green);
  font-weight: 700;
}

.hero-static {
  background: linear-gradient(135deg, #1a1240 0%, #0d0926 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/banner.jpg") center/cover no-repeat;
  opacity: 0.15;
}
.hero-static-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-static-content h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}
.hero-static-content p {
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.content-text {
  line-height: 1.75;
}
.content-text h2 {
  font-size: 22px;
  margin: 28px 0 14px;
  color: #fff;
}
.content-text h3 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--color-text);
}
.content-text p {
  margin-bottom: 14px;
  color: var(--color-text);
}
.content-text ul,
.content-text ol {
  margin: 12px 0 16px 1.4em;
}
.content-text li {
  margin-bottom: 6px;
  color: var(--color-text);
}
.content-text a {
  color: var(--color-pink);
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid var(--color-border);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-text table th,
.content-text table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
  font-size: 14px;
}
.content-text table th {
  background: rgba(255, 0, 229, 0.1);
  color: #fff;
}
.content-text blockquote {
  border-left: 3px solid var(--color-pink);
  padding: 12px 16px;
  background: rgba(255, 0, 229, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
}

.mobile-slider-wrap {
  overflow: hidden;
  position: relative;
}
.mobile-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: transform 0.4s ease;
}

.page-content-section {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .tournaments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--color-header);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    padding: 10px 14px;
    font-size: 15px;
  }
  .header-inner {
    grid-template-columns: auto auto auto;
  }
  .burger {
    display: flex;
  }
  .hero-static {
    min-height: 260px;
    padding: 40px 0;
  }
  .tournaments-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-slider-track {
    grid-template-columns: repeat(3, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .mobile-slider-track > * {
    scroll-snap-align: start;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
  .page-content-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 26px;
  }
  .hero-slide-content p {
    font-size: 15px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .download-btns {
    flex-direction: column;
  }
  .widget-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* desktop banner full width fix */
.hero-slider,
.hero-slide{
 width:100%;
}
.hero-slide>.container{
 width:100%;
 max-width:1400px;
 margin:0 auto;
}
.hero-slide-content{
 max-width:680px;
}
