:root {
  --clr-bg: #0d102a;
  --clr-nav: #1b1f3b;
  --clr-nav-hover: #252a52;
  --clr-pink: #ff4dd2;
  --clr-green: #00e676;
  --clr-text: #e8eaf6;
  --clr-muted: #9fa8c7;
  --clr-border: rgba(255, 77, 210, 0.18);
  --clr-card: rgba(27, 31, 59, 0.85);
  --clr-card2: rgba(13, 16, 42, 0.9);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-pink);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #ff85e0;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.box {
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.93;
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn--pink {
  background: linear-gradient(135deg, #ff4dd2, #d4009f);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 77, 210, 0.35);
}
.btn--green {
  background: linear-gradient(135deg, #00e676, #00b45a);
  color: #0d102a;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-pink);
  border: 2px solid var(--clr-pink);
}
.btn--outline:hover {
  background: rgba(255, 77, 210, 0.1);
  color: var(--clr-pink);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head .section-title span {
  color: var(--clr-pink);
}

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

.header {
  background: var(--clr-nav);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-pink);
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  background: var(--clr-nav-hover);
  color: var(--clr-pink);
}
.header-nav a svg {
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-green);
  white-space: nowrap;
}
.online-count::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
  }
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-nav-hover);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 77, 210, 0.12);
}
.lang-btn svg {
  transition: transform var(--transition);
}
.lang-btn.open svg {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--clr-nav);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  min-width: 160px;
  z-index: 200;
  display: none;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lang-dropdown-menu.open {
  display: block;
}
.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}
.lang-dropdown-menu a:hover {
  background: var(--clr-nav-hover);
  color: var(--clr-pink);
}
.lang-flag {
  font-size: 18px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.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);
}

.header-nav.mobile-active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--clr-nav);
  padding: 20px;
  gap: 4px;
  z-index: 999;
  border-bottom: 1px solid var(--clr-border);
  animation: slideDown 0.2s ease;
  align-items: flex-start;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.hero-slider {
  position: relative;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.hero-slide.active {
  display: flex;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 16, 42, 0.92) 40%,
    rgba(13, 16, 42, 0.3)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.hero-text {
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 210, 0.15);
  border: 1px solid rgba(255, 77, 210, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-pink);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-title span {
  color: var(--clr-pink);
}
.hero-desc {
  color: var(--clr-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--clr-pink);
  transform: scale(1.25);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(27, 31, 59, 0.7);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--clr-text);
}
.hero-arrow:hover {
  background: rgba(255, 77, 210, 0.25);
}
.hero-arrow--prev {
  left: 16px;
}
.hero-arrow--next {
  right: 16px;
}

.page-section {
  padding: 60px 0;
}
.page-section + .page-section {
  padding-top: 0;
}

.game-info-table-wrap {
  overflow-x: auto;
  margin: 0 0 40px;
  border-radius: var(--radius);
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 480px;
}
.game-info-table th,
.game-info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}
.game-info-table th {
  background: rgba(255, 77, 210, 0.1);
  color: var(--clr-pink);
  font-weight: 700;
  width: 45%;
}
.game-info-table td {
  color: var(--clr-text);
  font-weight: 500;
}
.game-info-table tr:last-child th,
.game-info-table tr:last-child td {
  border-bottom: none;
}
.game-info-table tr:hover td,
.game-info-table tr:hover th {
  background: rgba(255, 77, 210, 0.06);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  text-align: center;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 77, 210, 0.18);
}
.adv-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 77, 210, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--clr-pink);
}
.adv-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.pros-card,
.cons-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid;
}
.pros-card {
  border-color: rgba(0, 230, 118, 0.25);
}
.cons-card {
  border-color: rgba(255, 77, 210, 0.2);
}
.pros-card h3 {
  color: var(--clr-green);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-card h3 {
  color: var(--clr-pink);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-card ul,
.cons-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pros-card ul li,
.cons-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.pros-card ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300e676'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.cons-card ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff4dd2'%3E%3Cpath d='M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z'/%3E%3C/svg%3E");
}

.winners-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.winners-header {
  background: rgba(255, 77, 210, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--clr-border);
}
.winners-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
}
.winners-header span {
  color: var(--clr-muted);
  font-size: 0.85rem;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
}
.winners-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.winners-table td {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:hover td {
  background: rgba(255, 77, 210, 0.05);
}
.winner-rank {
  font-weight: 800;
  color: var(--clr-muted);
  width: 40px;
}
.winner-rank.gold {
  color: #ffd700;
}
.winner-rank.silver {
  color: #c0c0c0;
}
.winner-rank.bronze {
  color: #cd7f32;
}
.winner-nick {
  font-weight: 600;
}
.winner-mult {
  color: var(--clr-pink);
  font-weight: 700;
  font-size: 13px;
}
.winner-amount {
  color: var(--clr-green);
  font-weight: 800;
}

.demo-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 40px;
}
.demo-header {
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 77, 210, 0.1),
    rgba(0, 230, 118, 0.05)
  );
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
}
.demo-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
}
.demo-footer p {
  font-size: 13px;
  color: var(--clr-muted);
}

.faq-block {
  margin-bottom: 40px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(255, 77, 210, 0.4);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.faq-q h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 77, 210, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-pink);
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 77, 210, 0.25);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  padding: 0 22px;
}
.faq-a p {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 0;
}

.author-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.85rem;
  color: var(--clr-pink);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.author-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-pink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.content-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 40px;
}
.content-box h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 24px 0 10px;
  color: var(--clr-text);
}
.content-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--clr-pink);
}
.content-box p {
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.75;
}
.content-box ul,
.content-box ol {
  margin: 0 0 14px 20px;
}
.content-box li {
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 5px;
}
.content-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-box table th,
.content-box table td {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  text-align: left;
}
.content-box table th {
  background: rgba(255, 77, 210, 0.08);
  color: var(--clr-pink);
  font-weight: 700;
}
.content-box a {
  color: var(--clr-pink);
  text-decoration: underline;
}
.content-box strong {
  color: var(--clr-text);
  font-weight: 700;
}

.footer-wrap {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.footer-inner {
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--clr-text);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--clr-pink);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.footer-logo-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-muted);
  gap: 7px;
  white-space: nowrap;
}
.footer-logo-badge svg {
  color: var(--clr-green);
}

.footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
.pay-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #ccc;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.6;
}
.footer-legal {
  font-size: 12px;
  color: rgba(159, 168, 199, 0.6);
  max-width: 600px;
  line-height: 1.55;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(
    90deg,
    rgba(27, 31, 59, 0.97),
    rgba(13, 16, 42, 0.97)
  );
  border-top: 2px solid var(--clr-green);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.widget-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
}
.widget-text span {
  color: var(--clr-green);
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--clr-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--clr-text);
}

.review-block {
  margin-bottom: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
}
.review-stars {
  color: #ffd700;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.85rem;
  font-weight: 700;
}
.review-date {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 14px 0;
  font-size: 13px;
  color: var(--clr-muted);
}
.breadcrumb a {
  color: var(--clr-muted);
}
.breadcrumb a:hover {
  color: var(--clr-pink);
}
.breadcrumb-sep {
  color: rgba(159, 168, 199, 0.4);
}
.breadcrumb-current {
  color: var(--clr-text);
}

.technical-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin: 20px 0 40px;
}
.technical-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 28px 0 10px;
  color: var(--clr-text);
}
.technical-content h2:first-child {
  margin-top: 0;
}
.technical-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--clr-pink);
}
.technical-content p {
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.75;
}
.technical-content ul,
.technical-content ol {
  margin: 0 0 14px 22px;
}
.technical-content li {
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.wc-page-wrap {
  padding: 40px 0 80px;
}

.text-center {
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-nav.mobile-active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .header-right {
    gap: 8px;
  }

  .hero-slide {
    min-height: 380px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 1.65rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-block {
    flex-direction: column;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-footer {
    flex-direction: column;
  }
  .winners-table td:nth-child(4),
  .winners-table th:nth-child(4) {
    display: none;
  }

  .section-title {
    font-size: 1.4rem;
  }
  .page-section {
    padding: 40px 0;
  }
  .technical-content {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .online-count {
    display: none;
  }
  .hero-slide {
    min-height: 320px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .lang-btn span {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .winners-table td:nth-child(3),
  .winners-table th:nth-child(3) {
    display: none;
  }
}

.wp-content-placeholder {
  display: none;
}
.wp-block-group {
  display: none;
}
.entry-meta {
  display: none;
}
.post-thumbnail-inner {
  display: none;
}
.elementor-section-placeholder {
  display: none;
}

.lz8f3 {
  display: none;
}
.rqm71 {
  visibility: hidden;
  height: 0;
}
.wpe49-nonce {
  display: none;
}
.bx91k-inner {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.55s ease both;
}
.fade-in-d1 {
  animation-delay: 0.1s;
}
.fade-in-d2 {
  animation-delay: 0.2s;
}
.fade-in-d3 {
  animation-delay: 0.3s;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--clr-pink), #ff85e0, var(--clr-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.header-nav-btns {
  display: none;
  width: 100%;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
}

.header-nav-btns .btn {
  width: 100%;
  justify-content: center;
}

.header-desktop-btns {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .header-nav.mobile-active .header-nav-btns {
    display: flex;
    flex-direction: column;
  }

  .header-desktop-btns {
    display: none;
  }
}
