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

:root {
  --color-header: #fe87d7;
  --color-header-dark: #e870c2;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5cb835;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e67500;
  --color-bg: #07a3fe;
  --color-bg-dark: #0590e0;
  --color-white: #ffffff;
  --color-text-dark: #0d1b2a;
  --color-text-light: #ffffff;
  --color-card-bg: #ffffff;
  --color-card-border: rgba(0, 0, 0, 0.08);
  --color-gold: #f5c518;
  --color-plus: #2ecc71;
  --color-minus: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --transition: 0.22s ease;
}

html {
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg);
  min-height: 100vh;
}

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

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

.box {
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn--green {
  background: var(--color-btn-green);
  color: var(--color-white);
}
.btn--green:hover {
  background: var(--color-btn-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(115, 210, 69, 0.4);
}

.btn--orange {
  background: var(--color-btn-orange);
  color: var(--color-white);
}
.btn--orange:hover {
  background: var(--color-btn-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 134, 3, 0.4);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 17px;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

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

/* HEADER */
.site-header {
  background: var(--color-header);
  box-shadow: 0 2px 12px rgba(254, 135, 215, 0.35);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img {
  height: 46px;
  width: auto;
  border-radius: var(--radius-sm);
}
.header-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition:
    background var(--transition),
    color var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(0, 0, 0, 0.12);
}

.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.header-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-btn-green);
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: background var(--transition);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.55);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 130px;
  overflow: hidden;
  z-index: 200;
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: background var(--transition);
}

.lang-menu a:hover {
  background: #f0f0f0;
}
.lang-menu .flag {
  font-size: 18px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: var(--color-header-dark);
}

.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: background var(--transition);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, #ff5fc4 0%, #07a3fe 50%, #ffbe00 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-btn-orange);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hero-content h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-balance: balance;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  line-height: 1.55;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
}
.hero-arrow--prev {
  left: 16px;
}
.hero-arrow--next {
  right: 16px;
}

.section-wrap {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  text-balance: balance;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 30px;
}

/* CASINO RATING */
.casino-grid {
  display: grid;
  gap: 16px;
}

.casino-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
  position: relative;
}

.casino-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.casino-card.top-1 {
  border-color: #f5c518;
  box-shadow:
    0 0 0 2px #f5c51880,
    var(--shadow-md);
}
.casino-card.top-2 {
  border-color: #c0c0c0;
}
.casino-card.top-3 {
  border-color: #cd7f32;
}

.casino-card-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--color-white);
  z-index: 2;
}

.casino-card.top-1 .casino-card-rank {
  background: #f5c518;
}
.casino-card.top-2 .casino-card-rank {
  background: #888;
}
.casino-card.top-3 .casino-card-rank {
  background: #cd7f32;
}
.casino-card:not(.top-1):not(.top-2):not(.top-3) .casino-card-rank {
  background: var(--color-bg);
  color: var(--color-text-dark);
}

.casino-card-inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
}

.casino-card-logo {
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-right: 1px solid var(--color-card-border);
}

.casino-card-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.casino-card-body {
  padding: 16px 18px;
}

.casino-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.casino-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.country-flag {
  font-size: 20px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.casino-stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 1px;
}
.casino-score {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-dark);
}

.casino-bonus {
  background: linear-gradient(90deg, #fff8e1, #fffde7);
  border: 1px solid #f5c518;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #7a5900;
  margin-bottom: 8px;
  display: inline-block;
}

.casino-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.casino-tag {
  background: #f0f0f0;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #555;
}

.casino-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 4px 12px;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.casino-meta span strong {
  color: var(--color-text-dark);
}

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

.casino-card-btns .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
  font-size: 13px;
  padding: 8px 16px;
}

/* INFO TABLE */
.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  font-size: 14px;
}

.info-table th,
.info-table td {
  padding: 13px 20px;
  text-align: left;
  border-bottom: 1px solid #ebebeb;
}

.info-table th {
  background: linear-gradient(90deg, #fe87d7, #e870c2);
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 42%;
}

.info-table tr:last-child td,
.info-table tr:last-child th {
  border-bottom: none;
}

.info-table tr:nth-child(even) td {
  background: #fafafa;
}

.info-table td {
  color: var(--color-text-dark);
  font-weight: 500;
}

.info-table a {
  color: var(--color-bg);
  font-weight: 700;
}

/* ADVANTAGES */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #fe87d7, #ff8603);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.advantage-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* PROS CONS */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-card,
.cons-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.pros-card h3 {
  color: var(--color-plus);
  margin-bottom: 14px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-card h3 {
  color: var(--color-minus);
  margin-bottom: 14px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-card li,
.cons-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-dark);
}

.pros-card li:last-child,
.cons-card li:last-child {
  border-bottom: none;
}

.pros-card li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  margin-top: 1px;
}
.cons-card li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  margin-top: 1px;
}

.demo-wrap {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.demo-header {
  background: linear-gradient(90deg, #fe87d7, #ff8603);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-header h3 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 800;
}

.demo-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.demo-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-footer {
  padding: 16px 24px;
  text-align: center;
  background: #fff8fb;
  border-top: 1px solid #f0e0e8;
}

.demo-footer p {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-header);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe87d7, #07a3fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-white);
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-dark);
}
.review-stars {
  color: var(--color-gold);
  font-size: 15px;
  letter-spacing: 1px;
}
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  max-width: 540px;
  margin: 0 auto;
}

.review-form-wrap h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 5px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color var(--transition);
  outline: none;
  color: var(--color-text-dark);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-header);
  background: var(--color-white);
}
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f8ef;
  border: 1px solid var(--color-plus);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #1a7a3f;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.form-success.show {
  display: block;
}

/* AUTHOR */
.author-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 700px;
  margin: 0 auto;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe87d7, #ff8603);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--color-white);
  flex-shrink: 0;
}

.author-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.author-title {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-bg);
}
.author-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: #fef0f8;
}

.faq-question.open {
  background: #fef0f8;
  color: var(--color-header-dark);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}

.faq-answer.open {
  display: block;
}

/* CONTENT BLOCK ({{ content }}) */
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
  color: var(--color-text-dark);
  margin: 20px 0 10px;
  line-height: 1.3;
}

.content-body h1 {
  font-size: 28px;
}
.content-body h2 {
  font-size: 22px;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 6px;
}
.content-body h3 {
  font-size: 18px;
}
.content-body p {
  margin-bottom: 12px;
  color: #333;
  line-height: 1.7;
}
.content-body ul,
.content-body ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.content-body ul {
  list-style: disc;
}
.content-body ol {
  list-style: decimal;
}
.content-body li {
  margin-bottom: 6px;
  color: #333;
  line-height: 1.6;
}
.content-body a {
  color: var(--color-bg);
  font-weight: 600;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
}
.content-body table th,
.content-body table td {
  padding: 10px 14px;
  border: 1px solid #ddd;
  text-align: left;
}
.content-body table th {
  background: #f5f5f5;
  font-weight: 700;
}
.content-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 10px 0;
}
.content-body blockquote {
  border-left: 4px solid var(--color-header);
  padding: 10px 18px;
  background: #fff5fb;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 12px 0;
  color: #555;
}

/* FOOTER */
.site-footer {
  background: var(--color-header);
  margin-top: auto;
  box-shadow: 0 -2px 12px rgba(254, 135, 215, 0.25);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 16px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 42px;
  border-radius: var(--radius-sm);
}
.footer-logo span {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text-dark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--color-text-dark);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-nav a:hover {
  opacity: 0.7;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-trust-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-text-dark);
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
.footer-provider img {
  height: 28px;
  border-radius: 4px;
}

.footer-legal {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

/* STICKY WIDGET */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #fe87d7 0%, #ff8603 100%);
  z-index: 990;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}

.widget-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}
.widget-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.widget-close:hover {
  color: var(--color-white);
}

/* PAGINATION */
.casino-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.casino-pagination button {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.casino-pagination button:hover,
.casino-pagination button.active {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-color: var(--color-white);
}
.casino-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.casino-loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 16px;
  display: none;
}
.casino-loading.show {
  display: block;
}

/* TECHNICAL PAGE */
.tech-content {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  box-shadow: var(--shadow-md);
  margin: 30px 0;
}

.tech-content h2 {
  font-size: 20px;
  color: var(--color-text-dark);
  margin: 20px 0 10px;
  font-weight: 800;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 6px;
}
.tech-content h3 {
  font-size: 17px;
  color: var(--color-text-dark);
  margin: 14px 0 8px;
  font-weight: 700;
}
.tech-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}
.tech-content ul,
.tech-content ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.tech-content ul {
  list-style: disc;
}
.tech-content ol {
  list-style: decimal;
}
.tech-content li {
  margin-bottom: 6px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}
.tech-content a {
  color: var(--color-bg);
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.breadcrumb span {
  opacity: 0.6;
}

.wp-block-group,
.wp-block-columns,
.elementor-section {
  display: contents;
}
.wp-block-image {
  display: contents;
}

.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-2 {
  margin-bottom: 16px;
}
.text-center {
  text-align: center;
}
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.5s ease both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content-area {
  flex: 1;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 340px;
  }
  .hero-slide {
    padding: 0 20px;
  }
  .casino-card-inner {
    grid-template-columns: 90px 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .author-card {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-trust {
    align-items: flex-start;
  }
  .footer-trust-logos {
    justify-content: flex-start;
  }
  .tech-content {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 300px;
  }
  .casino-card-inner {
    grid-template-columns: 1fr;
  }
  .casino-card-logo {
    border-right: none;
    border-bottom: 1px solid var(--color-card-border);
  }
  .sticky-widget {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.qx9m-placeholder {
  display: none;
  visibility: hidden;
}
.k2p8-overlay {
  pointer-events: none;
  opacity: 0;
}
.r5d1-badge {
  display: none;
}
.m4n7-track {
  visibility: hidden;
}
