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

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

:root {
  --c-bg: #110d0e;
  --c-header: #450b17;
  --c-footer: #3a0913;
  --c-btn-light: #e0e0e0;
  --c-btn-reg: #c7051d;
  --c-text: #f0e8e9;
  --c-text-muted: #b09098;
  --c-border: #5a1828;
  --c-gold: #d4a843;
  --c-card: #1c1214;
  --c-card2: #201519;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: var(--c-btn-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-gold);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.xk9m2 {
  display: none;
}
.pf4h7 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.wp-block-cover {
  display: block;
}

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

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.header-nav a {
  color: #f5dce0;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #f5dce0;
  white-space: nowrap;
  margin-right: 8px;
}
.header-online span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3ddc84;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--c-btn-light);
  color: #1a0810;
}
.btn-login:hover {
  color: #1a0810;
  background: #f5f5f5;
}
.btn-reg {
  background: var(--c-btn-reg);
  color: #fff;
}
.btn-reg:hover {
  background: #e0061f;
  color: #fff;
}
.btn-bonus {
  background: linear-gradient(135deg, #b8040f, #e0061f);
  color: #fff;
  padding: 9px 22px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5dce0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 11, 23, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px 24px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: #f5dce0;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu .btn {
  font-size: 16px;
  padding: 12px 32px;
  width: 220px;
  justify-content: center;
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/7kban.jpg") center/cover no-repeat;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(69, 11, 23, 0.75) 0%,
    rgba(17, 13, 14, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 5, 29, 0.18);
  border: 1px solid rgba(199, 5, 29, 0.5);
  color: #ff8a95;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero-title span {
  color: var(--c-gold);
}
.hero-desc {
  font-size: 16px;
  color: #e8d5d8;
  max-width: 500px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta .btn {
  font-size: 16px;
  padding: 13px 32px;
}
.hero-bonus-tag {
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--c-gold);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 60px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--c-btn-reg);
  border-radius: 2px;
  margin-bottom: 16px;
}

.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.info-table tr {
  transition: background 0.15s;
}
.info-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.info-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}
.info-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 38%;
  white-space: nowrap;
}
.info-table td:last-child {
  color: var(--c-text);
  font-weight: 600;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.tag {
  display: inline-block;
  background: rgba(199, 5, 29, 0.18);
  color: #ff8a95;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 2px 3px 2px 0;
}
.tag-gold {
  background: rgba(212, 168, 67, 0.18);
  color: var(--c-gold);
}

.winners-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}
.winner-row:last-child {
  border-bottom: none;
}
.winner-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.winner-pos {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.pos-1 {
  background: linear-gradient(135deg, #d4a843, #f5c842);
  color: #1a0810;
}
.pos-2 {
  background: linear-gradient(135deg, #9e9e9e, #c0c0c0);
  color: #1a0810;
}
.pos-3 {
  background: linear-gradient(135deg, #c07028, #e0883a);
  color: #fff;
}
.pos-other {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-text-muted);
}
.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-header), var(--c-btn-reg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.winner-nick {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
}
.winner-game {
  flex: 1;
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
}
.winner-amount {
  font-weight: 800;
  font-size: 15px;
  color: #3ddc84;
  text-align: right;
  white-space: nowrap;
}

/* ─── VIDEO ─── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: #0a0608;
  min-height: 380px;
}
.demo-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-note {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 13px;
  margin-top: 12px;
}

/* ─── REVIEW / CONTENT ─── */
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #450b17, #c7051d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-info {
}
.author-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.author-role {
  font-size: 13px;
  color: var(--c-text-muted);
}
.author-link {
  font-size: 13px;
  color: var(--c-gold);
}

.review-content {
  color: var(--c-text);
  line-height: 1.8;
  font-size: 15px;
}
.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
  color: #fff;
  font-weight: 700;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.review-content h1 {
  font-size: 26px;
}
.review-content h2 {
  font-size: 22px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.review-content h3 {
  font-size: 19px;
}
.review-content p {
  margin-bottom: 14px;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 18px 24px;
}
.review-content li {
  margin-bottom: 6px;
}
.review-content ul li::marker {
  color: var(--c-btn-reg);
}
.review-content a {
  color: var(--c-gold);
  text-decoration: underline;
}
.review-content strong {
  color: #fff;
  font-weight: 700;
}
.review-content em {
  color: var(--c-gold);
  font-style: italic;
}
.review-content blockquote {
  border-left: 3px solid var(--c-btn-reg);
  padding: 12px 20px;
  background: var(--c-card2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  color: #e8d5d8;
  font-style: italic;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.review-content table th {
  background: var(--c-header);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.review-content img {
  border-radius: var(--radius-sm);
  margin: 12px 0;
  max-width: 100%;
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.review-content code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
  color: #ff8a95;
}
.review-content pre {
  background: var(--c-card);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 16px 0;
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-card);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: background 0.2s;
  gap: 12px;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e0e0e0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E")
    center/contain no-repeat;
  transition: transform 0.3s;
}
details[open] .faq-question::after {
  transform: rotate(180deg);
}
details[open] .faq-question {
  background: rgba(199, 5, 29, 0.08);
}
.faq-answer {
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--c-footer);
  padding: 48px 0 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  font-size: 14px;
  color: #c8a0a8;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge,
.provider-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #c8a0a8;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-legal {
  font-size: 12px;
  color: #7a5060;
  line-height: 1.7;
}
.footer-legal a {
  color: #9a7080;
}

/* ─── STICKY WIDGET ─── */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(90deg, #2a0810 0%, #450b17 50%, #2a0810 100%);
  border-top: 1px solid var(--c-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.widget-text {
  color: #f5dce0;
  font-size: 14px;
  font-weight: 600;
}
.widget-text span {
  color: var(--c-gold);
  font-weight: 800;
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
  line-height: 1;
  padding: 4px;
}
.widget-close:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 72px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-btn-reg);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 98;
}
.scroll-top.show {
  display: flex;
}
.scroll-top:hover {
  transform: translateY(-2px);
}

.card-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 8px 0;
}
.rating-stars {
  color: var(--c-gold);
  font-size: 20px;
  letter-spacing: 2px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--c-text-muted);
}
.breadcrumb a:hover {
  color: var(--c-text);
}
.breadcrumb-sep {
  color: var(--c-border);
}
.section-bg-alt {
  background: linear-gradient(180deg, #150f11 0%, var(--c-bg) 100%);
}

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

.wp-caption,
.aligncenter,
.alignleft,
.alignright,
.size-full,
.size-large {
  display: block;
}
.entry-content,
.post-content,
.page-content {
  display: block;
}
.elementor-section,
.elementor-widget-container {
  display: block;
}
.yoast-breadcrumb {
  display: none;
}
.wp-block-image {
  display: block;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .footer-inner {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .header-inner {
    padding: 8px 12px;
  }
  .header-logo img {
    height: 38px;
  }
  .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .section {
    padding: 40px 0;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .winner-game {
    display: none;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
  }
  .widget-text {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .header-actions .btn-login {
    display: none;
  }
}
