*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #0b0c0d;
  font-size: 16px;
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: #0b0c0d;
  color: #e8e9ea;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #bbeb00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #d4ff1a;
}
ul {
  list-style: none;
}
input,
textarea,
select,
button {
  font-family: inherit;
}

.jt-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.jt-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-login {
  background: #1f2021;
  color: #e8e9ea;
  border: 1px solid #333;
}
.btn-login:hover {
  background: #2a2b2c;
  color: #fff;
  border-color: #555;
}
.btn-signup {
  background: #bbeb00;
  color: #0b0c0d;
  border: 1px solid #bbeb00;
}
.btn-signup:hover {
  background: #ceff1a;
  color: #0b0c0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(187, 235, 0, 0.35);
}
.btn-full {
  width: 100%;
  text-align: center;
}
.btn-accent {
  background: #bbeb00;
  color: #0b0c0d;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
}
.btn-accent:hover {
  background: #ceff1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(187, 235, 0, 0.4);
  color: #0b0c0d;
}
.btn-dark {
  background: #1f2021;
  color: #e8e9ea;
  padding: 14px 36px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #333;
}
.btn-dark:hover {
  background: #2a2b2c;
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0b0c0d;
  border-bottom: 1px solid #1a1b1c;
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.hdr-logo img {
  height: 40px;
  width: auto;
}
.hdr-nav {
  flex: 1;
}
.hdr-nav-list {
  display: flex;
  gap: 4px;
}
.hdr-nav-link {
  color: #aab0b8;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.hdr-nav-link:hover {
  color: #bbeb00;
  background: rgba(187, 235, 0, 0.08);
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7a8290;
  padding: 6px 12px;
  background: #131415;
  border-radius: 20px;
  border: 1px solid #232425;
}
.hdr-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbeb00;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(187, 235, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(187, 235, 0, 0);
  }
}
.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  margin-left: 8px;
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8e9ea;
  border-radius: 2px;
  transition: all 0.3s;
}
.hdr-burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.hdr-burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hdr-mobile-nav {
  display: none;
  background: #111213;
  border-bottom: 1px solid #1a1b1c;
}
.hdr-mobile-nav.open {
  display: block;
}
.hdr-mobile-list {
  padding: 12px 20px 8px;
}
.hdr-mobile-link {
  display: block;
  padding: 12px 0;
  color: #aab0b8;
  font-size: 15px;
  border-bottom: 1px solid #1e1f20;
}
.hdr-mobile-link:hover {
  color: #bbeb00;
}
.hdr-mobile-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
}

.sec {
  padding: 64px 0;
}
.sec-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sec-subtitle {
  font-size: 15px;
  color: #7a8290;
  margin-bottom: 32px;
}
.sec-header {
  margin-bottom: 36px;
}

.hero-sec {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bano.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 40%,
    rgba(11, 12, 13, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: #bbeb00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}
.hero-title span {
  color: #bbeb00;
}
.hero-text {
  font-size: 17px;
  color: #aab0b8;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a8290;
}
.hero-feat-icon {
  color: #bbeb00;
  font-size: 16px;
}

.breadcrumb-sec {
  padding: 16px 0;
  background: #0e0f10;
  border-top: 1px solid #151617;
  border-bottom: 1px solid #151617;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
}
.breadcrumb-list li a {
  color: #7a8290;
  transition: color 0.2s;
}
.breadcrumb-list li a:hover {
  color: #bbeb00;
}
.breadcrumb-list li:last-child span {
  color: #bbeb00;
}
.breadcrumb-sep {
  color: #333;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.info-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: #111213;
  border-radius: 12px;
  overflow: hidden;
}
.info-table tr {
  border-bottom: 1px solid #1a1b1c;
  transition: background 0.2s;
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr:hover {
  background: #161718;
}
.info-table td {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.5;
}
.info-table td:first-child {
  color: #7a8290;
  font-weight: 500;
  width: 42%;
  border-right: 1px solid #1a1b1c;
}
.info-table td:last-child {
  color: #e8e9ea;
  font-weight: 500;
}
.info-table .td-accent {
  color: #bbeb00;
  font-weight: 600;
}
.info-table .td-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.25);
  color: #bbeb00;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.jackpot-sec {
  background: #0e0f10;
}
.jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.jackpot-card {
  flex: 1;
  min-width: 220px;
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #bbeb00;
}
.jackpot-card.mega::before {
  background: linear-gradient(90deg, #bbeb00, #ffd900);
}
.jackpot-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7a8290;
  margin-bottom: 8px;
}
.jackpot-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #bbeb00;
  line-height: 1;
  margin-bottom: 6px;
}
.jackpot-currency {
  font-size: 13px;
  color: #555;
}
.jackpot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbeb00;
  margin-right: 6px;
  animation: pulse-dot 1.5s infinite;
}

.winners-sec {
}
.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.winners-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: #111213;
  border-radius: 12px;
  overflow: hidden;
}
.winners-table thead th {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #555;
  text-align: left;
  border-bottom: 1px solid #1a1b1c;
  background: #0e0f10;
}
.winners-table tbody tr {
  border-bottom: 1px solid #151617;
  transition: background 0.2s;
}
.winners-table tbody tr:last-child {
  border-bottom: none;
}
.winners-table tbody tr:hover {
  background: #161718;
}
.winners-table td {
  padding: 11px 16px;
  font-size: 14px;
  color: #aab0b8;
}
.winners-table .rank {
  font-weight: 700;
  color: #555;
  font-size: 13px;
  text-align: center;
}
.winners-table .rank.top1 {
  color: #ffd700;
}
.winners-table .rank.top2 {
  color: #c0c0c0;
}
.winners-table .rank.top3 {
  color: #cd7f32;
}
.winners-table .player {
  color: #e8e9ea;
  font-weight: 500;
}
.winners-table .game-name {
  font-size: 13px;
  color: #666;
}
.winners-table .win-amount {
  color: #bbeb00;
  font-weight: 700;
  text-align: right;
}

.games-sec {
}
.games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.game-card {
  flex: 1;
  min-width: 180px;
  max-width: calc(16.666% - 14px);
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  border-color: #bbeb00;
}
.game-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.game-card-body {
  padding: 14px;
}
.game-card-provider {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.game-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8e9ea;
  margin-bottom: 12px;
  line-height: 1.3;
}
.game-card-btn {
  width: 100%;
  padding: 9px;
  background: #1f2021;
  color: #bbeb00;
  border: 1px solid #2a2b2c;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.game-card-btn:hover {
  background: #bbeb00;
  color: #0b0c0d;
  border-color: #bbeb00;
}

.games-slider {
  display: none;
  overflow: hidden;
  position: relative;
}
.games-slider-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.games-slider-track .game-card {
  min-width: 200px;
  max-width: 200px;
  flex: 0 0 200px;
}
.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
.slider-btn {
  width: 38px;
  height: 38px;
  background: #1f2021;
  border: 1px solid #2a2b2c;
  border-radius: 8px;
  color: #e8e9ea;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 16px;
}
.slider-btn:hover {
  background: #bbeb00;
  color: #0b0c0d;
  border-color: #bbeb00;
}

.slot-sec {
  background: #0e0f10;
}
.slot-machine {
  max-width: 480px;
  margin: 0 auto;
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
.slot-title-sm {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.slot-sub {
  font-size: 13px;
  color: #555;
  margin-bottom: 28px;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.reel {
  width: 80px;
  height: 100px;
  background: #0b0c0d;
  border: 2px solid #2a2b2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.reel.spinning {
  border-color: #bbeb00;
  animation: reel-shake 0.15s infinite alternate;
}
@keyframes reel-shake {
  from {
    transform: translateY(-2px);
  }
  to {
    transform: translateY(2px);
  }
}
.reel.winner {
  border-color: #bbeb00;
  box-shadow: 0 0 20px rgba(187, 235, 0, 0.4);
}
.slot-btn {
  background: #bbeb00;
  color: #0b0c0d;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
}
.slot-btn:hover:not(:disabled) {
  background: #ceff1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(187, 235, 0, 0.4);
}
.slot-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.slot-result {
  margin-top: 22px;
  padding: 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.4s;
}
.slot-result.win {
  display: block;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: #bbeb00;
}
.slot-result.lose {
  display: block;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.2);
  color: #ff8080;
}
.slot-result-cta {
  margin-top: 14px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-sec {
}
.app-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-info {
  flex: 1;
  min-width: 280px;
}
.app-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  margin-bottom: 24px;
}
.app-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  background: #111213;
  border-radius: 12px;
  overflow: hidden;
}
.app-table tr {
  border-bottom: 1px solid #1a1b1c;
}
.app-table tr:last-child {
  border-bottom: none;
}
.app-table tr:hover {
  background: #161718;
}
.app-table td {
  padding: 12px 18px;
  font-size: 14px;
}
.app-table td:first-child {
  color: #7a8290;
  font-weight: 500;
  width: 45%;
  border-right: 1px solid #1a1b1c;
}
.app-table td:last-child {
  color: #e8e9ea;
}
.app-dl-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111213;
  border: 1px solid #2a2b2c;
  border-radius: 12px;
  padding: 14px 20px;
  color: #e8e9ea;
  text-decoration: none;
  transition: all 0.25s;
}
.app-dl-btn:hover {
  border-color: #bbeb00;
  background: #151617;
  transform: translateX(4px);
}
.app-dl-btn-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.app-dl-btn-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 2px;
}
.app-dl-btn-store {
  font-size: 15px;
  font-weight: 700;
  color: #e8e9ea;
}
.app-dl-btn:hover .app-dl-btn-store {
  color: #bbeb00;
}
.app-visual {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-feature-card {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.app-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(187, 235, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: #bbeb00;
}
.app-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #e8e9ea;
  margin-bottom: 4px;
}
.app-feature-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.review-sec {
  background: #0e0f10;
}
.author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #bbeb00;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 600;
  color: #e8e9ea;
  margin-bottom: 2px;
}
.author-title {
  font-size: 13px;
  color: #666;
}
.author-link {
  font-size: 12px;
  color: #bbeb00;
  text-decoration: none;
  margin-top: 2px;
  display: inline-block;
}
.author-link:hover {
  text-decoration: underline;
}

.review-content {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 14px;
  padding: 32px;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.review-content h2 {
  font-size: 22px;
}
.review-content h3 {
  font-size: 18px;
}
.review-content h4 {
  font-size: 16px;
  color: #bbeb00;
}
.review-content p {
  font-size: 15px;
  color: #aab0b8;
  line-height: 1.75;
  margin-bottom: 16px;
}
.review-content ul,
.review-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.review-content ul {
  list-style: disc;
}
.review-content ol {
  list-style: decimal;
}
.review-content li {
  font-size: 15px;
  color: #aab0b8;
  line-height: 1.7;
  margin-bottom: 6px;
}
.review-content ul li::marker {
  color: #bbeb00;
}
.review-content strong,
.review-content b {
  color: #e8e9ea;
  font-weight: 600;
}
.review-content a {
  color: #bbeb00;
}
.review-content a:hover {
  text-decoration: underline;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}
.review-content table th {
  background: #0e0f10;
  color: #e8e9ea;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border: 1px solid #2a2b2c;
}
.review-content table td {
  padding: 11px 16px;
  font-size: 14px;
  color: #aab0b8;
  border: 1px solid #1e1f20;
}
.review-content table tr:hover td {
  background: #161718;
}
.review-content blockquote {
  border-left: 3px solid #bbeb00;
  padding: 12px 18px;
  background: rgba(187, 235, 0, 0.05);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: #aab0b8;
}
.review-content hr {
  border: none;
  border-top: 1px solid #1a1b1c;
  margin: 28px 0;
}
.review-content img {
  border-radius: 10px;
  margin: 16px 0;
}
.review-content code {
  background: #1a1b1c;
  color: #bbeb00;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}
.review-content pre {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 8px;
  padding: 18px;
  overflow-x: auto;
  margin: 16px 0;
}

.reviews-sec {
}
.reviews-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.review-card {
  flex: 1;
  min-width: 240px;
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 14px;
  padding: 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e1f20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #bbeb00;
  flex-shrink: 0;
  border: 2px solid #2a2b2c;
}
.review-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8e9ea;
  margin-bottom: 4px;
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
}
.review-card-date {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}
.review-card-text {
  font-size: 14px;
  color: #aab0b8;
  line-height: 1.65;
}

.review-form-wrap {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 14px;
  padding: 28px;
}
.review-form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #aab0b8;
}
.form-input,
.form-textarea {
  background: #0e0f10;
  border: 1px solid #2a2b2c;
  border-radius: 8px;
  padding: 12px 14px;
  color: #e8e9ea;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #bbeb00;
  box-shadow: 0 0 0 2px rgba(187, 235, 0, 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #444;
}
.form-textarea {
  min-height: 110px;
}
.form-rating {
  display: flex;
  gap: 8px;
}
.form-star {
  font-size: 22px;
  cursor: pointer;
  color: #333;
  transition: color 0.15s;
  user-select: none;
}
.form-star:hover,
.form-star.active {
  color: #bbeb00;
}
.form-submit {
  align-self: flex-start;
}
.form-success {
  display: none;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.25);
  color: #bbeb00;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 0.4s;
}

.faq-sec {
  background: #0e0f10;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  color: #e8e9ea;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #bbeb00;
}
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1e1f20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  font-size: 13px;
  color: #7a8290;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(187, 235, 0, 0.15);
  color: #bbeb00;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #7a8290;
  line-height: 1.7;
}

footer {
  background: #0b0c0d;
  border-top: 1px solid #141516;
  padding: 48px 0 0;
}
.ftr-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.ftr-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ftr-col {
  flex: 1;
  min-width: 180px;
}
.ftr-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}
.ftr-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}
.ftr-langs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ftr-lang {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #232425;
  transition: all 0.2s;
}
.ftr-lang.active,
.ftr-lang:hover {
  color: #bbeb00;
  border-color: #bbeb00;
  background: rgba(187, 235, 0, 0.07);
}
.ftr-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #555;
  margin-bottom: 14px;
}
.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-links a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
}
.ftr-links a:hover {
  color: #bbeb00;
}
.ftr-payments,
.ftr-providers {
  border-top: 1px solid #141516;
  padding: 24px 0;
  margin-bottom: 0;
}
.ftr-section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #444;
  margin-bottom: 14px;
}
.ftr-payment-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.ftr-pay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.ftr-pay-item:hover {
  opacity: 1;
}
.ftr-pay-item span {
  font-size: 10px;
  color: #555;
  font-weight: 600;
}
.ftr-provider-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ftr-prov-item {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  transition: all 0.2s;
}
.ftr-prov-item:hover {
  color: #bbeb00;
  border-color: #bbeb00;
  background: rgba(187, 235, 0, 0.06);
}
.ftr-bottom {
  border-top: 1px solid #141516;
  padding: 20px 0 28px;
}
.ftr-legal {
  font-size: 12px;
  color: #3d3e3f;
  line-height: 1.7;
  margin-bottom: 10px;
}
.ftr-copyright {
  font-size: 13px;
  color: #444;
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #111213;
  border-top: 1px solid #1e1f20;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}
.widget-sticky-text {
  font-size: 14px;
  color: #aab0b8;
}
.widget-sticky-bonus {
  color: #bbeb00;
  font-weight: 700;
}
.widget-sticky-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.widget-sticky-close:hover {
  color: #e8e9ea;
}

.divider-fade {
  height: 48px;
  background: linear-gradient(
    to bottom,
    rgba(14, 15, 16, 0) 0%,
    rgba(11, 12, 13, 1) 100%
  );
}

.section-block {
  background: #111213;
  border: 1px solid #1e1f20;
  border-radius: 16px;
  padding: 36px;
  margin: 0 8px;
}

.d-none {
  display: none !important;
}
.text-accent {
  color: #bbeb00;
}
.text-muted {
  color: #555;
}
.mt-4 {
  margin-top: 16px;
}
.mb-4 {
  margin-bottom: 16px;
}

.wp-post-image {
  display: none;
}
.entry-meta {
  display: none;
}
.wp-caption {
  display: none;
}
.commentlist {
  display: none;
}
.pingback {
  display: none;
}
.replylinks {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.alignleft {
  float: left;
  margin: 0 18px 18px 0;
}
.alignright {
  float: right;
  margin: 0 0 18px 18px;
}
.size-full {
  max-width: 100%;
}
.entry-content .more-link {
  display: none;
}
.wp-block-group {
  display: block;
}
.has-text-align-center {
  text-align: center;
}
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) {
  .game-card {
    max-width: calc(33.333% - 12px);
  }
  .hero-title {
    font-size: 36px;
  }
  .app-visual {
    flex: 0 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .app-feature-card {
    flex: 1;
    min-width: 220px;
  }
}
@media (max-width: 768px) {
  .hdr-nav {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-actions .hdr-online {
    display: none;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-content {
    padding: 60px 20px;
  }
  .hero-features {
    gap: 14px;
  }
  .sec {
    padding: 44px 0;
  }
  .sec-title {
    font-size: 22px;
  }
  .section-block {
    padding: 24px 16px;
    margin: 0 4px;
  }
  .jackpot-card {
    min-width: calc(50% - 8px);
  }
  .games-grid {
    display: none;
  }
  .games-slider {
    display: block;
  }
  .game-card {
    min-width: 200px;
    max-width: 200px;
  }
  .ftr-top {
    flex-direction: column;
    gap: 24px;
  }
  .widget-sticky {
    flex-wrap: wrap;
    gap: 10px;
  }
  .reviews-grid {
    flex-direction: column;
  }
  .review-card {
    min-width: 100%;
  }
  .app-inner {
    flex-direction: column;
  }
  .app-visual {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .jackpot-card {
    min-width: calc(100% - 0px);
  }
  .jackpot-grid {
    flex-direction: column;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .hdr-inner {
    padding: 10px 14px;
  }
  .reel {
    width: 68px;
    height: 86px;
    font-size: 38px;
  }
}
