@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap");

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

:root {
  --clr-header: #954d27;
  --clr-header-dk: #7a3d1d;
  --clr-btn-red: #762f2d;
  --clr-btn-green: #00b862;
  --clr-bg: #d99340;
  --clr-bg-dk: #c4822e;
  --clr-white: #fff;
  --clr-dark: #1a0d05;
  --clr-card: #fff8f0;
  --clr-border: #c07828;
  --clr-text: #2b1408;
  --clr-muted: #6b3a1f;
  --clr-star: #f5c518;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--clr-btn-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-btn-green);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo 2", cursive;
  line-height: 1.25;
  color: var(--clr-dark);
}

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

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

.box {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 30px;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  filter: brightness(1.06);
}
.btn:active {
  transform: translateY(0);
}

.btn--red {
  background: var(--clr-btn-red);
  color: #fff;
}
.btn--green {
  background: var(--clr-btn-green);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
}
.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-btn-red);
}
.btn--sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 34px;
  font-size: 1.05rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--demo {
  background: transparent;
  border: 2px solid var(--clr-btn-red);
  color: var(--clr-btn-red);
}
.btn--demo:hover {
  background: var(--clr-btn-red);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-wrap {
  background: var(--clr-header);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffd6a0;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-btn-green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.lang-dropdown {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lang-toggle svg {
  width: 14px;
  height: 14px;
}
.lang-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  min-width: 130px;
  z-index: 100;
  overflow: hidden;
}
.lang-list.open {
  display: block;
}
.lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--clr-text);
  font-size: 0.86rem;
  font-weight: 600;
}
.lang-list a:hover {
  background: #f8f0e4;
}
.flag {
  font-size: 1.1rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.burger:hover {
  background: rgba(255, 255, 255, 0.15);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--clr-header-dk);
  padding: 0 16px 16px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
}
.mobile-nav ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav ul a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mobile-nav ul a svg {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 20px 0;
  border-radius: var(--radius);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/band.webp") center/cover no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 8, 0, 0.85) 0%,
    rgba(21, 8, 0, 0.4) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 40px 48px;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-btn-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
  line-height: 1.15;
}
.hero-desc {
  color: #ffe5c4;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-rtp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat span:first-child {
  font-size: 0.75rem;
  color: #ffd6a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat span:last-child {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  font-family: "Baloo 2", cursive;
}

.section-wrap {
  margin-bottom: 28px;
}

.section-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 6px;
}
.section-subtitle {
  color: var(--clr-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.section-header {
  margin-bottom: 20px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  border: 2px solid transparent;
  transition:
    border-color var(--transition),
    transform var(--transition);
  animation: fadeInUp 0.4s ease both;
}
.casino-card:hover {
  border-color: var(--clr-btn-green);
  transform: translateY(-2px);
}
.casino-card.top-1 {
  border-color: #f5c518;
  background: linear-gradient(135deg, #fffbea 0%, #fff8f0 100%);
}
.casino-card.top-2 {
  border-color: #ccc;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff8f0 100%);
}
.casino-card.top-3 {
  border-color: #cd7f32;
  background: linear-gradient(135deg, #fdf0e4 0%, #fff8f0 100%);
}

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

.casino-rank {
  position: absolute;
  top: -10px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-header);
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-card.top-1 .casino-rank {
  background: #f5c518;
  color: #1a0d05;
}
.casino-card.top-2 .casino-rank {
  background: #aaa;
}
.casino-card.top-3 .casino-rank {
  background: #cd7f32;
}

.casino-logo {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border: 1px solid #e8d4b8;
}
.casino-logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.casino-body {
  flex: 1;
  min-width: 0;
}

.casino-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.casino-name {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--clr-dark);
}

.casino-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #eef8f0;
  color: #197a40;
  border: 1px solid #b2e4c6;
  border-radius: 6px;
  padding: 2px 8px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #c07828;
}
.casino-rating svg {
  color: var(--clr-star);
  width: 15px;
  height: 15px;
}

.casino-bonus {
  background: #fff0d6;
  border: 1px solid #f5c518;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-dark);
  display: inline-block;
}

.casino-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.casino-feat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-muted);
  background: #f5ebe0;
  border-radius: 6px;
  padding: 3px 8px;
}
.casino-feat svg {
  width: 12px;
  height: 12px;
  color: var(--clr-btn-green);
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-meta span b {
  color: var(--clr-dark);
  font-weight: 700;
}

.casino-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.load-more-wrap {
  text-align: center;
  margin-top: 20px;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid #e8d4b8;
  font-size: 0.92rem;
}
.info-table th {
  background: var(--clr-header);
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  white-space: nowrap;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:nth-child(even) td {
  background: #fdf5ea;
}
.info-table tr:hover td {
  background: #fde8c8;
}
.info-table td:first-child {
  font-weight: 700;
  color: var(--clr-muted);
  white-space: nowrap;
}
.info-table td:last-child {
  color: var(--clr-dark);
  font-weight: 600;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.advantage-item {
  flex: 1 1 200px;
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 4px solid var(--clr-btn-green);
  transition: transform var(--transition);
}
.advantage-item:hover {
  transform: translateY(-4px);
}
.advantage-icon {
  width: 48px;
  height: 48px;
  background: #e8f7ef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-btn-green);
}
.advantage-icon svg {
  width: 26px;
  height: 26px;
}
.advantage-title {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
}
.advantage-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.55;
}

.demo-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.demo-header {
  background: var(--clr-header);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-header h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0d0500;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: #f8f0e4;
  border-top: 1px solid #e8d4b8;
}
.demo-note {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e8d4b8;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
  transition: background var(--transition);
}
.faq-question:hover {
  background: #f8f0e4;
}
.faq-question.open {
  background: #f8f0e4;
}
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--clr-header);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-btn-green);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.65;
  border-top: 1px solid #e8d4b8;
}
.faq-answer.open {
  display: block;
}
.faq-answer a {
  color: var(--clr-btn-red);
  font-weight: 600;
}
.faq-answer a:hover {
  color: var(--clr-btn-green);
}

.footer-wrap {
  background: var(--clr-header);
  margin-top: auto;
  padding: 36px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-col {
  flex: 1 1 200px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-tagline {
  font-size: 0.84rem;
  color: #ffd6a0;
  margin-top: 8px;
  line-height: 1.5;
}
.footer-title {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #ffd6a0;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: #fff;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.footer-trusts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffd6a0;
  letter-spacing: 0.04em;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  flex: 1 1 300px;
  text-align: left;
}
.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-provider img {
  height: 28px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--clr-header-dk);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.widget-bar.hidden {
  transform: translateY(100%);
}
.widget-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd6a0;
  flex: 1;
}
.widget-text span {
  color: var(--clr-btn-green);
  font-size: 1rem;
}
.widget-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.widget-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.widget-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.content-review {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 28px;
}

.content-review h2 {
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin: 22px 0 10px;
  border-left: 4px solid var(--clr-btn-green);
  padding-left: 12px;
}
.content-review h2:first-child {
  margin-top: 0;
}
.content-review h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 16px 0 8px;
}
.content-review p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--clr-text);
}
.content-review ul,
.content-review ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.content-review li {
  margin-bottom: 6px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--clr-text);
}
.content-review a {
  color: var(--clr-btn-red);
  font-weight: 600;
}
.content-review a:hover {
  color: var(--clr-btn-green);
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
.content-review table th,
.content-review table td {
  border: 1px solid #e8d4b8;
  padding: 9px 14px;
  text-align: left;
}
.content-review table th {
  background: var(--clr-header);
  color: #fff;
  font-weight: 700;
}
.content-review table tr:nth-child(even) td {
  background: #fdf5ea;
}
.content-review strong {
  font-weight: 700;
  color: var(--clr-dark);
}
.content-review em {
  font-style: italic;
  color: var(--clr-muted);
}
.content-review blockquote {
  border-left: 4px solid var(--clr-btn-green);
  background: #eef8f0;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--clr-muted);
}

.author-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  border-left: 5px solid var(--clr-btn-green);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--clr-dark);
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-btn-green);
  margin-bottom: 6px;
}
.author-bio {
  font-size: 0.86rem;
  color: var(--clr-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.author-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-btn-red);
}
.author-link:hover {
  color: var(--clr-btn-green);
}

.main-content {
  flex: 1;
  padding: 8px 0 40px;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.technical-content {
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.technical-content h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--clr-btn-green);
  padding-bottom: 12px;
}
.technical-content h2 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--clr-header);
}
.technical-content h3 {
  font-size: 1rem;
  margin: 16px 0 8px;
  color: var(--clr-dark);
}
.technical-content p {
  margin-bottom: 12px;
  font-size: 0.93rem;
  line-height: 1.65;
}
.technical-content ul,
.technical-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.technical-content li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.technical-content a {
  color: var(--clr-btn-red);
  font-weight: 600;
}
.technical-content a:hover {
  color: var(--clr-btn-green);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--clr-btn-red);
  font-weight: 600;
}
.breadcrumb span {
  color: var(--clr-muted);
}

.hidden-wp-elements {
  display: none !important;
}
.wp-block-spacer {
  clear: both;
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-content {
    padding: 30px 24px;
  }
  .casino-card {
    flex-direction: column;
  }
  .casino-logo {
    width: auto;
  }
  .footer-inner {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero {
    min-height: 340px;
  }
  .hero-content {
    padding: 22px 16px;
  }
  .hero-btns {
    gap: 8px;
  }
  .btn--lg {
    padding: 11px 22px;
    font-size: 0.95rem;
  }
  .advantages-grid .advantage-item {
    flex: 1 1 100%;
  }
  .casino-actions {
    flex-direction: column;
  }
  .casino-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .technical-content {
    padding: 22px 18px;
  }
  .author-card {
    flex-direction: column;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    text-align: center;
  }
  .widget-text {
    font-size: 0.78rem;
  }
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }
  .header-right {
    gap: 6px;
  }
  .online-counter {
    display: none;
  }
}

.d-ax7f3k {
  display: none;
}
.wp-content-preloader {
  visibility: hidden;
}
.elementor-hidden-tablet {
  display: none;
}
.yoast-schema-markup {
  display: none;
}
.entry-meta-author {
  display: none;
}
.post-thumbnail-hidden {
  display: none;
}
.related-posts-wrapper {
  display: none;
}
.wpcf7-hidden {
  display: none;
}
.widget_search {
  display: none;
}

*:focus-visible {
  outline: 2px solid var(--clr-btn-green);
  outline-offset: 2px;
}
