*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #1a1a2e;
  color: #e8e8f0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #ffd84d;
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}
a:hover {
  opacity: 0.85;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.btn:active {
  transform: translateY(0);
}
.btn-demo {
  background: #ffd84d;
  color: #0f3d2e;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-demo:hover {
  background: #ffe570;
  color: #0f3d2e;
}
.btn-money {
  background: #ff3b3f;
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-money:hover {
  background: #ff5a5d;
  color: #fff;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.btn-load-more {
  background: transparent;
  border: 2px solid #ffd84d;
  color: #ffd84d;
  padding: 12px 36px;
  font-size: 15px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.btn-load-more:hover {
  background: #ffd84d;
  color: #0f3d2e;
  transform: translateY(-2px);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f3d2e;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hdr-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hdr-logo img {
  height: 44px;
  width: auto;
}
.hdr-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #a0c8a0;
  font-family: "Poppins", sans-serif;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #4cff4c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.hdr-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4edd4;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.hdr-nav-link:hover,
.hdr-nav-link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd84d;
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr-lang-drop {
  position: relative;
}
.hdr-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 7px 10px;
  color: #d4edd4;
  font-size: 13px;
  transition: background 0.2s;
}
.hdr-lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hdr-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0f3d2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
  display: none;
}
.hdr-lang-drop.open .hdr-lang-menu {
  display: block;
  animation: fadeDown 0.18s ease;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #d4edd4;
  font-size: 13px;
  transition: background 0.15s;
}
.lang-item:hover,
.lang-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd84d;
}
.hdr-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-btn {
  padding: 8px 16px;
  font-size: 13px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: background 0.2s;
}
.burger:hover {
  background: rgba(255, 255, 255, 0.14);
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #d4edd4;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 940;
  backdrop-filter: blur(2px);
}
.hdr-mobile-overlay.active {
  display: block;
}

.hero-block {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: url("/timeban.webp") center/cover no-repeat;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 40px;
}
.hero-badge {
  display: inline-block;
  background: #ffd84d;
  color: #0f3d2e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
}
.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-accent {
  color: #ffd84d;
}
.hero-sub {
  font-size: 17px;
  color: #c8dfc8;
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-val {
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffd84d;
}
.hero-stat-lbl {
  font-size: 11px;
  color: #8ab09a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-trust-line {
  font-size: 12px;
  color: #6a9080;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust-line .sep {
  color: #ffd84d;
}

.toc-block {
  background: #0e2b20;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.toc-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffd84d;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.toc-item {
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  color: #c8dfc8;
  font-size: 14px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.toc-link:hover,
.toc-link:focus {
  background: rgba(255, 216, 77, 0.08);
  border-color: rgba(255, 216, 77, 0.35);
  color: #ffd84d;
}
.toc-icon {
  display: flex;
  align-items: center;
  color: #ffd84d;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: #8ab09a;
}

.casinos-block {
  padding: 60px 0;
}
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
  position: relative;
}
.casino-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.casino-card--top3 {
  border-color: #ffd84d;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.3);
}
.casino-card--top1 {
  background: linear-gradient(135deg, #1a3826 0%, #112a1e 100%);
}
.casino-rank {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffd84d;
  min-width: 36px;
  text-align: center;
}
.casino-rank--1 {
  color: #ffd700;
}
.casino-rank--2 {
  color: #c0c0c0;
}
.casino-rank--3 {
  color: #cd7f32;
}
.casino-logo {
  width: 90px;
  min-width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  padding: 6px;
}
.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.casino-logo-placeholder {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #ffd84d;
  text-align: center;
}
.casino-main {
  flex: 1;
  min-width: 0;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.casino-name {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.casino-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #8ab09a;
}
.casino-country img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-rating-val {
  background: #ffd84d;
  color: #0f3d2e;
  font-weight: 700;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}
.casino-rating-stars {
  color: #ffd84d;
  font-size: 13px;
  letter-spacing: -1px;
}
.casino-bonus {
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ff3b3f;
  margin-bottom: 8px;
}
.casino-pros {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.casino-pro {
  font-size: 12px;
  background: rgba(76, 255, 76, 0.08);
  border: 1px solid rgba(76, 255, 76, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  color: #7de87d;
}
.casino-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6a9080;
}
.casino-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
  align-items: stretch;
}
.casino-actions .btn {
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}
.btn-review {
  background: transparent;
  border: 1px solid rgba(255, 216, 77, 0.4);
  color: #ffd84d;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
  text-align: center;
}
.btn-review:hover {
  background: rgba(255, 216, 77, 0.12);
  color: #ffd84d;
}
.casino-top-badge {
  position: absolute;
  top: -1px;
  right: 14px;
  background: #ffd84d;
  color: #0f3d2e;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.8px;
}
.casinos-pagination {
  text-align: center;
  margin-top: 28px;
}

.winners-block {
  padding: 60px 0;
  background: #0e2b20;
}
.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: #112a1e;
  border-radius: 12px;
  overflow: hidden;
}
.winners-table th {
  background: #0f3d2e;
  color: #ffd84d;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 216, 77, 0.2);
}
.winners-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4edd4;
  transition: background 0.15s;
}
.winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winner-nick {
  font-weight: 600;
  color: #ffd84d;
}
.winner-amount {
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  color: #4cff4c;
  font-weight: 600;
}
.winner-bonus {
  font-size: 12px;
  background: rgba(255, 59, 63, 0.12);
  border: 1px solid rgba(255, 59, 63, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  color: #ff8b8d;
}
.winner-time {
  color: #6a9080;
  font-size: 12px;
}
.winner-rank-1 {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
}
.winner-rank-2 {
  color: #c0c0c0;
  font-weight: 700;
}
.winner-rank-3 {
  color: #cd7f32;
  font-weight: 700;
}

.bonus-block {
  padding: 60px 0;
}
.bonus-slider-wrap {
  position: relative;
  overflow: visible;
}
.bonus-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus-card {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s;
}
.bonus-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.bonus-card--featured {
  border-color: #ffd84d;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.25);
}
.bonus-card-badge {
  position: absolute;
  top: -1px;
  left: 20px;
  background: #ff3b3f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.8px;
}
.bonus-card-logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.bonus-card-logo img {
  height: 40px;
  object-fit: contain;
}
.bonus-card-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.bonus-card-amount {
  font-family: "Fredoka", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff3b3f;
}
.bonus-card-desc {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.6;
}
.bonus-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-card-features li {
  font-size: 13px;
  color: #c8dfc8;
  padding-left: 16px;
  position: relative;
}
.bonus-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd84d;
  font-weight: 700;
}
.bonus-btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}
.bonus-card-note {
  font-size: 11px;
  color: #4a6850;
  text-align: center;
}
.bonus-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.slider-dot.active {
  background: #ffd84d;
  transform: scale(1.3);
}

.strategies-block {
  padding: 60px 0;
  background: #0e2b20;
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.strategy-card {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
}
.strategy-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.strategy-icon {
  color: #ffd84d;
  margin-bottom: 14px;
  display: flex;
}
.strategy-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.strategy-card p {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.7;
}
.strategy-meta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.strategy-risk {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.risk-low {
  background: rgba(76, 255, 76, 0.1);
  color: #4cff4c;
  border: 1px solid rgba(76, 255, 76, 0.2);
}
.risk-med {
  background: rgba(255, 216, 77, 0.1);
  color: #ffd84d;
  border: 1px solid rgba(255, 216, 77, 0.2);
}
.risk-high {
  background: rgba(255, 59, 63, 0.1);
  color: #ff8b8d;
  border: 1px solid rgba(255, 59, 63, 0.2);
}
.strategy-suitable {
  font-size: 11px;
  color: #6a9080;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.gameinfo-block {
  padding: 60px 0;
}
.gameinfo-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.gameinfo-table-wrap {
  flex: 1;
  min-width: 280px;
  overflow-x: auto;
  border-radius: 12px;
}
.gameinfo-table {
  width: 100%;
  border-collapse: collapse;
  background: #112a1e;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.gameinfo-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.gameinfo-table td:first-child {
  color: #8ab09a;
  font-weight: 500;
  width: 50%;
}
.gameinfo-table td:last-child {
  color: #d4edd4;
  font-weight: 600;
}
.gameinfo-table tr:last-child td {
  border-bottom: none;
}
.gameinfo-procons {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.procons-block {
  background: #112a1e;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.procons-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.procons-pros h3 {
  color: #4cff4c;
}
.procons-cons h3 {
  color: #ff8b8d;
}
.procons-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.procons-pros li {
  font-size: 14px;
  color: #c8dfc8;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.procons-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4cff4c;
  font-weight: 700;
}
.procons-cons li {
  font-size: 14px;
  color: #c8dfc8;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.procons-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff8b8d;
  font-weight: 700;
}

.reviews-block {
  padding: 60px 0;
  background: #0e2b20;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.review-card {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f3d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffd84d;
  flex-shrink: 0;
}
.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.review-stars {
  color: #ffd84d;
  font-size: 15px;
  letter-spacing: 1px;
}
.star.filled {
  color: #ffd84d;
}
.star {
  color: rgba(255, 216, 77, 0.25);
}
.review-text {
  font-size: 14px;
  color: #a0b8a0;
  line-height: 1.7;
}
.review-date {
  font-size: 12px;
  color: #4a6850;
}

.author-block {
  padding: 40px 0;
}
.author-card {
  background: #112a1e;
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0f3d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffd84d;
  flex-shrink: 0;
  border: 2px solid #ffd84d;
}
.author-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.author-badge {
  font-size: 11px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  color: #ffd84d;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.author-bio {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.7;
  margin-bottom: 12px;
}
.author-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffd84d;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 216, 77, 0.3);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}
.author-linkedin:hover {
  background: rgba(255, 216, 77, 0.08);
  color: #ffd84d;
}

.faq-block {
  padding: 60px 0;
  background: #0e2b20;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #d4edd4;
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "Poppins", sans-serif;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.04);
  color: #ffd84d;
}
.faq-arrow {
  transition: transform 0.25s;
  flex-shrink: 0;
  color: #ffd84d;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open {
  max-height: 500px;
}
.faq-answer > div {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.7;
}
.faq-answer p {
  margin-bottom: 8px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.content-block {
  padding: 50px 0;
}
.review-section {
  padding: 60px 0;
}
.page-h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #ffd84d;
  margin-bottom: 28px;
}
.review-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 28px 0 14px;
  border-left: 4px solid #ffd84d;
  padding-left: 14px;
}
.review-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d4edd4;
  margin: 22px 0 10px;
}
.review-content p {
  font-size: 15px;
  color: #8ab09a;
  line-height: 1.8;
  margin-bottom: 14px;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-content li {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.6;
}
.review-content ul li {
  list-style: disc;
}
.review-content ol li {
  list-style: decimal;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #112a1e;
  border-radius: 10px;
  overflow: hidden;
}
.review-content table th {
  background: #0f3d2e;
  color: #ffd84d;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 2px solid rgba(255, 216, 77, 0.2);
}
.review-content table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4edd4;
  font-size: 14px;
}
.review-content a {
  color: #ffd84d;
  text-decoration: underline;
}
.review-content strong {
  color: #d4edd4;
  font-weight: 700;
}

.technical-block {
  padding: 50px 0;
}
.technical-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a6850;
  margin-bottom: 16px;
  padding-top: 24px;
}
.technical-breadcrumb a {
  color: #ffd84d;
}
.breadcrumb-sep {
  color: #4a6850;
}
.technical-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.technical-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #d4edd4;
  margin: 18px 0 8px;
}
.technical-content p {
  font-size: 15px;
  color: #8ab09a;
  line-height: 1.8;
  margin-bottom: 12px;
}
.technical-content ul,
.technical-content ol {
  margin: 10px 0 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.technical-content li {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.6;
}
.technical-content ul li {
  list-style: disc;
}
.technical-content ol li {
  list-style: decimal;
}

.site-footer {
  background: #0f3d2e;
  padding-top: 50px;
}
.ftr-wrap {
  color: #c8dfc8;
}
.ftr-top {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.ftr-brand {
  flex: 2;
  min-width: 220px;
}
.ftr-logo img {
  height: 40px;
  margin-bottom: 14px;
}
.ftr-desc {
  font-size: 13px;
  color: #6a9080;
  line-height: 1.7;
}
.ftr-nav-col {
  min-width: 160px;
}
.ftr-col-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffd84d;
  margin-bottom: 14px;
}
.ftr-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav-list a {
  font-size: 14px;
  color: #8ab09a;
  transition: color 0.2s;
}
.ftr-nav-list a:hover {
  color: #ffd84d;
}
.ftr-provider-col {
  min-width: 140px;
}
.ftr-provider-link {
  display: inline-block;
  margin-bottom: 12px;
}
.ftr-evo-logo {
  filter: brightness(0.8) sepia(1) hue-rotate(90deg);
  transition: filter 0.2s;
}
.ftr-evo-logo:hover {
  filter: none;
}
.ftr-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 59, 63, 0.4);
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ff8b8d;
}
.ftr-payments {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ftr-pay-title {
  margin-bottom: 14px;
}
.ftr-pay-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.ftr-pay-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
}
.ftr-trust {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ftr-trust-title {
  margin-bottom: 14px;
}
.ftr-trust-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.ftr-trust-item {
  display: flex;
  align-items: center;
}
.ftr-bottom {
  padding: 24px 0;
}
.ftr-legal p {
  font-size: 12px;
  color: #4a6850;
  line-height: 1.7;
  margin-bottom: 6px;
}
.ftr-copyright p {
  font-size: 12px;
  color: #4a6850;
  margin-top: 10px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #0f3d2e;
  border-top: 2px solid #ffd84d;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sticky-widget.visible {
  transform: translateY(0);
}
.sticky-widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-widget-text {
  flex: 1;
  min-width: 0;
}
.sticky-widget-title {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffd84d;
}
.sticky-widget-sub {
  display: block;
  font-size: 12px;
  color: #8ab09a;
}
.sticky-widget-btn {
  white-space: nowrap;
  padding: 10px 24px;
}
.sticky-widget-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: #8ab09a;
  font-size: 18px;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.sticky-widget-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.overlay-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 700;
}
.wp-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .hdr-nav-wrap {
    display: none;
  }
  .hdr-nav-wrap.mobile-open {
    display: block;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    background: #0f3d2e;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .hdr-nav-wrap.mobile-open .hdr-nav {
    display: flex;
  }
  .hdr-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0;
  }
  .hdr-nav-link {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }
  .burger {
    display: flex;
  }
  .casino-card {
    flex-wrap: wrap;
  }
  .casino-actions {
    min-width: 120px;
  }
  .bonus-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hdr-inner {
    padding: 10px 16px;
  }
  .hdr-logo img {
    height: 36px;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .toc-list {
    flex-direction: column;
    gap: 6px;
  }
  .casino-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .casino-actions {
    width: 100%;
    flex-direction: row;
    justify-content: stretch;
  }
  .casino-actions .btn,
  .casino-actions .btn-review {
    flex: 1;
    text-align: center;
  }
  .bonus-slider {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bonus-card {
    display: none;
  }
  .bonus-card.active,
  .bonus-card[data-index="0"] {
    display: flex;
  }
  .bonus-slider-nav {
    display: flex;
  }
  .gameinfo-wrap {
    flex-direction: column;
  }
  .author-card {
    flex-direction: column;
  }
  .ftr-top {
    flex-direction: column;
    gap: 28px;
  }
  .sticky-widget-inner {
    gap: 10px;
  }
  .sticky-widget-text {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) {
  .bonus-slider-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .section-title {
    font-size: 22px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hdr-cta-group .btn-demo {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
}

.wp-block-group-inner-container {
}
.elementor-widget-wrap {
}
.woocommerce-store-notice__dismiss-link {
}
.wp-post-image {
}
.skip-link {
  position: absolute;
  left: -9999em;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
  width: 100vw;
}
.entry-content {
  max-width: 680px;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
#respond .comment-form-cookies-consent input {
  height: auto;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: background 0.2s;
  position: relative;
  z-index: 1001;
}
.burger:hover {
  background: rgba(255, 255, 255, 0.14);
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #d4edd4;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.hdr-mobile-overlay.active {
  display: block;
}

@media (max-width: 1024px) {
  .hdr-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: #0f3d2e;
    overflow-y: auto;
    padding: 80px 20px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .hdr-nav-wrap.mobile-open {
    transform: translateX(0);
  }
  .hdr-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0;
  }
  .hdr-nav-link {
    font-size: 18px;
    padding: 16px 20px;
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }
  .hdr-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  .burger {
    display: flex;
  }
  .casino-card {
    flex-wrap: wrap;
  }
  .casino-actions {
    min-width: 120px;
  }
  .bonus-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bonus-block {
  padding: 60px 0;
}
.bonus-slider-wrap {
  position: relative;
  overflow: visible;
}
.bonus-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus-card {
  background: #112a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s;
}
.bonus-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.bonus-card--featured {
  border-color: #ffd84d;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.25);
}
.bonus-card-badge {
  position: absolute;
  top: -1px;
  left: 20px;
  background: #ff3b3f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.8px;
}
.bonus-card-logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.bonus-card-logo img {
  height: 40px;
  object-fit: contain;
}
.bonus-card-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.bonus-card-amount {
  font-family: "Fredoka", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff3b3f;
}
.bonus-card-desc {
  font-size: 14px;
  color: #8ab09a;
  line-height: 1.6;
}
.bonus-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-card-features li {
  font-size: 13px;
  color: #c8dfc8;
  padding-left: 16px;
  position: relative;
}
.bonus-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd84d;
  font-weight: 700;
}
.bonus-btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}
.bonus-card-note {
  font-size: 11px;
  color: #4a6850;
  text-align: center;
}
.bonus-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.slider-dot.active {
  background: #ffd84d;
  transform: scale(1.3);
}

@media (max-width: 1024px) {
  .bonus-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bonus-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bonus-card {
    display: none;
    width: 100%;
    max-width: 100%;
  }
  .bonus-card.active {
    display: flex;
  }
  .bonus-card[data-index="0"] {
    display: flex;
  }
  .bonus-slider-nav {
    display: flex;
  }
}

@media (min-width: 769px) {
  .bonus-slider-nav {
    display: none;
  }
  .bonus-card {
    display: flex !important;
  }
}
