*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #010826;
  padding-top: 72px;
}

main {
  padding: 40px 0 60px;
}

a {
  color: #1da1f2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.page-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #010826;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.header-logo-img {
  display: block;
  height: 32px; /
  width: auto;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  background: #000000;
  border: 2px solid #00a6ff;
  box-shadow:
    0 0 0 2px #000,
    0 0 22px rgba(0, 166, 255, 0.9);
  overflow: hidden;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(90deg, #00b0ff, #2f6bff);
  z-index: -1;
  opacity: 0.9;
}

.header-cta--accent::before {
  background: linear-gradient(90deg, #2f6bff, #ff3bbd);
}

.header-cta:hover {
  text-decoration: none;
  box-shadow:
    0 0 0 2px #000,
    0 0 30px rgba(0, 166, 255, 1);
  transform: translateY(-1px);
}

.header-burger {
  display: none;
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header-burger span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-burger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header-burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.content-card {
  background: #ffffff;
  color: #111827;
  border-radius: 8px;
  padding: 24px 26px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  margin: 0 auto 40px;
}

.content-card h1,
.content-card h2,
.content-card h3 {
  color: #111827;
}

.content-card p,
.content-card ul li {
  color: #374151;
}

.lead {
  font-size: 15px;
  margin-bottom: 16px;
}


.zerkalo {
  max-width: 1040px;
  margin: 0 auto 24px;
}

.zerkalo .bottom-part {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.zerkalo-bg {
  display: block;
  width: 100%;
  height: auto;
}

.zerkalo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.zerkalo-text {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  font-size: 15px;
  max-width: 640px;
}


.zerkalo-content .link {
  display: inline-block;
  padding: 14px 60px;
  border-radius: 999px;
  background: #2ecc4a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(46, 204, 74, 0.9);
  transition: background-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.1s ease;
}

.zerkalo-content .link:hover {
  background: #26b341;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(46, 204, 74, 1);
  transform: translateY(-1px);
}

article section {
  margin-bottom: 24px;
}

article h2 {
  font-size: 22px;
  margin: 20px 0 10px;
}

article h3 {
  font-size: 18px;
  margin: 16px 0 8px;
}

article ul {
  padding-left: 20px;
  margin: 8px 0 15px;
}

article ul li {
  margin-bottom: 6px;
  font-size: 14px;
}


.warning-box {
  background: #fff3cd;
  padding: 15px;
  margin: 18px 0;
  border-radius: 5px;
  border-left: 4px solid #ffc107;
  font-size: 14px;
  color: #664d03;
}

.disclaimer-box {
  background: #f1f5f9;
  padding: 18px;
  margin: 18px 0;
  border-radius: 5px;
  border-left: 4px solid #0d6efd;
  font-size: 14px;
  color: #111827;
}

.final-warning {
  background: #fef2f2;
  padding: 20px 22px;
  margin: 0 auto 40px;
  border-radius: 12px;
  border: 1px solid #fecaca;
  font-size: 14px;
  color: #7f1d1d;
  max-width: 1040px;
}

.final-warning h2 {
  margin-top: 0;
  font-size: 18px;
  color: #b91c1c;
}


.games-section {
  margin: 0 auto 32px;
  max-width: 1040px;
  padding: 0 0 4px;
}

.games-section > p {
  font-size: 14px;
  color: #d1d5db;
  max-width: 720px;
}

.games-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  background: radial-gradient(circle at top, #1f2937 0%, #020617 65%);
  border-radius: 10px;
  padding: 12px 12px 14px;
  color: #e5e7eb;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.game-title {
  font-size: 15px;
  margin-bottom: 2px;
  color: #ffffff;
}

.game-provider {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.game-desc {
  font-size: 12px;
  color: #e5e7eb;
}

.game-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #111827;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.game-tag.hot {
  background: #f97316;
  border-color: #f59e0b;
  color: #111827;
}

.game-tag.new {
  background: #22c55e;
  border-color: #16a34a;
  color: #052e16;
}

.game-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}


.game-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.6);
  transition: background-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.1s ease;
}

.game-btn:hover {
  background: #16a34a;
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.8);
  transform: translateY(-1px);
}


.image_wrapper {
  margin: 0 auto 32px;
  max-width: 1040px;
}

.image_wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.img-caption {
  font-size: 12px;
  color: #e5e7eb;
  text-align: center;
  font-style: italic;
  margin-top: 8px;
}


.footer {
  margin-top: 0;
}

.footer-copy {
  background-color: #020617;
  color: #e5e7eb;
  padding: 30px 0 15px;
}

.footer-disclaimer {
  background: #0b1220;
  color: #ffffff;
  padding: 26px 22px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.footer-disclaimer h3 {
  color: #ffcc00;
  margin: 0 0 16px;
}

.footer-disclaimer h4 {
  color: #21b2ff;
  margin-bottom: 8px;
}

.footer-disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-disclaimer p,
.footer-disclaimer ul {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}

.copy {
  padding: 10px 0 0;
  text-align: center;
}

.copy p {
  margin: 4px 0;
  font-size: 13px;
}

.copy-note {
  font-size: 12px;
  color: #9ca3af;
}

.age {
  padding: 20px;
  background: #f8f9fa;
  color: #1f2933;
  border-radius: 5px;
  margin: 20px auto;
  max-width: 1140px;
  font-size: 13px;
}

.age-title {
  font-size: 14px;
  color: #dc3545;
  font-weight: 700;
}

.age-en {
  font-size: 12px;
  margin-top: 12px;
  color: #6b7280;
}

.search-links {
  text-align: center;
  padding: 15px 0 5px;
}

.search-links a {
  margin: 0 10px;
}

.disclaimer-top {
  background: #fff3cd;
  padding: 10px 0;
  border-top: 1px solid #ffe58f;
  border-bottom: 2px solid #ffc107;
  position: sticky;
  bottom: 0;
  z-index: 999;
}

.disclaimer-top p {
  margin: 0;
  color: #856404;
  font-size: 13px;
  font-weight: 600;
}


@media (max-width: 991px) {
  .content-card {
    padding: 22px 18px 28px;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-disclaimer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }

  .header-bar {
    min-height: 64px;
  }

  .header-logo-img {
    height: 26px;
  }

  .header-buttons {
    gap: 10px;
  }

  .header-cta {
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .page-wrap {
    padding: 0 10px;
  }

  .content-card {
    padding: 18px 14px 24px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .age {
    margin: 15px 10px 0;
  }

  .disclaimer-top p {
    font-size: 12px;
  }
}
