*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-bg: #ffffff;
  --clr-dark: #1a1a1a;
  --clr-red: #e10600;
  --clr-red2: #ff1e1e;
  --clr-text: #1a1a1a;
  --clr-text-light: #ffffff;
  --clr-muted: #555555;
  --clr-border: #e0e0e0;
  --clr-surface: #f5f5f5;
  --clr-surface2: #fafafa;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --transition: 0.2s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-red2);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--clr-text);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}
p {
  margin-bottom: 1rem;
}
ul {
  margin: 0 0 1rem 1.5rem;
}
ol {
  margin: 0 0 1rem 1.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.btn--login {
  background: var(--clr-red);
  color: #fff;
}
.btn--login:hover {
  background: #c90500;
  color: #fff;
}
.btn--signup {
  background: var(--clr-red2);
  color: #fff;
}
.btn--signup:hover {
  background: #e00000;
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #e10600, #ff1e1e);
  color: #fff;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #c90500, #e00000);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.header {
  background: var(--clr-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header__nav a {
  color: #ccc;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  background: rgba(225, 6, 0, 0.15);
  color: var(--clr-red2);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__online {
  font-size: 0.75rem;
  color: #aaa;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__online-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.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: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--clr-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 16px;
}
.hero__badge {
  display: inline-block;
  background: var(--clr-red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.hero__title {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero__desc {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.swiper-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--clr-dark);
}
.swiper-slide {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.swiper-slide__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 16px;
  max-width: 700px;
  margin: 0 auto;
}
.swiper-slide__title {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.swiper-slide__desc {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 24px;
}
.swiper-pagination {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.swiper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.swiper-dot.active {
  background: #fff;
}
.swiper-prev,
.swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.swiper-prev {
  left: 14px;
}
.swiper-next {
  right: 14px;
}
.swiper-prev:hover,
.swiper-next:hover {
  background: var(--clr-red);
}

.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--clr-muted);
}
.breadcrumbs a {
  color: var(--clr-red);
}
.breadcrumbs span {
  margin: 0 6px;
  color: #bbb;
}

.section {
  padding: 48px 0;
}
.section--gray {
  background: var(--clr-surface);
}
.section--dark {
  background: var(--clr-dark);
}
.section__title {
  margin-bottom: 8px;
}
.section__subtitle {
  color: var(--clr-muted);
  margin-bottom: 28px;
}

.block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}
.block--accent {
  border-left: 4px solid var(--clr-red);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}
table th {
  background: var(--clr-dark);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
}
table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:nth-child(even) td {
  background: var(--clr-surface);
}
table td a {
  color: var(--clr-red);
  font-weight: 600;
}

.mirror-date {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.mirror-date strong {
  color: var(--clr-text);
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshots img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.screenshots img:hover {
  transform: scale(1.03);
}

.winners-table {
  max-height: 520px;
  overflow-y: auto;
}
.winners-table .rank {
  font-weight: 700;
  color: var(--clr-red);
  min-width: 32px;
}
.winners-table .win-sum {
  font-weight: 700;
  color: #2e7d32;
}

.app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.app-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}
.app-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.wheel-btn {
  background: var(--clr-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.wheel-btn:hover {
  background: var(--clr-red2);
  transform: scale(1.04);
}
.wheel-result {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 60px;
}
.wheel-result.win {
  color: #2e7d32;
}
.wheel-result.lose {
  color: var(--clr-red);
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--clr-border);
}
.author-block img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info h4 {
  margin-bottom: 4px;
}
.author-info p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 8px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-socials a {
  font-size: 0.8rem;
  color: var(--clr-red);
  border: 1px solid var(--clr-red);
  border-radius: 6px;
  padding: 3px 10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.author-socials a:hover {
  background: var(--clr-red);
  color: #fff;
}

.content-text {
  font-size: 1rem;
  line-height: 1.7;
}
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  margin: 1.4em 0 0.6em;
}
.content-text p {
  margin-bottom: 1em;
}
.content-text ul,
.content-text ol {
  margin: 0 0 1em 1.5em;
}
.content-text li {
  margin-bottom: 0.4em;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-text table th {
  background: var(--clr-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}
.content-text table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
}
.content-text a {
  color: var(--clr-red);
}
.content-text blockquote {
  border-left: 4px solid var(--clr-red);
  padding: 0.6em 1em;
  margin: 1em 0;
  background: var(--clr-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--clr-muted);
}
.content-text img {
  border-radius: var(--radius);
  margin: 1em auto;
}
.content-text strong,
.content-text b {
  color: var(--clr-text);
}

.footer {
  background: var(--clr-dark);
  color: #bbb;
  padding: 40px 0 20px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer__top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer__logo img {
  height: 36px;
  margin-bottom: 12px;
}
.footer__col h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer__col a {
  display: block;
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--clr-red2);
}
.footer__payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.footer__payment-badge {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
}
.footer__providers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.footer__provider-badge {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #ccc;
}
.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 16px;
  font-size: 0.78rem;
  color: #777;
  text-align: center;
  line-height: 1.8;
}
.footer__legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer__legal-links a {
  color: #888;
  font-size: 0.78rem;
}
.footer__legal-links a:hover {
  color: #ccc;
}

.widget-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1a1a1a, #2a0000);
  border-top: 2px solid var(--clr-red);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.3s;
}
.widget-bottom.hidden {
  transform: translateY(110%);
}
.widget-bottom__text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-bottom__badge {
  background: var(--clr-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.widget-bottom__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.widget-bottom__close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.widget-bottom__close:hover {
  color: #fff;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  user-select: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--clr-red);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: 10px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border-top: 4px solid var(--clr-red);
  text-align: center;
  transition: transform 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.bonus-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.bonus-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
}
.bonus-card__val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-red);
  margin: 8px 0;
}

.promo-section {
  background: linear-gradient(135deg, #1a0000, #2a0000);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: #fff;
}
.promo-section__label {
  font-size: 0.85rem;
  color: #ff9999;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.promo-section__code {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 32px;
  display: inline-block;
  margin: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-section__code:hover {
  background: rgba(255, 255, 255, 0.2);
}
.promo-section__hint {
  font-size: 0.85rem;
  color: #ccc;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.method-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  padding: 20px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.method-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.method-card__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.method-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.method-card__desc {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.advantage-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.advantage-card:hover {
  box-shadow: var(--shadow);
}
.advantage-card__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.advantage-card__title {
  font-weight: 700;
  font-size: 0.95rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--clr-border);
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--clr-muted);
  width: 40%;
}
.specs-table td:last-child {
  color: var(--clr-text);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.slot-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
}
.slot-card:hover {
  transform: translateY(-4px);
}
.slot-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.slot-card__body {
  padding: 12px;
}
.slot-card__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.slot-card__provider {
  font-size: 0.78rem;
  color: var(--clr-muted);
}
.slot-card__rtp {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--clr-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  background: var(--clr-red);
  transform: translateY(-2px);
}
.cat-card__icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.cat-card__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.feature-card {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--clr-border);
}
.feature-card__icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.feature-card__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.tech-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px;
}
.tech-page h1 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-border);
}
.tech-page h2 {
  margin: 28px 0 12px;
  color: var(--clr-text);
}
.tech-page h3 {
  margin: 20px 0 8px;
}
.tech-page p {
  margin-bottom: 1em;
  color: #444;
  line-height: 1.7;
}
.tech-page ul,
.tech-page ol {
  margin: 0 0 1em 1.5em;
}
.tech-page li {
  margin-bottom: 0.4em;
  color: #444;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--clr-red);
  color: #fff;
}
.badge--green {
  background: #2e7d32;
}
.badge--dark {
  background: var(--clr-dark);
}

.wp-block-image {
  margin: 1em 0;
}
.wp-caption-text {
  font-size: 0.85rem;
  color: var(--clr-muted);
  text-align: center;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: var(--clr-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .burger {
    display: flex;
  }
  .screenshots {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .author-block {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero__inner {
    padding: 40px 12px;
  }
  .widget-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .widget-bottom__actions {
    width: 100%;
    justify-content: center;
  }
  .app-btns {
    flex-direction: column;
  }
  .footer__top {
    flex-direction: column;
    gap: 20px;
  }
  .bonus-cards {
    grid-template-columns: 1fr;
  }
}

.xb7f2 {
  display: none !important;
}
.wp-6t3k1,
.wp-7r9n2 {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.block.content-text {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.block.content-text table {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.block.content-text table tbody {
  width: max-content;
  min-width: 100%;
}

.block.content-text table th,
.block.content-text table td {
  min-width: 120px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 600px) {
  .block.content-text {
    padding: 18px 14px;
  }

  .block.content-text table {
    font-size: 0.82rem;
  }

  .block.content-text table th,
  .block.content-text table td {
    min-width: 110px;
    padding: 8px 10px;
  }
}
