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

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

:root {
  --c-bg: #1d1f2b;
  --c-header: #282c38;
  --c-btn-dark: #262c3b;
  --c-btn-gold: #fab308;
  --c-text: #e8eaf0;
  --c-text-muted: #9da3b8;
  --c-border: #353a4e;
  --c-card: #222638;
  --c-card-hover: #2a2f45;
  --c-gold: #fab308;
  --c-gold-light: #ffc832;
  --c-success: #2ecc71;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 20px rgba(250, 179, 8, 0.25);
  --font-main: "Roboto", "Open Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-gold-light);
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.15rem;
}
p {
  margin-bottom: 0.85rem;
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
}
li {
  margin-bottom: 0.35rem;
}

.xg7k2 {
  display: none;
}
.wp-block-group {
  display: block;
}
.elementor-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 7px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s,
    opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active {
  transform: scale(0.97);
}
.btn-dark {
  background: var(--c-btn-dark);
  color: #e8eaf0;
  border: 1px solid var(--c-border);
}
.btn-dark:hover {
  background: #313754;
  color: #fff;
}
.btn-gold {
  background: var(--c-btn-gold);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(250, 179, 8, 0.35);
}
.btn-gold:hover {
  background: var(--c-gold-light);
  box-shadow: 0 4px 20px rgba(250, 179, 8, 0.5);
  transform: translateY(-1px);
  color: #111;
}
.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
}
.btn-outline:hover {
  background: var(--c-gold);
  color: #1a1a1a;
}
.btn-lg {
  padding: 13px 30px;
  font-size: 1rem;
  border-radius: 9px;
}
.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.section {
  padding: 56px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title span {
  display: inline-block;
  position: relative;
  padding-bottom: 0.4rem;
}
.section-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 6px var(--c-success);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.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-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 16px 16px;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--c-text-muted);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}
.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 31, 43, 0.92) 40%,
    rgba(29, 31, 43, 0.55)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 179, 8, 0.15);
  border: 1px solid rgba(250, 179, 8, 0.35);
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  text-balance: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-gold);
}
.hero p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 1.3rem;
  color: var(--c-gold);
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.breadcrumbs-wrap {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--c-gold);
}
.breadcrumbs .sep {
  color: var(--c-border);
}
.breadcrumbs .current {
  color: var(--c-gold);
  font-weight: 500;
}

.mirrors-block {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0 8px;
  box-shadow: var(--shadow);
}
.mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.mirrors-header h2 {
  margin: 0;
  font-size: 1.3rem;
}
.mirrors-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-success);
  background: rgba(46, 204, 113, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46, 204, 113, 0.25);
}
.mirrors-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-success);
  animation: pulse 1.5s infinite;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead th {
  background: #1d1f2b;
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
tbody tr:last-child {
  border-bottom: none;
}
td {
  padding: 11px 14px;
  vertical-align: middle;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--c-success);
  font-weight: 500;
  font-size: 0.82rem;
}
.mirror-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-success);
  display: inline-block;
}
.mirror-url {
  color: var(--c-text);
  font-weight: 500;
  font-family: monospace;
  font-size: 0.85rem;
}
.mirror-link {
  color: var(--c-gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.mirror-link:hover {
  text-decoration: underline;
}

.tournaments-grid {
  display: flex;
  gap: 20px;
}
.tournaments-mobile {
  display: none;
}
.tournaments-mobile .slider-wrap {
  overflow: hidden;
  width: 100%;
}
.tournaments-mobile .slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.tournaments-mobile .tournament-card {
  min-width: 280px !important;
  flex: 0 0 280px !important;
}
.tournament-card {
  flex: 1;
  min-width: 0;
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
}
.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.t-prize {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-gold);
}
.t-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.t-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1;
}
.t-timer {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.t-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--c-bg);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 46px;
}
.t-timer-unit strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.t-timer-unit span {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.t-sep {
  color: var(--c-gold);
  font-size: 1.2rem;
  font-weight: 700;
  align-self: center;
  padding-bottom: 8px;
}

.games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.game-card {
  width: calc(16.666% - 14px);
  min-width: 140px;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.game-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.game-card-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.game-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.game-card-provider {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}

.slot-machine {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.slot-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}
.reel {
  width: 80px;
  height: 90px;
  background: var(--c-bg);
  border-radius: 10px;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.reel.spinning {
  border-color: var(--c-gold);
  animation: reelSpin 0.12s steps(1) infinite;
}
@keyframes reelSpin {
  0% {
    filter: blur(1px) brightness(1.1);
  }
  50% {
    filter: blur(2px) brightness(0.9);
  }
  100% {
    filter: blur(1px) brightness(1.1);
  }
}
.reel-sep {
  font-size: 1.5rem;
  color: var(--c-border);
}
.slot-result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.slot-win {
  color: var(--c-gold);
  font-size: 1.15rem;
  font-weight: 700;
  animation: fadeInUp 0.4s ease;
}
.slot-lose {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slot-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

.review-block {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0 8px;
  border: 1px solid var(--c-border);
}
.author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--c-border);
  margin-top: 24px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}
.author-info span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.author-info a {
  color: var(--c-gold);
}

.review-content h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.review-content h3 {
  font-size: 1.15rem;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--c-gold);
}
.review-content p {
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-content ul,
.review-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.review-content li {
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.review-content table th,
.review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.review-content table th {
  background: #1d1f2b;
  color: var(--c-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.review-content a {
  color: var(--c-gold);
}
.review-content a:hover {
  text-decoration: underline;
}
.review-content blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 10px 16px;
  margin: 1rem 0;
  color: var(--c-text-muted);
  font-style: italic;
  background: rgba(250, 179, 8, 0.05);
  border-radius: 0 8px 8px 0;
}
.review-content strong {
  color: #fff;
}
.review-content em {
  color: var(--c-gold-light);
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5rem 0;
}

.reviews-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.review-card {
  flex: 1;
  min-width: 240px;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.rc-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.rc-date {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-top: 1px;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.rc-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.review-form-wrap {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--c-border);
  max-width: 560px;
}
.review-form-wrap h3 {
  margin-bottom: 20px;
  color: #fff;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: 7px;
  padding: 10px 14px;
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-success {
  display: none;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--c-success);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}
.form-success.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.footer-top {
  display: flex;
  gap: 48px;
  padding: 48px 0 32px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 0 0 220px;
}
.footer-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-col {
  flex: 1;
  min-width: 130px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--c-gold);
}
.footer-providers {
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.footer-providers-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.provider-logos,
.payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.provider-logo,
.payment-logo {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 600px;
}
.footer-copy a {
  color: var(--c-text-muted);
}
.footer-copy a:hover {
  color: var(--c-gold);
}
.footer-license {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
  text-align: right;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1a1d2b 0%, #242840 100%);
  border-top: 2px solid var(--c-gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  animation: slideUp 0.6s ease 0.8s forwards;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
.widget-text {
  display: flex;
  flex-direction: column;
}
.widget-text strong {
  color: var(--c-gold);
  font-size: 0.95rem;
  font-weight: 700;
}
.widget-text span {
  color: var(--c-text-muted);
  font-size: 0.78rem;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 2px 6px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}
.widget-link {
  text-decoration: none;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: var(--c-btn-gold);
  color: #1a1a1a;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 10px;
}
.faq-question strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  flex: 1;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #1a1a1a;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 20px 16px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.wp-block {
  display: inline;
}
.elementor-widget-container .inner {
  display: contents;
}
#wp-toolbar {
  display: none !important;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}
.nonce-xg7k2 {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.body-pad {
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .games-grid .game-card {
    width: calc(33.333% - 12px);
  }
  .footer-top {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .section {
    padding: 36px 0;
  }
  .hero {
    min-height: 320px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-stats {
    gap: 16px;
  }
  .tournaments-grid {
    display: none;
  }
  .tournaments-mobile {
    display: block;
  }
  .games-grid .game-card {
    width: calc(50% - 8px);
  }
  .reviews-grid .review-card {
    min-width: 260px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-license {
    text-align: left;
  }
  .mirrors-block {
    margin: 0;
    padding: 20px 12px;
  }
  .review-block {
    margin: 0;
    padding: 20px 16px;
  }
  .slot-machine {
    padding: 24px 16px;
  }
  .reel {
    width: 68px;
    height: 78px;
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .games-grid .game-card {
    width: calc(50% - 8px);
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .bottom-widget {
    flex-direction: column;
    text-align: center;
    padding: 14px 12px;
  }
}
