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

:root {
  --c-bg: #0f1923;
  --c-header: #171f2c;
  --c-blue: #2087ec;
  --c-red: #f9335c;
  --c-text: #e2e8f0;
  --c-text-muted: #94a3b8;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-card: #1a2535;
  --c-card2: #1e2d42;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #5ba3f0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
}

.wrapper {
  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;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.92;
}
.btn:active {
  transform: translateY(0);
}

.btn--blue {
  background: var(--c-blue);
  color: #fff;
}
.btn--red {
  background: var(--c-red);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--c-blue);
  border: 1.5px solid var(--c-blue);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 10px 16px;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--c-text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(32, 135, 236, 0.12);
  color: var(--c-blue);
}

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

.header-online {
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header-online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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-nav-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--c-header);
  z-index: 999;
  padding: 16px;
  border-bottom: 1px solid var(--c-border);
  flex-direction: column;
  gap: 6px;
}
.mobile-nav a {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav a:hover {
  background: rgba(32, 135, 236, 0.12);
  color: var(--c-blue);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-overlay.open {
  display: block;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--c-header);
  min-height: 380px;
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active {
  display: block;
}
.hero-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  opacity: 0.5;
}
.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 640px;
}
.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  text-wrap: balance;
}
.hero-slide-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  margin-bottom: 20px;
}
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active {
  background: var(--c-blue);
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 5;
}
.hero-prev:hover,
.hero-next:hover {
  background: rgba(32, 135, 236, 0.7);
}
.hero-prev {
  left: 12px;
}
.hero-next {
  right: 12px;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: var(--c-blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
  margin-bottom: 24px;
}

.block--accent {
  background: linear-gradient(135deg, #1a2535 0%, #1e2d42 100%);
  border-color: rgba(32, 135, 236, 0.25);
}

.block--red-accent {
  background: linear-gradient(135deg, #2a1a22 0%, #1e1425 100%);
  border-color: rgba(249, 51, 92, 0.25);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table th {
  background: var(--c-header);
  color: var(--c-text);
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--c-border);
}
table td {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}
table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
table tr:hover td {
  background: rgba(32, 135, 236, 0.06);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
}

.mirror-table td:nth-child(2) {
  color: #22c55e;
  font-weight: 600;
}
.mirror-date {
  color: var(--c-text-muted);
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mirror-date span {
  color: #22c55e;
  font-weight: 600;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.winner-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--c-card2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  transition: border-color var(--transition);
}
.winner-item:hover {
  border-color: rgba(32, 135, 236, 0.3);
}
.winner-rank {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-align: center;
}
.winner-rank.gold {
  color: #f59e0b;
}
.winner-rank.silver {
  color: #94a3b8;
}
.winner-rank.bronze {
  color: #cd7c3b;
}
.winner-name {
  font-size: 14px;
  font-weight: 500;
}
.winner-amount {
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.card {
  background: var(--c-card2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 135, 236, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 18px;
}
.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.card-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-prize {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.card-timer {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.timer-val {
  color: var(--c-red);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.bonus-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 20px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 51, 92, 0.35);
}
.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.bonus-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.bonus-card-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.slot-machine {
  text-align: center;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}
.slot-reel {
  width: 80px;
  height: 80px;
  background: var(--c-header);
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: border-color 0.15s;
  overflow: hidden;
  position: relative;
}
.slot-reel.spinning {
  border-color: var(--c-blue);
  animation: reel-spin 0.15s steps(1) infinite;
}
@keyframes reel-spin {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.slot-result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.slot-win-text {
  color: #22c55e;
  font-size: 18px;
  font-weight: 700;
}
.slot-lose-text {
  color: var(--c-text-muted);
  font-size: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.review-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 18px;
  transition: border-color var(--transition);
}
.review-card:hover {
  border-color: rgba(32, 135, 236, 0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.review-name {
  font-size: 14px;
  font-weight: 600;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}
.review-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.review-form {
  max-width: 520px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--c-text-muted);
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--c-header);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-blue);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #22c55e;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.form-success.show {
  display: block;
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--c-blue);
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.provider-badge {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.payment-badge {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.03em;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0f1923 0%, #171f2c 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.4);
}
.widget-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.widget-text span {
  color: #f59e0b;
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
}
.widget-close:hover {
  color: #fff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--c-text-muted);
}
.breadcrumbs a:hover {
  color: var(--c-blue);
}
.breadcrumbs-sep {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumbs-current {
  color: var(--c-text);
}

.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--c-blue);
  font-weight: 500;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-social {
  display: flex;
  gap: 8px;
}
.author-social a {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-blue);
  background: rgba(32, 135, 236, 0.1);
  border: 1px solid rgba(32, 135, 236, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background var(--transition);
}
.author-social a:hover {
  background: rgba(32, 135, 236, 0.22);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--c-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--c-blue);
}
.faq-question-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.faq-item.open .faq-question-icon {
  transform: rotate(45deg);
  border-color: var(--c-blue);
}
.faq-answer {
  display: none;
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  display: block;
}

.stats-table {
}
.stats-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 40%;
}
.stats-table td:last-child {
  font-weight: 600;
  color: var(--c-text);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.advantage-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  transition: border-color var(--transition);
}
.advantage-item:hover {
  border-color: rgba(32, 135, 236, 0.3);
}
.advantage-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.advantage-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.advantage-desc {
  font-size: 12px;
  color: var(--c-text-muted);
}

.mirror-not-working {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.rtp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rtp-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}
.rtp-name {
  font-size: 14px;
  font-weight: 600;
}
.rtp-provider {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.rtp-value {
  font-size: 15px;
  font-weight: 800;
  color: #22c55e;
}
.rtp-bar-wrap {
  width: 80px;
  height: 6px;
  background: var(--c-border);
  border-radius: 3px;
  overflow: hidden;
}
.rtp-bar {
  height: 100%;
  background: #22c55e;
  border-radius: 3px;
}

.slot-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.slot-cat-btn {
  background: var(--c-card2);
  border: 1.5px solid var(--c-border);
  color: var(--c-text-muted);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: "Inter", Arial, sans-serif;
}
.slot-cat-btn:hover,
.slot-cat-btn.active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}

.demo-game-wrap {
  background: var(--c-header);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--c-border);
}
.demo-game-wrap iframe {
  display: block;
}
.demo-placeholder {
  text-align: center;
  padding: 40px;
}
.demo-placeholder h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.demo-placeholder p {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.app-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 12px 20px;
  transition: all var(--transition);
  min-width: 160px;
}
.app-dl-btn:hover {
  border-color: var(--c-blue);
  background: rgba(32, 135, 236, 0.08);
}
.app-dl-icon {
  font-size: 28px;
}
.app-dl-label {
  font-size: 11px;
  color: var(--c-text-muted);
}
.app-dl-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 12px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.alt-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.alt-brand-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: border-color var(--transition);
}
.alt-brand-card:hover {
  border-color: rgba(32, 135, 236, 0.3);
}
.alt-brand-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.alt-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.alt-brand-tag {
  font-size: 11px;
  color: var(--c-text-muted);
}

.promo-code-block {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1520 100%);
  border: 2px solid rgba(249, 51, 92, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-code-block::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(249, 51, 92, 0.12) 0%,
    transparent 70%
  );
}
.promo-code-label {
  font-size: 13px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.promo-code-value {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.promo-copy-btn {
  background: var(--c-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
}
.promo-copy-btn:hover {
  opacity: 0.88;
}
.promo-copied {
  color: #22c55e;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.promo-copied.show {
  display: block;
}

.official-link-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    90deg,
    rgba(32, 135, 236, 0.12) 0%,
    transparent 100%
  );
  border: 1px solid rgba(32, 135, 236, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.official-link-icon {
  font-size: 32px;
}
.official-link-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.official-link-text p {
  font-size: 13px;
  color: var(--c-text-muted);
}

.content-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 1.4em 0 0.6em;
}
.content-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 1.2em 0 0.5em;
}
.content-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 1em 0 0.4em;
}
.content-text p {
  font-size: 14.5px;
  color: var(--c-text-muted);
  margin-bottom: 0.9em;
  line-height: 1.7;
}
.content-text ul,
.content-text ol {
  padding-left: 1.5em;
  margin-bottom: 0.9em;
}
.content-text li {
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 4px;
}
.content-text a {
  color: var(--c-blue);
}
.content-text a:hover {
  text-decoration: underline;
}
.content-text strong {
  color: var(--c-text);
  font-weight: 600;
}
.content-text table {
  margin: 1em 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-text table th,
.content-text table td {
  font-size: 13.5px;
}
.content-text blockquote {
  border-left: 3px solid var(--c-blue);
  padding-left: 14px;
  color: var(--c-text-muted);
  font-style: italic;
  margin: 1em 0;
}
.content-text hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5em 0;
}

.mobile-swiper {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.mobile-swiper::-webkit-scrollbar {
  display: none;
}
.mobile-swiper > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.get-bonus-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #1a2535 0%, #0f1923 100%);
  border: 1px solid rgba(32, 135, 236, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.get-bonus-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.get-bonus-desc {
  font-size: 14px;
  color: var(--c-text-muted);
}
.get-bonus-amount {
  font-size: 34px;
  font-weight: 900;
  color: var(--c-red);
  text-align: center;
  white-space: nowrap;
}
.get-bonus-amount-label {
  font-size: 12px;
  color: var(--c-text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    min-height: 260px;
  }
  .hero-slide img {
    height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 1;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .author-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .get-bonus-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .widget-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 40px 12px 16px;
  }
}

.wp-post-image {
  max-width: 100%;
}
.entry-meta {
  display: none;
}
.elementor-widget-container {
}
.wpcf7-form {
}
.yoast-seo-meta-tag {
}

[data-x8f2k] {
}
.b7m3n {
  display: none;
}
.qz19p {
}
