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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #16171d;
}
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: #16171d;
  color: #e8e9ef;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #10baa8;
  text-decoration: none;
}
a:hover {
  color: #0dd4bf;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.3;
}
input,
textarea,
select,
button {
  font-family: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn--login {
  background: #22262e;
  color: #e8e9ef;
}
.btn--login:hover {
  background: #2c3140;
  color: #fff;
}
.btn--signup {
  background: #10baa8;
  color: #fff;
}
.btn--signup:hover {
  background: #0da898;
}
.btn--bonus {
  background: #10baa8;
  color: #fff;
}
.btn--bonus:hover {
  background: #0da898;
}
.btn--primary {
  background: #10baa8;
  color: #fff;
  font-size: 15px;
  padding: 13px 30px;
}
.btn--primary:hover {
  background: #0da898;
}
.btn--secondary {
  background: #22262e;
  color: #e8e9ef;
}
.btn--lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 10px;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

header.site-header {
  background: #16171d;
  border-bottom: 1px solid #22262e;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 42px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  color: #a0a3af;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.header-nav a:hover {
  color: #e8e9ef;
  background: #22262e;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  font-size: 12px;
  color: #10baa8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-count::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10baa8;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e9ef;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #16171d;
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: #e8e9ef;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid #22262e;
}
.mobile-menu a:hover {
  color: #10baa8;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #e8e9ef;
  font-size: 28px;
  line-height: 1;
}

.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #16171d;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/banh.jpg") center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 23, 29, 0.95) 0%,
    rgba(16, 186, 168, 0.12) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 16px;
}
.hero-content h1 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: clamp(14px, 2vw, 17px);
  color: #c0c3cf;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  background: rgba(16, 186, 168, 0.15);
  border: 1px solid rgba(16, 186, 168, 0.3);
  color: #10baa8;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 64px 0;
}
.section-sm {
  padding: 40px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 14px;
  color: #6e7180;
  margin-bottom: 32px;
}
.section-head {
  margin-bottom: 36px;
}

.card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  padding: 24px;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.card:hover {
  border-color: #10baa8;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 186, 168, 0.12);
}
.card-grid {
  display: grid;
  gap: 16px;
}
.card-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.jackpot-block {
  background: linear-gradient(135deg, #1a1b23 0%, #1f2030 100%);
  border: 1px solid #2a2b38;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.jackpot-title {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #6e7180;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.jackpot-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #10baa8;
  text-shadow: 0 0 30px rgba(16, 186, 168, 0.4);
  letter-spacing: -0.02em;
  line-height: 1;
}
.jackpot-currency {
  font-size: 22px;
  vertical-align: super;
  margin-right: 4px;
}
.jackpot-meta {
  font-size: 12px;
  color: #6e7180;
  margin-top: 10px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.winners-table th {
  background: #22262e;
  color: #a0a3af;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #2a2b38;
}
.winners-table td {
  padding: 10px 14px;
  border: 1px solid #22262e;
  font-size: 13px;
  color: #c0c3cf;
}
.winners-table tr:nth-child(odd) td {
  background: #1e1f28;
}
.winners-table tr:nth-child(even) td {
  background: #1a1b23;
}
.winners-table tr:hover td {
  background: #22262e;
  color: #fff;
}
.winners-table .rank-1 {
  color: #ffd700;
  font-weight: 700;
}
.winners-table .rank-2 {
  color: #c0c0c0;
  font-weight: 700;
}
.winners-table .rank-3 {
  color: #cd7f32;
  font-weight: 700;
}
.winners-table .win-amount {
  color: #10baa8;
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #22262e;
}

.tournament-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tournament-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.tournament-name {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.tournament-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #10baa8;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.timer-icon {
  width: 14px;
  height: 14px;
}
.tournament-desc {
  font-size: 13px;
  color: #a0a3af;
  line-height: 1.6;
}
.tournament-prize {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #22262e;
  border-radius: 8px;
  padding: 10px 14px;
}
.tournament-prize-label {
  font-size: 11px;
  color: #6e7180;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.tournament-prize-value {
  font-size: 18px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #10baa8;
}
.tournament-cta {
  margin-top: auto;
}

.demo-block {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 16px;
}
.demo-header {
  padding: 20px 24px;
  border-bottom: 1px solid #22262e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111217;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-block {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 16px;
  padding: 32px;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
  padding-top: 8px;
}
.content-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e8e9ef;
  margin: 20px 0 10px;
}
.content-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #e8e9ef;
  margin: 16px 0 8px;
}
.content-block p {
  font-size: 14px;
  color: #b0b3c0;
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.content-block li {
  font-size: 14px;
  color: #b0b3c0;
  line-height: 1.8;
  margin-bottom: 6px;
}
.content-block a {
  color: #10baa8;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.content-block table th {
  background: #22262e;
  color: #e8e9ef;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #2a2b38;
  font-size: 13px;
}
.content-block table td {
  padding: 10px 14px;
  border: 1px solid #22262e;
  font-size: 13px;
  color: #b0b3c0;
}
.content-block table tr:nth-child(even) td {
  background: #1e1f28;
}

.faq-item {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: #10baa8;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: #e8e9ef;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #6e7180;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
  font-size: 16px;
  color: #6e7180;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: #10baa8;
  background: #10baa8;
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 14px;
  color: #a0a3af;
  line-height: 1.8;
}

footer.site-footer {
  background: #16171d;
  border-top: 1px solid #22262e;
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-col img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: #6e7180;
  line-height: 1.7;
  max-width: 220px;
}
.footer-nav-col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px 24px;
}
.footer-nav-col a {
  font-size: 13px;
  color: #a0a3af;
  transition: color 0.2s;
}
.footer-nav-col a:hover {
  color: #10baa8;
}
.footer-divider {
  border: none;
  border-top: 1px solid #22262e;
  margin: 0 0 28px;
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments-title,
.footer-providers-title {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #6e7180;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-logo-badge {
  background: #22262e;
  border: 1px solid #2a2b38;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #a0a3af;
  white-space: nowrap;
}
.footer-legal {
  font-size: 11px;
  color: #4a4d5a;
  line-height: 1.7;
  margin-top: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #22262e;
}
.footer-copy {
  font-size: 12px;
  color: #4a4d5a;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links a {
  font-size: 12px;
  color: #4a4d5a;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #a0a3af;
}

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #16171d 0%, #1a1b23 100%);
  border-top: 1px solid #22262e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.widget-bar-text {
  font-size: 13px;
  color: #a0a3af;
  flex: 1;
  min-width: 120px;
}
.widget-bar-text strong {
  color: #10baa8;
}
.widget-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6e7180;
  font-size: 20px;
  padding: 2px 6px;
  line-height: 1;
}
.widget-close:hover {
  color: #e8e9ef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 13px;
  color: #6e7180;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: #a0a3af;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #10baa8;
}
.breadcrumb-sep {
  color: #4a4d5a;
}

.promo-block {
  background: linear-gradient(
    135deg,
    rgba(16, 186, 168, 0.12) 0%,
    rgba(16, 186, 168, 0.04) 100%
  );
  border: 1.5px solid rgba(16, 186, 168, 0.35);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-block-info {
  flex: 1;
}
.promo-label {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #10baa8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.promo-title {
  font-size: 22px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 6px;
}
.promo-desc {
  font-size: 13px;
  color: #a0a3af;
}
.promo-code-box {
  background: #16171d;
  border: 1.5px dashed #10baa8;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #10baa8;
  letter-spacing: 0.1em;
  cursor: pointer;
  user-select: all;
  transition: background 0.2s;
}
.promo-code-box:hover {
  background: #1a1b23;
}
.promo-code-hint {
  font-size: 11px;
  color: #6e7180;
  margin-top: 5px;
  text-align: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr:nth-child(odd) td,
.info-table tr:nth-child(odd) th {
  background: #1e1f28;
}
.info-table tr:nth-child(even) td,
.info-table tr:nth-child(even) th {
  background: #1a1b23;
}
.info-table th {
  width: 38%;
  padding: 12px 16px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #a0a3af;
  text-align: left;
  border: 1px solid #22262e;
}
.info-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #e8e9ef;
  border: 1px solid #22262e;
}
.info-table td a {
  color: #10baa8;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.advantage-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.advantage-card:hover {
  border-color: #10baa8;
  transform: translateY(-2px);
}
.advantage-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.advantage-title {
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 6px;
}
.advantage-desc {
  font-size: 12px;
  color: #6e7180;
  line-height: 1.6;
}

.author-block {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #10baa8;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 12px;
  color: #10baa8;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 13px;
  color: #a0a3af;
  line-height: 1.7;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-links a {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #10baa8;
  border: 1px solid rgba(16, 186, 168, 0.35);
  border-radius: 6px;
  padding: 4px 12px;
  transition: background 0.2s;
}
.author-links a:hover {
  background: rgba(16, 186, 168, 0.1);
}

.review-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 12px;
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22262e;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #ffd700;
}
.review-text {
  font-size: 13px;
  color: #a0a3af;
  line-height: 1.7;
}

.review-form {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  padding: 28px;
}
.form-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #a0a3af;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: #16171d;
  border: 1px solid #22262e;
  border-radius: 8px;
  padding: 11px 16px;
  color: #e8e9ef;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #10baa8;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  display: none;
  background: rgba(16, 186, 168, 0.1);
  border: 1px solid rgba(16, 186, 168, 0.35);
  border-radius: 8px;
  padding: 14px 18px;
  color: #10baa8;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.form-success.show {
  display: block;
}

.tech-specs {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  padding: 24px;
}
.tech-specs-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.spec-item {
  background: #22262e;
  border-radius: 8px;
  padding: 14px;
}
.spec-label {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #6e7180;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #e8e9ef;
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #22262e;
  border: 1px solid #2a2b38;
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.download-btn:hover {
  border-color: #10baa8;
  background: #1a1b23;
}
.download-btn-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.download-btn-text {
  flex: 1;
}
.download-btn-sub {
  font-size: 10px;
  color: #6e7180;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.download-btn-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.mirror-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.mirror-method-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.method-score {
  font-size: 24px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #10baa8;
  margin: 8px 0 4px;
}
.method-label {
  font-size: 11px;
  color: #6e7180;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.method-title {
  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
.method-desc {
  font-size: 12px;
  color: #a0a3af;
  line-height: 1.6;
}
.method-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(16, 186, 168, 0.15);
  border: 1px solid rgba(16, 186, 168, 0.3);
  color: #10baa8;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 12px;
}

.not-working-block {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.nw-title {
  font-size: 22px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
.nw-desc {
  font-size: 14px;
  color: #a0a3af;
  margin-bottom: 24px;
}
.nw-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.nw-answer {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #22262e;
  border-radius: 10px;
  font-size: 13px;
  color: #a0a3af;
  line-height: 1.7;
  text-align: left;
}
.nw-answer.show {
  display: block;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.slot-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.slot-card:hover {
  border-color: #10baa8;
  transform: translateY(-3px);
}
.slot-thumb {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #22262e, #1a1b23);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.slot-name {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #e8e9ef;
}
.slot-provider {
  padding: 0 12px 10px;
  font-size: 11px;
  color: #6e7180;
}
.slot-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.slot-card:hover .slot-play-overlay {
  opacity: 1;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-overlay.open {
  display: flex;
}
.popup-inner {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}
.popup-header {
  padding: 16px 20px;
  border-bottom: 1px solid #22262e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.popup-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6e7180;
  font-size: 24px;
  line-height: 1;
}
.popup-close:hover {
  color: #e8e9ef;
}
.popup-game {
  aspect-ratio: 16/9;
  background: #111;
}
.popup-game iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.slider-wrap {
  position: relative;
}
.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar {
  display: none;
}
.slider-track > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.slider-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22262e;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: #10baa8;
  transform: scale(1.25);
}

.hero-slider {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.active {
  opacity: 1;
  position: relative;
}
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-slider-dot.active {
  background: #10baa8;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22, 23, 29, 0.7);
  border: 1px solid #22262e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #e8e9ef;
  transition: background 0.2s;
}
.slider-arrow:hover {
  background: #22262e;
}
.slider-arrow.prev {
  left: 12px;
}
.slider-arrow.next {
  right: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.badge-green {
  background: rgba(16, 186, 168, 0.15);
  color: #10baa8;
  border: 1px solid rgba(16, 186, 168, 0.3);
}
.badge-yellow {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.25);
}
.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.bonus-card {
  background: #1c1d25;
  border: 1px solid #22262e;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bonus-card-header {
  background: linear-gradient(
    135deg,
    rgba(16, 186, 168, 0.18),
    rgba(16, 186, 168, 0.06)
  );
  padding: 20px 20px 14px;
  border-bottom: 1px solid #22262e;
}
.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.bonus-card-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 4px;
}
.bonus-card-amount {
  font-size: 22px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #10baa8;
}
.bonus-card-body {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-card-desc {
  font-size: 13px;
  color: #a0a3af;
  line-height: 1.6;
  flex: 1;
}
.bonus-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.comparison-table th {
  background: #22262e;
  padding: 12px 14px;
  text-align: center;
  color: #a0a3af;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid #2a2b38;
}
.comparison-table th:first-child {
  text-align: left;
}
.comparison-table td {
  padding: 11px 14px;
  border: 1px solid #22262e;
  color: #c0c3cf;
  text-align: center;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #e8e9ef;
  background: #1a1b23;
}
.comparison-table tr:nth-child(even) td {
  background: #1e1f28;
}
.comparison-table .yes {
  color: #10baa8;
  font-weight: 700;
}
.comparison-table .no {
  color: #ef4444;
  font-weight: 700;
}

.wp-hidden-meta {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-nav-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-inner {
    padding: 10px 16px;
  }
  .hero-content {
    padding: 40px 16px;
  }
  .section {
    padding: 44px 0;
  }
  .footer-nav-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-block {
    flex-direction: column;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tournament-card-top {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header-actions .btn {
    padding: 7px 12px;
    font-size: 13px;
  }
  .widget-bar {
    flex-direction: column;
    text-align: center;
  }
  .download-btns {
    flex-direction: column;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.xd2k9 {
  display: none;
}
.wp3f7m {
  visibility: hidden;
  height: 0;
  width: 0;
}
.cf8x1r {
  display: none !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
