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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Roboto", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #e10600;
  text-decoration: none;
}
a:hover {
  color: #ff1e1e;
}

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

.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #ccc;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  color: #aaa;
  font-size: 0.75rem;
  text-align: right;
  line-height: 1.3;
}
.header-online span {
  color: #4caf50;
  font-weight: 700;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.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);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(0);
}
.btn--sm {
  font-size: 0.8rem;
  padding: 7px 14px;
}
.btn--md {
  font-size: 0.875rem;
  padding: 9px 18px;
}
.btn--lg {
  font-size: 1rem;
  padding: 13px 28px;
}
.btn--xl {
  font-size: 1.15rem;
  padding: 16px 36px;
}
.btn--red {
  background: #e10600;
  color: #fff;
}
.btn--red:hover {
  background: #c50500;
  color: #fff;
}
.btn--green {
  background: #ff1e1e;
  color: #fff;
}
.btn--green:hover {
  background: #e01010;
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #e10600, #ff6b00);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 2px solid #e10600;
  color: #e10600;
}
.btn--outline:hover {
  background: #e10600;
  color: #fff;
}
.btn--gold {
  background: linear-gradient(135deg, #f5a623, #e8870f);
  color: #fff;
}
.btn--dark {
  background: #1a1a1a;
  color: #fff;
}

.hero {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  color: #e10600;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ddd;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.section {
  padding: 60px 0;
}
.section--dark {
  background: #f7f7f7;
}
.section--darker {
  background: #1a1a1a;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.section-title--light {
  color: #fff;
}
.section-subtitle {
  color: #666;
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.section-subtitle--light {
  color: #aaa;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.55;
}
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid--6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.jackpot-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 0 16px 40px;
  position: relative;
  overflow: hidden;
}
.jackpot-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.jackpot-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 8px;
}
.jackpot-amount {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #f5a623;
  line-height: 1;
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}
.jackpot-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5a623;
}
.jackpot-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.jackpot-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 24px;
  min-width: 160px;
}
.jackpot-item-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.jackpot-item-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f5a623;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}
.screenshot-item:hover img {
  transform: scale(1.04);
}

.tournament-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-top: 3px solid #e10600;
}
.tournament-card-header {
  background: #1a1a1a;
  padding: 16px 20px;
  color: #fff;
}
.tournament-card-title {
  font-size: 1rem;
  font-weight: 700;
}
.tournament-card-body {
  padding: 20px;
}
.tournament-card-desc {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 12px;
}
.tournament-timer {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: #e10600;
  font-weight: 600;
}
.tournament-prize {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 8px;
}
.tournament-prize-label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.slot-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.slot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}
.slot-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 8px;
}
.slot-card-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.slot-card .btn {
  width: 100%;
  font-size: 0.75rem;
  padding: 6px;
}

.wheel-section {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 0 16px 40px;
}
.wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 24px auto;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(225, 6, 0, 0.3);
}
.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid #f5a623;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.wheel-result {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: none;
}
.wheel-result.show {
  display: block;
  animation: fadeIn 0.4s ease;
}
.wheel-result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 8px;
}

.author-block {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #e10600;
}
.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-bio {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.55;
}
.author-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.author-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #e10600;
  border: 1px solid #e10600;
  border-radius: 4px;
  padding: 4px 10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.author-social a:hover {
  background: #e10600;
  color: #fff;
}

.content-block {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4 {
  color: #1a1a1a;
  margin: 1.4em 0 0.6em;
  line-height: 1.3;
}
.content-block h1 {
  font-size: 2rem;
}
.content-block h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}
.content-block h3 {
  font-size: 1.2rem;
}
.content-block h4 {
  font-size: 1rem;
}
.content-block p {
  margin-bottom: 1em;
  color: #333;
  line-height: 1.7;
}
.content-block ul,
.content-block ol {
  margin: 1em 0 1em 1.5em;
  color: #333;
}
.content-block li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.content-block a {
  color: #e10600;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.875rem;
}
.content-block table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
  color: #333;
}
.content-block table tr:nth-child(even) td {
  background: #f9f9f9;
}
.content-block blockquote {
  border-left: 4px solid #e10600;
  padding: 12px 20px;
  background: #fff5f5;
  margin: 1.5em 0;
  border-radius: 0 8px 8px 0;
  color: #444;
  font-style: italic;
}
.content-block img {
  border-radius: 8px;
  margin: 1em 0;
}
.content-block strong {
  color: #1a1a1a;
}
.content-block em {
  color: #555;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.info-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.875rem;
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
  color: #333;
  text-align: left;
}
.info-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  width: 40%;
  background: #f9f9f9;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 10px;
}

.bonus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card-top {
  background: linear-gradient(135deg, #e10600, #ff1e1e);
  padding: 20px;
  color: #fff;
  text-align: center;
}
.bonus-card-amount {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.bonus-card-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 4px;
}
.bonus-card-body {
  padding: 20px;
}
.bonus-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-card-features {
  list-style: none;
  font-size: 0.83rem;
  color: #555;
}
.bonus-card-features li {
  padding: 4px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonus-card-features li:last-child {
  border-bottom: none;
}
.bonus-card-features li::before {
  content: "✓";
  color: #e10600;
  font-weight: 700;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.comparison-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.875rem;
}
.comparison-table th:not(:first-child) {
  text-align: center;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
  color: #333;
}
.comparison-table td:not(:first-child) {
  text-align: center;
}
.comparison-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.comparison-table .highlight td {
  background: #fff5f5;
  font-weight: 600;
}
.comparison-table .check {
  color: #4caf50;
  font-size: 1.1rem;
}
.comparison-table .cross {
  color: #e10600;
  font-size: 1.1rem;
}

.promo-code-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  color: #fff;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
  border: 2px solid #f5a623;
}
.promo-code-value {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 28px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #f5a623;
}
.promo-copy-btn {
  background: #f5a623;
  color: #1a1a1a;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}
.promo-copy-btn:hover {
  background: #e8a010;
}

.faq {
  margin-top: 8px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f9f9f9;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: #e10600;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.mirror-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.mirror-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.official-link-block {
  background: linear-gradient(135deg, #e10600, #ff1e1e);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: #fff;
}
.official-link-block .btn {
  background: #fff;
  color: #e10600;
  margin-top: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}
.rtp-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.875rem;
}
.rtp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
}
.rtp-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.rtp-bar {
  height: 8px;
  border-radius: 4px;
  background: #e10600;
  display: inline-block;
}

.app-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-spec-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.app-spec-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-spec-list {
  list-style: none;
}
.app-spec-list li {
  font-size: 0.875rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
}
.app-spec-list li:last-child {
  border-bottom: none;
}
.app-spec-list li strong {
  color: #1a1a1a;
}

.video-wrap {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.video-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

.alt-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.alt-app-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: background 0.2s;
}
.alt-app-card:hover {
  background: #efefef;
}
.alt-app-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin: 0 auto 8px;
  object-fit: cover;
}
.alt-app-name {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reg-method-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}
.reg-method-card:hover {
  transform: translateY(-3px);
}
.reg-method-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.reg-method-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.reg-method-desc {
  font-size: 0.8rem;
  color: #666;
}

.bonus-reg-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
}
.bonus-reg-amount {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #f5a623;
  line-height: 1;
  white-space: nowrap;
}
.bonus-reg-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.bonus-reg-text p {
  font-size: 0.875rem;
  color: #bbb;
  margin-bottom: 16px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d0000 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3);
}
.widget-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.widget-text span {
  color: #f5a623;
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.site-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 48px 0 80px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
}
.footer-desc {
  font-size: 0.83rem;
  line-height: 1.6;
  color: #777;
  margin-top: 8px;
}
.footer-links h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #888;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-payments h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-logo {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ccc;
  white-space: nowrap;
}
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.provider-logo {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: #999;
}
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.7;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-legal-links a {
  color: #666;
  font-size: 0.78rem;
}
.footer-legal-links a:hover {
  color: #aaa;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #666;
  font-size: 0.78rem;
  font-weight: 700;
  color: #666;
  margin: 0 auto 10px;
}

.slider {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slider-track .card,
.slider-track .tournament-card,
.slider-track .bonus-card,
.slider-track .slot-card,
.slider-track .screenshot-item {
  flex-shrink: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: #e10600;
}
.slider-btn--prev {
  left: 4px;
}
.slider-btn--next {
  right: 4px;
}
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: #e10600;
  transform: scale(1.3);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider .slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider .slider-track .hero-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-slider .slider-btn {
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.tech-hero {
  background: #1a1a1a;
  padding: 40px 0 32px;
}
.tech-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 16px;
}
.tech-breadcrumb a {
  color: #888;
  transition: color 0.2s;
}
.tech-breadcrumb a:hover {
  color: #fff;
}
.tech-breadcrumb span {
  color: #555;
}
.tech-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.tech-content {
  max-width: 820px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--red {
  background: #fff0f0;
  color: #e10600;
}
.badge--green {
  background: #f0fff0;
  color: #2e7d32;
}
.badge--gold {
  background: #fffbe0;
  color: #9c6a00;
}
.badge--dark {
  background: #1a1a1a;
  color: #fff;
}

.get-bonus-block {
  background: linear-gradient(135deg, #e10600 0%, #ff1e1e 100%);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
  color: #fff;
}
.get-bonus-block h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.get-bonus-block p {
  opacity: 0.9;
  margin-bottom: 20px;
}
.get-bonus-block .btn {
  background: #fff;
  color: #e10600;
  font-size: 1rem;
  padding: 14px 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade {
  animation: fadeIn 0.5s ease both;
}
.pulse {
  animation: pulse 2s infinite;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #aaa;
}
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mb-5 {
  margin-bottom: 40px;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.d-none {
  display: none;
}

.wp-block-group {
  display: block;
}
.wp-site-blocks {
  padding: 0;
}
.entry-content {
  display: block;
}
.wp-content-wrapper {
  display: none;
}
.elementor-hidden {
  display: none !important;
}
.wpcf7-hidden {
  display: none !important;
}
.yoast-schema-graph {
  display: none;
}
.site-id-xa72 {
  display: none;
}
.nonce-field-8x2 {
  display: none;
}

@media (max-width: 1024px) {
  .grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .alt-apps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:last-child {
    grid-column: span 2;
  }
  .reg-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-specs {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    z-index: 999;
    gap: 0;
    overflow-y: auto;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }
  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  .header-inner {
    flex-wrap: nowrap;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .btn--md {
    font-size: 0.75rem;
    padding: 7px 10px;
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div:last-child {
    grid-column: span 1;
  }
  .jackpot-items {
    flex-direction: column;
    align-items: center;
  }
  .reg-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .author-block {
    flex-direction: column;
  }
  .bonus-reg-block {
    flex-direction: column;
    text-align: center;
  }
  .app-specs {
    grid-template-columns: 1fr;
  }
  .alt-apps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    min-height: 360px;
  }
  .hero-content {
    padding: 40px 16px;
  }
  .section {
    padding: 40px 0;
  }
  .sticky-widget {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
  .widget-close {
    top: 8px;
    right: 8px;
    transform: none;
  }
  .video-wrap iframe {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .promo-code-box {
    flex-direction: column;
    border-radius: 8px;
  }
  .promo-code-value,
  .promo-copy-btn {
    width: 100%;
    border-radius: 0;
  }
}


*{box-sizing:border-box}
html,body{max-width:100%;overflow-x:hidden}
.container,.wrapper,main,.section{min-width:0;max-width:100%}
[data-slider]{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;overflow:hidden!important}
[data-slider] .slider-track{display:flex!important;gap:16px!important;width:max-content!important;max-width:none!important;min-width:0!important;align-items:stretch!important;will-change:transform}
[data-slider] .slider-track>*{box-sizing:border-box!important;flex:0 0 auto!important;margin-right:0!important;min-width:0!important;max-width:none}
.slots-grid[data-slider]{grid-template-columns:none!important}
.slots-grid[data-slider] .slider-track{gap:12px!important}
.tournament-card,.bonus-card,.slot-card,.card,.screenshot-item{overflow:hidden;min-width:0}
.tournament-card-body,.bonus-card-body,.card-body{min-width:0;overflow-wrap:anywhere}
.tournament-timer{flex-wrap:wrap}
@media(max-width:768px){
  [data-slider] .slider-track{gap:12px!important}
  [data-slider] .slider-track>*{width:100%!important;min-width:100%!important;max-width:100%!important}
  .slots-grid[data-slider] .slider-track{gap:10px!important}
  .slots-grid[data-slider] .slider-track>*{width:calc(50vw - 28px)!important;min-width:calc(50vw - 28px)!important;max-width:calc(50vw - 28px)!important}
  .tournament-card,.bonus-card{border-radius:10px}
  .tournament-card-header,.tournament-card-body,.bonus-card-top,.bonus-card-body{padding-left:16px;padding-right:16px}
  .slider-btn{display:none!important}
}
@media(max-width:480px){
  .slots-grid[data-slider] .slider-track>*{width:calc(50vw - 22px)!important;min-width:calc(50vw - 22px)!important;max-width:calc(50vw - 22px)!important}
  .slot-card{padding:10px}
  .slot-card img{width:64px;height:64px}
}

@media (min-width:769px){
  [data-slider]:not(.hero-slider).slider-static{overflow:visible!important}
  [data-slider]:not(.hero-slider).slider-static .slider-track{transform:none!important;width:100%!important;max-width:100%!important;display:grid!important;grid-template-columns:repeat(var(--desktop-columns,3),minmax(0,1fr))!important;gap:16px!important;will-change:auto!important}
  [data-slider][data-per-view="6"]:not(.hero-slider).slider-static .slider-track{--desktop-columns:6}
  [data-slider][data-per-view="4"]:not(.hero-slider).slider-static .slider-track{--desktop-columns:4}
  [data-slider][data-per-view="3"]:not(.hero-slider).slider-static .slider-track{--desktop-columns:3}
  [data-slider][data-per-view="2"]:not(.hero-slider).slider-static .slider-track{--desktop-columns:2}
  [data-slider]:not(.hero-slider).slider-static .slider-track>*{width:auto!important;min-width:0!important;max-width:100%!important;transform:none!important}
  [data-slider]:not(.hero-slider).slider-static .slider-btn,
  [data-slider]:not(.hero-slider).slider-static .slider-dots{display:none!important}
}

@media (max-width:768px){
  [data-slider]:not(.hero-slider){overflow:hidden!important}
  [data-slider]:not(.hero-slider) .slider-track{display:flex!important;width:max-content!important;max-width:none!important;transition:transform .35s ease!important}
  [data-slider]:not(.hero-slider) .slider-dots{display:flex!important}
  [data-slider]:not(.hero-slider) .slider-btn{display:none!important}
}
