@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;
  background: #fff;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #e10600;
  text-decoration: none;
}
a:hover {
  color: #ff1e1e;
}

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

.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: 10px 0;
  flex-wrap: wrap;
}
.header-logo img {
  height: 42px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #ccc;
  font-size: 14px;
  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-nav a.active {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  color: #aaa;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-count span.dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn--login {
  background: #e10600;
  color: #fff;
}
.btn--login:hover {
  background: #c20500;
  color: #fff;
}
.btn--signup {
  background: #ff1e1e;
  color: #fff;
}
.btn--signup:hover {
  background: #e01a1a;
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #ff8c00, #ff1e1e);
  color: #fff;
}
.btn--bonus:hover {
  opacity: 0.9;
  color: #fff;
}
.btn--primary {
  background: #e10600;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
}
.btn--primary:hover {
  background: #c20500;
  color: #fff;
}
.btn--large {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
}
.btn--white {
  background: #fff;
  color: #e10600;
}
.btn--white:hover {
  background: #f0f0f0;
  color: #e10600;
}

.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: all 0.3s;
  border-radius: 2px;
}
.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);
}

.hero {
  position: relative;
  background: #1a1a1a;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/casinoban.webp") center/cover no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(225, 6, 0, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 620px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-balance: balance;
}
.hero-content p {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.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: 24px;
  padding: 6px 16px;
  color: #ffd700;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section {
  padding: 60px 0;
}
.section--gray {
  background: #f8f8f8;
}
.section--dark {
  background: #1a1a1a;
  color: #fff;
}
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
  text-balance: balance;
}
.section-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 36px;
}
.section--dark .section-title {
  color: #fff;
}
.section--dark .section-subtitle {
  color: #aaa;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}
.card--dark {
  background: #252525;
  color: #fff;
}
.card--dark .card-title {
  color: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.toc-block {
  background: #f8f8f8;
  border-left: 4px solid #e10600;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.toc-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
}
.toc-block ol {
  padding-left: 20px;
}
.toc-block ol li {
  margin-bottom: 6px;
}
.toc-block ol li a {
  color: #e10600;
  font-size: 15px;
}
.toc-block ol li a:hover {
  text-decoration: underline;
}

.tournament-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.tournament-card-header {
  background: linear-gradient(135deg, #1a1a1a, #3a0000);
  padding: 20px;
  color: #fff;
}
.tournament-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tournament-card-header p {
  font-size: 13px;
  color: #ccc;
}
.tournament-card-body {
  padding: 20px;
}
.tournament-prize {
  font-size: 24px;
  font-weight: 900;
  color: #e10600;
  margin-bottom: 8px;
}
.tournament-timer {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #666;
}
.timer-block {
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
}
.timer-block .timer-num {
  font-size: 20px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.timer-block .timer-label {
  font-size: 9px;
  color: #aaa;
  text-transform: uppercase;
}

.app-table-wrap {
  overflow-x: auto;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}
.app-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}
.app-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  color: #333;
}
.app-table tr:nth-child(even) td {
  background: #f8f8f8;
}
.app-table tr:hover td {
  background: #fff3f3;
}
.app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.app-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  transition: background 0.2s;
  text-decoration: none !important;
}
.app-download-btn:hover {
  background: #333;
  color: #fff;
}
.app-download-btn svg {
  flex-shrink: 0;
}
.app-download-btn span {
  display: flex;
  flex-direction: column;
}
.app-download-btn .adb-small {
  font-size: 11px;
  color: #aaa;
}
.app-download-btn .adb-big {
  font-size: 15px;
  font-weight: 700;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.live-game-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.live-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.live-game-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: #1a1a1a;
}
.live-game-name {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 8px 4px;
  color: #1a1a1a;
}
.live-game-btn {
  display: block;
  margin: 0 10px 12px;
  padding: 7px;
  background: #e10600;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s;
}
.live-game-btn:hover {
  background: #c20500;
  color: #fff;
}

.slot-machine {
  background: linear-gradient(135deg, #1a1a1a, #2d0000);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.slot-machine h3 {
  color: #ffd700;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
}
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.slot-reel {
  background: #fff;
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s;
}
.slot-reel.spinning {
  animation: spinReel 0.08s linear infinite;
}
@keyframes spinReel {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}
.slot-spin-btn {
  background: #ff1e1e;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Roboto", sans-serif;
}
.slot-spin-btn:hover {
  background: #e01010;
  transform: scale(1.04);
}
.slot-spin-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}
.slot-win {
  display: none;
  margin-top: 20px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid #ffd700;
  border-radius: 10px;
  padding: 16px;
}
.slot-win.show {
  display: block;
  animation: fadeIn 0.4s;
}
.slot-win p {
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}
.review-stars {
  color: #ffd700;
  font-size: 18px;
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-text {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}
.review-form {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 28px;
  margin-top: 32px;
}
.review-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e10600;
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 14px;
  color: #2e7d32;
  font-size: 15px;
  margin-top: 12px;
}
.form-success.show {
  display: block;
  animation: fadeIn 0.3s;
}

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 40px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col ul li a {
  color: #888;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments h4 {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-logos span,
.provider-logos span {
  background: #2a2a2a;
  color: #bbb;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.footer-legal {
  border-top: 1px solid #2a2a2a;
  padding-top: 18px;
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.7;
}
.footer-legal a {
  color: #666;
}
.footer-legal a:hover {
  color: #aaa;
}
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a, #2d0000);
  z-index: 999;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.4);
}
.sticky-widget span {
  color: #ffd700;
  font-size: 14px;
  font-weight: 600;
}
.sticky-close {
  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.2s;
  line-height: 1;
}
.sticky-close:hover {
  color: #fff;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-track .slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.slider-btn--prev {
  left: 8px;
}
.slider-btn--next {
  right: 8px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active {
  background: #e10600;
}

.banner-slide {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a0000 100%);
  border-radius: 12px;
  padding: 40px 32px;
  color: #fff;
  text-align: center;
}
.banner-slide h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  margin-bottom: 10px;
  text-balance: balance;
}
.banner-slide p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 16px;
}

.content-text {
  max-width: 860px;
}
.content-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  padding-top: 8px;
}
.content-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 24px 0 10px;
}
.content-text p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: #333;
  font-size: 16px;
}
.content-text ul,
.content-text ol {
  margin: 12px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.content-text ul li,
.content-text ol li {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}
.content-text table th {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.content-text table td {
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: #333;
}
.content-text table tr:nth-child(even) td {
  background: #f8f8f8;
}
.content-text a {
  color: #e10600;
}
.content-text a:hover {
  text-decoration: underline;
}
.content-text blockquote {
  border-left: 4px solid #e10600;
  padding: 12px 20px;
  background: #f8f8f8;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: #f8f8f8;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f0f0f0;
}
.faq-question[aria-expanded="true"] {
  background: #1a1a1a;
  color: #fff;
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 16px 20px;
  background: #fff;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid #e0e0e0;
}
.faq-answer.open {
  display: block;
  animation: fadeIn 0.25s;
}

.promo-accent {
  background: linear-gradient(135deg, #1a1a1a, #2d0000);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}
.promo-accent h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-accent p {
  color: #ccc;
  margin-bottom: 20px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 12px 24px;
}
.promo-code-box span {
  color: #ffd700;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}
.promo-copy-btn {
  background: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: "Roboto", sans-serif;
}
.promo-copy-btn:hover {
  opacity: 0.85;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.comparison-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td {
  background: #f8f8f8;
}
.comparison-table .check {
  color: #4caf50;
  font-weight: 700;
}
.comparison-table .cross {
  color: #e10600;
  font-weight: 700;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
}

.bonus-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.bonus-card-header {
  background: linear-gradient(135deg, #e10600, #ff1e1e);
  padding: 20px;
  color: #fff;
  text-align: center;
}
.bonus-card-header h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}
.bonus-card-header p {
  font-size: 13px;
  opacity: 0.9;
}
.bonus-card-body {
  padding: 20px;
}
.bonus-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-card-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #444;
}
.bonus-card-body ul li::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.bonus-card-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.advantage-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.advantage-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.advantage-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.advantage-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.advantage-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.author-block {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.author-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-socials a {
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}
.author-socials a:hover {
  background: #e10600;
  color: #fff;
}

.mirror-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.mirror-step {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.2s;
}
.mirror-step:hover {
  transform: translateY(-3px);
}
.mirror-step-num {
  background: #e10600;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.mirror-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.mirror-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.mirror-notwork {
  background: #fff3f3;
  border: 1px solid #e10600;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}
.mirror-notwork h3 {
  color: #e10600;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.mirror-notwork-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.mirror-notwork-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: background 0.2s;
}
.mirror-notwork-btn:hover {
  background: #e10600;
}
.mirror-notwork-result {
  display: none;
  margin-top: 16px;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 14px;
  color: #2e7d32;
  font-size: 14px;
}
.mirror-notwork-result.show {
  display: block;
  animation: fadeIn 0.3s;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.slot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.slot-card-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: #1a1a1a;
}
.slot-card-name {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 8px 4px;
  color: #1a1a1a;
}
.slot-card-rtp {
  font-size: 12px;
  color: #4caf50;
  padding: 0 8px 10px;
  font-weight: 600;
}
.slot-card-btn {
  display: block;
  margin: 0 10px 12px;
  padding: 7px;
  background: #e10600;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s;
}
.slot-card-btn:hover {
  background: #c20500;
  color: #fff;
}

.categories-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.category-btn {
  background: #f8f8f8;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: all 0.2s;
  font-weight: 500;
}
.category-btn:hover,
.category-btn.active {
  background: #e10600;
  color: #fff;
  border-color: #e10600;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.rtp-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}
.rtp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  color: #333;
}
.rtp-table tr:nth-child(even) td {
  background: #f8f8f8;
}
.rtp-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #888;
}
.breadcrumb a:hover {
  color: #e10600;
}
.breadcrumb .sep {
  color: #ccc;
}

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

.alt-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.alt-app-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
}
.alt-app-card:hover {
  transform: translateY(-2px);
}
.alt-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #1a1a1a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 20px;
  font-weight: 700;
}
.alt-app-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.alt-app-rating {
  font-size: 12px;
  color: #888;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.reg-method-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.reg-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.reg-method-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.reg-method-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.reg-method-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.bonus-first-deposit {
  background: linear-gradient(135deg, #1a1a1a, #3a0000);
  border-radius: 16px;
  padding: 36px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.bonus-first-deposit h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 8px;
}
.bonus-first-deposit .bonus-amount {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #ffd700;
  margin: 16px 0;
}
.bonus-first-deposit p {
  color: #ccc;
  margin-bottom: 24px;
}

.wp-content-placeholder {
  display: none;
}
.wp-block-separator {
  display: none;
}
.elementor-invisible {
  display: none;
}

@media (max-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #fff;
  }
  .burger {
    display: flex;
    z-index: 999;
    position: relative;
  }
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 40px 0;
  }
  .section {
    padding: 40px 0;
  }
  .author-block {
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .live-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .live-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions {
    gap: 4px;
  }
  .btn {
    padding: 7px 14px;
    font-size: 13px;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #e10600;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 4px;
  font-size: 14px;
}
.skip-link:focus {
  left: 8px;
}

.technical-page {
  max-width: 860px;
  margin: 0 auto;
}
.technical-page h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #e10600;
}
.technical-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  padding-top: 8px;
}
.technical-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 24px 0 8px;
}
.technical-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: #333;
  font-size: 16px;
}
.technical-content ul,
.technical-content ol {
  margin: 12px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.technical-content ul li,
.technical-content ol li {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.technical-content a {
  color: #e10600;
}
.technical-content a:hover {
  text-decoration: underline;
}
.technical-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

.xp8k2 {
  opacity: 1;
}
.z9m4a {
  transition: all 0.3s;
}
.q1r7b {
  display: block;
}

.content-text {
  width: 100%;
  max-width: 100%;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
}

.technical-page {
  background: #f3f3f3;
  border-radius: 14px;
  padding: 32px;
}

.technical-page .technical-content {
  background: #ffffff;
  border: 1px solid #e2e2e2;
}

.tournament-timer,
.tournament-timer > [data-timer] {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .content-text {
    padding: 20px 16px;
  }

  .technical-page {
    padding: 20px 14px;
  }

  .tournament-timer,
  .tournament-timer > [data-timer] {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .timer-block {
    min-width: 44px;
    padding: 6px 8px;
  }
}
