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

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

:root {
  --c-bg: #0b0c15;
  --c-header: #0d101c;
  --c-btn-login: #0d5492;
  --c-btn-signup: #0d7646;
  --c-btn-login-h: #0f6ab8;
  --c-btn-signup-h: #0fa05a;
  --c-text: #e8eaf0;
  --c-text-muted: #8a8fa8;
  --c-border: #1e2235;
  --c-card: #12152a;
  --c-card2: #0f1322;
  --c-accent: #1a7fd4;
  --c-gold: #f0b429;
  --c-green: #0d7646;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-login-h);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.w-xf92a {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.flx {
  display: flex;
}
.flx-c {
  flex-direction: column;
}
.flx-ac {
  align-items: center;
}
.flx-jb {
  justify-content: space-between;
}
.flx-wrap {
  flex-wrap: wrap;
}
.gap-sm {
  gap: 8px;
}
.gap-md {
  gap: 16px;
}
.gap-lg {
  gap: 24px;
}
.gap-xl {
  gap: 32px;
}

.b3r7m {
  display: none;
}

.sec-xd {
  padding: 64px 0;
}
.sec-xd--sm {
  padding: 40px 0;
}

.ttl-xd {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.ttl-xd span {
  color: var(--c-gold);
}
.sub-xd {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.btn-x:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.btn-x:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--c-btn-login);
  color: #fff;
}
.btn-login:hover {
  background: var(--c-btn-login-h);
  color: #fff;
}
.btn-signup {
  background: var(--c-btn-signup);
  color: #fff;
}
.btn-signup:hover {
  background: var(--c-btn-signup-h);
  color: #fff;
}
.btn-gold {
  background: var(--c-gold);
  color: #111;
}
.btn-gold:hover {
  background: #e0a820;
  color: #111;
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.hdr-xd {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hdr-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.hdr-logo-txt {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.03em;
}
.hdr-logo-txt span {
  color: #fff;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  transition:
    background var(--transition),
    color var(--transition);
}
.hdr-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text);
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(13, 118, 70, 0.15);
  border: 1px solid rgba(13, 118, 70, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
}
.hdr-online-dot {
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.hdr-online strong {
  color: #2ecc71;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  border: none;
  background: transparent;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
}
.mob-menu.is-open {
  display: block;
}
.mob-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.mob-menu-nav a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  display: block;
  transition:
    background var(--transition),
    color var(--transition);
}
.mob-menu-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text);
}

.hero-xd {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/tban.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 21, 0.92) 45%,
    rgba(11, 12, 21, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 118, 70, 0.2);
  border: 1px solid rgba(13, 118, 70, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}
.hero-h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-h1 span {
  color: var(--c-gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-bonus {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 420px;
}
.hero-bonus-ico {
  font-size: 1.8rem;
}
.hero-bonus-txt {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.hero-bonus-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
}

.card-xd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card-xd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-xd2 {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}

.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tbl-xd {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.tbl-xd th {
  background: rgba(13, 84, 146, 0.25);
  color: var(--c-text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 2px solid var(--c-btn-login);
}
.tbl-xd td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
  color: var(--c-text);
  vertical-align: middle;
}
.tbl-xd tr:last-child td {
  border-bottom: none;
}
.tbl-xd tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.tbl-xd tr:hover td {
  background: rgba(13, 84, 146, 0.1);
}
.tbl-xd td:first-child {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  width: 38%;
}
.tbl-xd td b {
  color: var(--c-gold);
}
.tbl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(13, 118, 70, 0.2);
  color: #4ade80;
  border: 1px solid rgba(13, 118, 70, 0.3);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 600;
}

.mir-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.mir-time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 118, 70, 0.12);
  border: 1px solid rgba(13, 118, 70, 0.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.83rem;
}
.mir-time-ico {
  color: #4ade80;
  font-size: 1rem;
}
.mir-time strong {
  color: #4ade80;
}
.mir-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
}
.mir-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}
.mir-status--ok {
  color: #4ade80;
}
.mir-link {
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.88rem;
}
.mir-link:hover {
  text-decoration: underline;
}
.tbl-mirror th:last-child,
.tbl-mirror td:last-child {
  text-align: center;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.game-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-img-wrap img {
  transform: scale(1.06);
}
.game-provider {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--c-text-muted);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.game-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.game-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.game-type {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.game-btn {
  width: 100%;
  padding: 9px;
  text-align: center;
}

.slot-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.slot-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0;
}
.slot-reel {
  width: 80px;
  height: 90px;
  background: var(--c-header);
  border: 2px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s;
}
.slot-reel.spin {
  border-color: var(--c-gold);
  animation: reel-spin 0.15s linear infinite;
}
.slot-reel.win-reel {
  border-color: var(--c-gold);
  box-shadow:
    0 0 16px rgba(240, 180, 41, 0.5),
    inset 0 2px 8px rgba(0, 0, 0, 0.4);
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-spin-btn {
  min-width: 180px;
  font-size: 1rem;
  padding: 13px 32px;
  margin-top: 8px;
}
.slot-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.slot-result {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(13, 118, 70, 0.12);
  border: 1px solid rgba(13, 118, 70, 0.3);
  display: none;
  animation: fade-in 0.4s ease;
}
.slot-result.visible {
  display: block;
}
.slot-result.win {
  background: rgba(13, 118, 70, 0.18);
  border-color: rgba(13, 118, 70, 0.5);
}
.slot-result.lose {
  background: rgba(200, 40, 40, 0.1);
  border-color: rgba(200, 40, 40, 0.3);
}
.slot-result-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.slot-result.win .slot-result-title {
  color: #4ade80;
}
.slot-result.lose .slot-result-title {
  color: #f87171;
}
.slot-result-txt {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.slot-balance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.review-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.review-content-block h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.review-content-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-top: 22px;
  margin-bottom: 10px;
}
.review-content-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 18px;
  margin-bottom: 8px;
}
.review-content-block p {
  margin-bottom: 14px;
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.review-content-block ul,
.review-content-block ol {
  margin: 12px 0 16px 20px;
}
.review-content-block li {
  margin-bottom: 7px;
  color: var(--c-text);
  font-size: 0.92rem;
  line-height: 1.6;
}
.review-content-block a {
  color: var(--c-accent);
}
.review-content-block a:hover {
  text-decoration: underline;
}
.review-content-block strong {
  color: var(--c-gold);
  font-weight: 700;
}
.review-content-block em {
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content-block blockquote {
  border-left: 3px solid var(--c-btn-login);
  padding-left: 18px;
  margin: 16px 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.review-content-block table th {
  background: rgba(13, 84, 146, 0.25);
  color: var(--c-text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-btn-login);
}
.review-content-block table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.review-content-block table tr:last-child td {
  border-bottom: none;
}
.review-content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(13, 84, 146, 0.12);
  border: 1px solid rgba(13, 84, 146, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-btn-login);
}
.author-name {
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 3px;
}
.author-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.author-link {
  font-size: 0.8rem;
  color: var(--c-accent);
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.rev-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition);
}
.rev-card:hover {
  transform: translateY(-3px);
}
.rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rev-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-text);
}
.rev-date {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.rev-stars {
  display: flex;
  gap: 2px;
}
.rev-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.rev-text {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.form-xd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 520px;
}
.form-xd label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-xd input,
.form-xd textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-xd input:focus,
.form-xd textarea:focus {
  border-color: var(--c-btn-login);
  box-shadow: 0 0 0 3px rgba(13, 84, 146, 0.2);
}
.form-xd textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field {
  margin-bottom: 18px;
}
.form-success {
  display: none;
  background: rgba(13, 118, 70, 0.15);
  border: 1px solid rgba(13, 118, 70, 0.4);
  border-radius: 8px;
  padding: 14px 18px;
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  animation: fade-in 0.35s ease;
}
.form-success.visible {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftr-xd {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.ftr-brand p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 300px;
}
.ftr-col-ttl {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.ftr-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav a {
  font-size: 0.87rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.ftr-nav a:hover {
  color: var(--c-text);
}
.ftr-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ftr-logo-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.ftr-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}
.ftr-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr-copy {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 700px;
}
.ftr-copy a {
  color: var(--c-text-muted);
  text-decoration: underline;
}
.ftr-logo-small {
  height: 32px;
  border-radius: 5px;
}
.ftr-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--c-text-muted);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.wgt-xd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0a0d1a 0%, #0d101c 100%);
  border-top: 1px solid rgba(13, 118, 70, 0.4);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.wgt-txt {
  font-size: 0.85rem;
  color: var(--c-text);
}
.wgt-txt strong {
  color: var(--c-gold);
  font-size: 0.95rem;
}
.wgt-close {
  background: transparent;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.wgt-close:hover {
  color: var(--c-text);
}

.divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.divider-wave svg {
  display: block;
}

.badge-xd {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-blue {
  background: rgba(13, 84, 146, 0.25);
  color: #60a5fa;
  border: 1px solid rgba(13, 84, 146, 0.4);
}
.badge-green {
  background: rgba(13, 118, 70, 0.25);
  color: #4ade80;
  border: 1px solid rgba(13, 118, 70, 0.4);
}
.badge-gold {
  background: rgba(240, 180, 41, 0.15);
  color: var(--c-gold);
  border: 1px solid rgba(240, 180, 41, 0.3);
}

.sec-alt {
  background: rgba(13, 15, 28, 0.6);
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(13, 84, 146, 0.15) 0%,
    rgba(13, 118, 70, 0.1) 100%
  );
  border: 1px solid rgba(13, 84, 146, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.icon-xd {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

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

.wp-content {
  display: none;
}
.entry-meta {
  display: none;
}
.wp-post-image {
  display: none;
}
.elementor-widget-container {
}
.wp-block-group {
}
.et_pb_row {
}
.wpcf7-form {
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .b3r7m {
    display: flex;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero-xd {
    min-height: 420px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .sec-xd {
    padding: 44px 0;
  }
  .slot-reel {
    width: 68px;
    height: 78px;
    font-size: 2rem;
  }
  .review-content-block {
    padding: 24px 20px;
  }
  .form-xd {
    padding: 22px 18px;
  }
  .ftr-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wgt-xd {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .tbl-xd td:first-child {
    width: 44%;
  }
  .hdr-inner {
    height: 60px;
  }
  .ftr-brand p {
    max-width: 100%;
  }
  .author-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .slot-wrap {
    padding: 28px 18px;
  }
  .slot-reels {
    gap: 6px;
  }
  .slot-reel {
    width: 60px;
    height: 70px;
    font-size: 1.8rem;
  }
  .hero-h1 {
    font-size: 1.6rem;
  }
  .ttl-xd {
    font-size: 1.3rem;
  }
  .wgt-xd {
    padding: 10px 14px;
  }
}
