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

:root {
  --color-dark: #1a1a1a;
  --color-btn-login: #e10600;
  --color-btn-reg: #ff1e1e;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #f5f5f5;
  --color-accent: #e10600;
  --color-accent-hover: #c00500;
  --color-reg-hover: #e01010;
  --color-border: #e0e0e0;
  --color-card-bg: #f9f9f9;
  --color-gold: #f5a623;
  --color-green: #27ae60;
  --color-green-light: #d4edda;
  --color-red-light: #fdecea;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

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

a {
  color: var(--color-accent);
  transition: color var(--transition);
}
a:hover {
  color: var(--color-accent-hover);
}

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.container--wide {
  max-width: 1400px;
}

.box {
  padding: 24px 0;
}

.section {
  padding: 56px 0;
}

.section--sm {
  padding: 36px 0;
}

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

h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
h3 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  margin-bottom: 12px;
  line-height: 1.7;
}
ul,
ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.btn:active {
  transform: translateY(0);
}

.btn--red {
  background: var(--color-btn-login);
  color: #fff;
}
.btn--red:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn--reg {
  background: var(--color-btn-reg);
  color: #fff;
}
.btn--reg:hover {
  background: var(--color-reg-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #333;
  color: #fff;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
}

.btn--bonus {
  background: linear-gradient(135deg, #e10600 0%, #ff4500 100%);
  color: #fff;
  font-weight: 700;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #c00500 0%, #e03800 100%);
  color: #fff;
}

.header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.header__logo-text span {
  color: var(--color-btn-reg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.header__nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__online {
  font-size: 0.75rem;
  color: #aaa;
  white-space: nowrap;
}
.header__online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #27ae60;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  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 {
  display: none;
  background: #111;
  padding: 16px;
  border-top: 1px solid #333;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.mobile-nav__divider {
  height: 1px;
  background: #333;
  margin: 10px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.6s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.4) 60%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.hero__badge {
  display: inline-block;
  background: var(--color-btn-reg);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero__title {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.hero__title span {
  color: var(--color-btn-reg);
}

.hero__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider__slide {
  min-width: 100%;
  position: relative;
}

.hero-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  padding: 0;
}

.hero-slider__dot.active {
  background: #fff;
  transform: scale(1.25);
}

.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 1.1rem;
}

.hero-slider__prev {
  left: 16px;
}
.hero-slider__next {
  right: 16px;
}
.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-cons__col {
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pros-cons__col--pros {
  background: var(--color-green-light);
  border-left: 4px solid var(--color-green);
}
.pros-cons__col--cons {
  background: var(--color-red-light);
  border-left: 4px solid var(--color-btn-reg);
}

.pros-cons__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pros-cons__col--pros .pros-cons__title {
  color: #1a6b38;
}
.pros-cons__col--cons .pros-cons__title {
  color: #b71c1c;
}

.pros-cons__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pros-cons__list li:last-child {
  border-bottom: none;
}

.pros-cons__list li::before {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.pros-cons__col--pros li::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
}
.pros-cons__col--cons li::before {
  content: "✕";
  color: var(--color-btn-reg);
  font-weight: 700;
}

.jackpots {
  background: var(--color-dark);
  padding: 40px 0;
}

.jackpots__title {
  color: #fff;
}
.jackpots__title::after {
  background: var(--color-btn-reg);
}
.jackpots__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.jackpots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.jackpot-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid #333;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(225, 6, 0, 0.2);
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-btn-reg), var(--color-gold));
}

.jackpot-card__game {
  color: #aaa;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.jackpot-card__amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
}
.jackpot-card__currency {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}
.jackpot-card__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.winners {
  padding: 40px 0;
  background: #f8f8f8;
}

.winners-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.winners-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.winners-table td {
  padding: 11px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:hover td {
  background: #fef5f5;
}

.winners-table .rank {
  font-weight: 700;
  color: #888;
  width: 40px;
}
.winners-table .rank--gold {
  color: #f5a623;
}
.winners-table .rank--silver {
  color: #aaa;
}
.winners-table .rank--bronze {
  color: #cd7f32;
}

.winners-table .amount {
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
}

.winners-table .nick {
  font-weight: 500;
}

.app-info {
  padding: 40px 0;
}

.app-info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-table td {
  padding: 11px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-align: left;
}

.app-table td:first-child {
  color: #666;
  font-weight: 500;
  width: 45%;
  background: #f9f9f9;
}
.app-table tr:last-child td {
  border-bottom: none;
}

.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  background: var(--color-dark);
  font-weight: 600;
  transition:
    background var(--transition),
    transform var(--transition);
}

.download-btn:hover {
  background: #333;
  color: #fff;
  transform: translateX(3px);
}

.download-btn--ios {
  background: #0a0a0a;
}
.download-btn--android {
  background: #1a8a1a;
}
.download-btn--apk {
  background: #e10600;
}

.download-btn__icon {
  font-size: 1.5rem;
}
.download-btn__text-sm {
  font-size: 0.72rem;
  opacity: 0.75;
  line-height: 1;
}
.download-btn__text-lg {
  font-size: 0.95rem;
  font-weight: 700;
}

.slot-game {
  padding: 40px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

.slot-game__title {
  color: #fff;
}
.slot-game__title::after {
  background: var(--color-btn-reg);
}
.slot-game__subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.slot-machine {
  max-width: 400px;
  margin: 0 auto;
  background: #111;
  border: 2px solid #333;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 60px rgba(225, 6, 0, 0.15);
  text-align: center;
}

.slot-machine__reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  background: #0a0a0a;
  border: 2px solid #333;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  overflow: hidden;
  position: relative;
}

.slot-machine__reel {
  width: 64px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #1a1a1a;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: relative;
}

.slot-machine__reel.spinning {
  animation: reel-spin 0.15s linear infinite;
}

@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.slot-machine__result {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 16px;
}

.slot-machine__result--win {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.1rem;
}
.slot-machine__result--loss {
  color: #e10600;
  font-weight: 600;
}

.slot-machine__spin {
  background: linear-gradient(135deg, #e10600 0%, #ff4500 100%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-md);
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  width: 100%;
}

.slot-machine__spin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.35);
}
.slot-machine__spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.slot-machine__win-btn {
  margin-top: 12px;
  display: none;
}
.slot-machine__win-btn.visible {
  display: block;
}

.reviews {
  padding: 48px 0;
  background: #f5f5f5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}
.review-card__date {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
}

.review-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.review-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: "Roboto", sans-serif;
  font-size: 0.92rem;
  color: var(--color-text);
  background: #fff;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--color-green);
  font-weight: 600;
  font-size: 1rem;
}

.form-success.visible {
  display: block;
}

.footer {
  background: var(--color-dark);
  color: #ccc;
  padding: 40px 0 20px;
}

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #333;
  margin-bottom: 24px;
}

.footer__logo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer__logo-text span {
  color: var(--color-btn-reg);
}

.footer__tagline {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer__col-title {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__nav a:hover {
  color: #fff;
}

.footer__payments,
.footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.footer__badge {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 500;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: #666;
}

.footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal a {
  color: #666;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color var(--transition);
}
.footer__legal a:hover {
  color: #aaa;
}

.footer__license {
  font-size: 0.75rem;
  color: #555;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1a1a 0%, #0d0d0d 100%);
  border-top: 2px solid var(--color-btn-reg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-widget__text {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}
.bonus-widget__text strong {
  color: var(--color-gold);
}

.bonus-widget__close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.bonus-widget__close:hover {
  color: #fff;
}

.bonus-widget a {
  text-decoration: none;
}

.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bonus-card__head {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  padding: 20px;
  text-align: center;
  position: relative;
}

.bonus-card__head::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #2a2a2a;
}

.bonus-card__icon {
  font-size: 2rem;
  margin-bottom: 6px;
}
.bonus-card__type {
  color: #aaa;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-card__amount {
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 4px;
}

.bonus-card__body {
  padding: 24px 20px 20px;
}

.bonus-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-card__desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.5;
}

.bonus-card__conditions {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bonus-card__conditions li {
  font-size: 0.82rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonus-card__conditions li::before {
  content: "—";
  color: var(--color-accent);
  font-weight: 700;
}

.promo-highlight {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a0000 100%);
  border: 2px solid var(--color-btn-reg);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(225, 6, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.promo-highlight__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.promo-highlight__code {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  display: block;
}

.promo-highlight__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.promo-copy-btn {
  background: var(--color-btn-reg);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition:
    background var(--transition),
    transform var(--transition);
}

.promo-copy-btn:hover {
  background: var(--color-reg-hover);
  transform: scale(1.03);
}
.promo-copy-btn.copied {
  background: var(--color-green);
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 480px;
}

.info-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 13px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.info-table td {
  padding: 11px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-align: left;
}

.info-table td:first-child {
  color: #666;
  font-weight: 500;
  background: #f8f8f8;
  width: 40%;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:hover td {
  background: #fef9f9;
}
.info-table tr:hover td:first-child {
  background: #f3f3f3;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 560px;
}

.compare-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
  font-size: 0.85rem;
}

.compare-table td {
  padding: 11px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-align: left;
}

.compare-table td:first-child {
  font-weight: 600;
  background: #f8f8f8;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table .check {
  color: var(--color-green);
  font-weight: 700;
}
.compare-table .cross {
  color: var(--color-btn-reg);
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.reg-method {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  background: #fff;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

.reg-method:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.reg-method__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.reg-method__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.reg-method__desc {
  font-size: 0.78rem;
  color: #888;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.advantage-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition);
}

.advantage-card:hover {
  transform: translateY(-3px);
}
.advantage-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.advantage-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.advantage-card__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.faq {
  padding: 48px 0;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  transition: background var(--transition);
  gap: 12px;
  user-select: none;
}

.faq-item__question:hover {
  background: #fef5f5;
}

.faq-item__question.open {
  background: var(--color-dark);
  color: #fff;
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item__question.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-btn-reg);
}

.faq-item__answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.faq-item__answer.open {
  display: block;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
  margin-top: 36px;
}

.author-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e10600, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.author-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-card__role {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 10px;
}
.author-card__bio {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-card__links {
  display: flex;
  gap: 10px;
}
.author-card__links a {
  font-size: 0.82rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.author-card__links a:hover {
  text-decoration: underline;
}

.mirror-ways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.mirror-way {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.mirror-way:hover {
  border-top-color: var(--color-accent);
  transform: translateY(-3px);
}
.mirror-way__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.mirror-way__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.mirror-way__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.mirror-trouble {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--color-border);
}

.mirror-trouble__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mirror-trouble__desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.mirror-trouble__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.slot-card {
  background: var(--color-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #333;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(225, 6, 0, 0.2);
}

.slot-card__img {
  height: 110px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.slot-card__demo {
  position: absolute;
  inset: 0;
  background: rgba(225, 6, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition);
}

.slot-card:hover .slot-card__demo {
  opacity: 1;
}

.slot-card__body {
  padding: 12px;
}
.slot-card__name {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.slot-card__provider {
  color: #888;
  font-size: 0.75rem;
}
.slot-card__rtp {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.slot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.slot-feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition);
}

.slot-feature:hover {
  transform: translateX(4px);
}
.slot-feature__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.slot-feature__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.slot-feature__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.breadcrumbs {
  padding: 12px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 0.82rem;
  color: #888;
}
.breadcrumbs__item a {
  color: var(--color-accent);
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}
.breadcrumbs__sep {
  color: #ccc;
}

.section-bg-dark {
  background: #0d0d0d;
}
.section-bg-gray {
  background: #f5f5f5;
}
.section-bg-red {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a0000 100%);
}

.content-review {
  padding: 48px 0;
}

.content-review__inner {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow);
}

.content-review__inner h2,
.content-review__inner h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-review__inner h2:first-child,
.content-review__inner h3:first-child {
  margin-top: 0;
}

.content-review__inner ul,
.content-review__inner ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.content-review__inner li {
  margin-bottom: 7px;
  line-height: 1.65;
  font-size: 0.93rem;
  color: #444;
}

.content-review__inner p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-review__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}

.content-review__inner table th {
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}

.content-review__inner table td {
  padding: 9px 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.content-review__inner table tr:last-child td {
  border-bottom: none;
}

.technical-content {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow);
}

.technical-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.technical-content h2:first-child {
  margin-top: 0;
}
.technical-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #333;
}
.technical-content p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.technical-content li {
  margin-bottom: 7px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

.mobile-slider {
  position: relative;
  overflow: hidden;
}
.mobile-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}
.mobile-slider__slide {
  min-width: 100%;
}

.fadeIn {
  animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 48px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

.hidden {
  display: none !important;
}
.visible {
  display: block !important;
}

.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.gap-2 {
  gap: 16px;
}
.flex-wrap {
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.badge--hot {
  background: var(--color-btn-reg);
  color: #fff;
}
.badge--new {
  background: var(--color-green);
  color: #fff;
}
.badge--popular {
  background: var(--color-gold);
  color: #1a1a1a;
}

.wp-block-separator {
  display: none;
}
.elementor-hidden {
  display: none;
}
.woocommerce-hidden {
  display: none;
}
.wc-block-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-caption-text {
  font-size: 0;
  opacity: 0;
  pointer-events: none;
}

.xf72kq {
  display: none;
}
.zp19mx {
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.a4b9r1 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .app-info__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__content {
    padding: 40px 0;
  }
  .hero {
    min-height: 340px;
  }
  .bonus-widget {
    flex-wrap: wrap;
  }
  .bonus-widget__text {
    font-size: 0.82rem;
  }
  .content-review__inner {
    padding: 20px;
  }
  .technical-content {
    padding: 20px;
  }
  .review-form {
    padding: 20px;
  }
  .info-table-wrap {
    overflow-x: auto;
  }
  .author-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 36px 0;
  }
  .slot-machine {
    padding: 20px 14px;
  }
  .promo-highlight {
    padding: 24px 16px;
  }
  .hero-slider__prev,
  .hero-slider__next {
    display: none;
  }
}

.f9k2a-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.x7m3-header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.x7m3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.b4r1-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.b4r1-hero--static .b4r1-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.b4r1-hero--slider {
  padding: 0;
  min-height: 480px;
}

.b4r1-hero__slides {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.b4r1-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.b4r1-hero__slide--active {
  opacity: 1;
  position: relative;
}

.b4r1-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.b4r1-hero__caption {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 16px 80px;
  margin: 0 auto;
}

.b4r1-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}

.b4r1-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.6;
}

.b4r1-hero__text {
  color: #fff;
}

.b4r1-hero__img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.b4r1-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(225, 6, 0, 0.85);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.b4r1-hero__nav:hover {
  background: var(--color-accent);
}
.b4r1-hero__nav--prev {
  left: 16px;
}
.b4r1-hero__nav--next {
  right: 16px;
}

.b4r1-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.b4r1-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.b4r1-hero__dot--active {
  background: #fff;
}

.p3w9-section {
  padding: 56px 0;
}

.p3w9-section--content {
  padding: 40px 0;
}

.p3w9-section--technical {
  padding: 48px 0;
}

.p3w9-section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 32px;
  text-align: center;
}

.q5t8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.q5t8-btn--primary {
  background: var(--color-btn-reg);
  color: #fff;
}

.q5t8-btn--primary:hover {
  background: var(--color-reg-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 30, 30, 0.35);
}

.q5t8-btn--accent {
  background: var(--color-btn-login);
  color: #fff;
}

.q5t8-btn--accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.q5t8-btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.q5t8-btn--secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.q5t8-btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}
.q5t8-btn--sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.r6v2-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.r6v2-method-card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.r6v2-method-card--active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.r6v2-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.r6v2-method-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.r6v2-method-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.r6v2-method-card__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 16px;
}

.t2b5-table-wrap {
  overflow-x: auto;
}

.t2b5-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 0 auto;
}

.t2b5-table th,
.t2b5-table td {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  text-align: left;
}

.t2b5-table th {
  background: var(--color-dark);
  color: #fff;
  font-weight: 600;
}

.t2b5-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.t2b5-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
}

.t2b5-badge--green {
  background: var(--color-green-light);
  color: #1a7a3f;
}
.t2b5-badge--yellow {
  background: #fff8e1;
  color: #a07800;
}
.t2b5-badge--red {
  background: var(--color-red-light);
  color: #c00500;
}

.m8z1-notwork-block {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}

.m8z1-notwork-block__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.m8z1-notwork-block__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.m8z1-issues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.m8z1-issue-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.m8z1-issue-btn:hover,
.m8z1-issue-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.m8z1-solution {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.m8z1-solution__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.m8z1-solution__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.6;
}

.j5k9-jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.j5k9-jackpot-card {
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.j5k9-jackpot-card--gold {
  background: linear-gradient(135deg, #f5a623, #e8941a);
  color: #fff;
}
.j5k9-jackpot-card--silver {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: #fff;
}
.j5k9-jackpot-card--bronze {
  background: linear-gradient(135deg, #cd7f32, #b06820);
  color: #fff;
}

.j5k9-jackpot-card__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.j5k9-jackpot-card__amount {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.f3p7-feature-card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}

.f3p7-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--color-accent);
}

.f3p7-feature-card__icon {
  margin-bottom: 16px;
}
.f3p7-feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.f3p7-feature-card__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.n4b7-breadcrumbs {
  padding: 16px 0;
}
.n4b7-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.n4b7-breadcrumbs__link {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.88rem;
}
.n4b7-breadcrumbs__link:hover {
  text-decoration: underline;
}
.n4b7-breadcrumbs__sep {
  color: #999;
  font-size: 0.88rem;
}
.n4b7-breadcrumbs__item--current {
  font-size: 0.88rem;
  color: #666;
}

.c1x7-content-block {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--color-border);
}

.c1x7-content-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--color-text);
}
.c1x7-content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 22px 0 10px;
  color: var(--color-text);
}
.c1x7-content-block p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #333;
}
.c1x7-content-block ul,
.c1x7-content-block ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.c1x7-content-block li {
  line-height: 1.7;
  margin-bottom: 6px;
}
.c1x7-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.c1x7-content-block table th,
.c1x7-content-block table td {
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
}
.c1x7-content-block table th {
  background: var(--color-dark);
  color: #fff;
  font-weight: 600;
}
.c1x7-content-block a {
  color: var(--color-accent);
}
.c1x7-content-block a:hover {
  text-decoration: underline;
}

.c1x7-technical-block {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1.5px solid var(--color-border);
  max-width: 860px;
  margin: 0 auto;
}

.c1x7-technical-block__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-accent);
}

.w9k2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--color-dark) 0%, #2d2d2d 100%);
  border-top: 2px solid var(--color-accent);
}

.w9k2-widget__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.w9k2-widget__text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.w9k2-widget__btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-btn-reg);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.w9k2-widget__btn:hover {
  background: var(--color-reg-hover);
  color: #fff;
  transform: scale(1.03);
}

.w9k2-widget__close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
  margin-left: auto;
}

.w9k2-widget__close:hover {
  color: #fff;
}

.a7q3-faq {
  max-width: 800px;
  margin: 0 auto;
}

.a7q3-faq__item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.a7q3-faq__question {
  width: 100%;
  padding: 18px 20px;
  background: var(--color-card-bg);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.a7q3-faq__question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition);
}

.a7q3-faq__item--open .a7q3-faq__question {
  background: #fff;
}
.a7q3-faq__item--open .a7q3-faq__question::after {
  transform: rotate(45deg);
}

.a7q3-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
}

.a7q3-faq__item--open .a7q3-faq__answer {
  max-height: 400px;
  padding: 16px 20px 20px;
}

.a7q3-faq__answer p {
  color: #444;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .r6v2-methods-grid {
    grid-template-columns: 1fr 1fr;
  }
  .f3p7-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .j5k9-jackpots-grid {
    grid-template-columns: 1fr;
  }
  .b4r1-hero--static .b4r1-hero__inner {
    grid-template-columns: 1fr;
  }
  .b4r1-hero__img-wrap {
    display: none;
  }
}

@media (max-width: 600px) {
  .r6v2-methods-grid {
    grid-template-columns: 1fr;
  }
  .f3p7-features-grid {
    grid-template-columns: 1fr;
  }
  .c1x7-content-block {
    padding: 24px 16px;
  }
  .c1x7-technical-block {
    padding: 28px 16px;
  }
  .m8z1-notwork-block {
    padding: 28px 16px;
  }
  .b4r1-hero__caption {
    padding: 48px 16px;
  }
  .w9k2-widget__inner {
    gap: 10px;
  }
  .w9k2-widget__text {
    font-size: 0.85rem;
  }
}

.hero.hero-slider {
  display: block;
  width: 100%;
}

.hero-slider__track {
  width: 100%;
}

.hero-slider__slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

.hero-slider__slide > .container {
  position: relative;
  z-index: 2;
}

.x7m3-container,
.container,
.p3w9-section,
.c1x7-content-block,
.content-review,
.content-review__inner,
.technical-content {
  min-width: 0;
  max-width: 100%;
}

.c1x7-content-block,
.content-review__inner,
.technical-content {
  overflow-wrap: anywhere;
  word-break: normal;
}

.c1x7-content-block img,
.content-review__inner img,
.technical-content img,
.c1x7-content-block iframe,
.content-review__inner iframe,
.technical-content iframe,
.c1x7-content-block video,
.content-review__inner video,
.technical-content video {
  max-width: 100%;
  height: auto;
}

.c1x7-content-block table,
.content-review__inner table,
.technical-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.c1x7-content-block a,
.content-review__inner a,
.technical-content a {
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .hero,
  .hero-slider,
  .hero-slider__track,
  .hero-slider__slide {
    width: 100%;
    max-width: 100%;
  }

  .hero__content {
    max-width: 100%;
    padding: 48px 0;
  }

  .hero__title {
    font-size: clamp(30px, 9vw, 46px);
    line-height: 1.18;
  }

  .c1x7-content-block,
  .content-review__inner,
  .technical-content {
    padding: 24px 16px;
  }

  .c1x7-content-block table,
  .content-review__inner table,
  .technical-content table {
    font-size: 13px;
  }

  .c1x7-content-block table th,
  .c1x7-content-block table td,
  .content-review__inner table th,
  .content-review__inner table td,
  .technical-content table th,
  .technical-content table td {
    padding: 8px 10px;
  }
}
