:root {
  --bg: #1c202d;
  --header: #2a3040;
  --btn-primary: #63d377;
  --btn-secondary: #1c202d;
  --text: #e8eaf0;
  --text-muted: #8b93a8;
  --text-dim: #6b7280;
  --accent: #63d377;
  --accent-hover: #4ebb63;
  --border: #3a4156;
  --card: #252c3d;
  --card-hover: #2d3549;
  --star: #f5a623;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.xk9p2 {
  display: none;
}
.q7r3m {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.zb5wq,
.lf4nx {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
.section-gap {
  padding: 64px 0;
}
.section-gap-sm {
  padding: 40px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
h4 {
  font-size: 1.1rem;
}
h5 {
  font-size: 0.95rem;
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn-primary);
  color: #0d1117;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0d1117;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 211, 119, 0.35);
}
.btn-secondary {
  background: var(--btn-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--header);
  border-color: var(--accent);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 2px;
}
.star {
  font-size: 18px;
  color: #3a4156;
}
.star.filled {
  color: var(--star);
}
.star.half {
  color: var(--star);
}
.rating-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.site-header {
  background: var(--header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  height: 94px;
  width: auto;
}
.header-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.header-logo-text span {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-review-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 4px;
}
.header-review-count strong {
  color: var(--accent);
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-auth {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 32, 45, 0.97) 0%,
    rgba(28, 32, 45, 0.85) 60%,
    rgba(28, 32, 45, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}

.casino-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.casino-tile-logo {
  width: 100px;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.casino-tile-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.casino-tile-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.casino-tile-rating .rating-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--star);
}
.casino-tile-bonus {
  background: rgba(99, 211, 119, 0.1);
  border: 1px solid rgba(99, 211, 119, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 16px 0;
}
.casino-tile-bonus-label {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.casino-tile-bonus-value {
  font-size: 1.1rem;
  font-weight: 700;
}
.casino-tile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.rating-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rating-distribution {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.rating-distribution h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rating-bar-label {
  width: 60px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.rating-bar-label .star {
  font-size: 12px;
}
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #4ebb63 100%);
  transition: width 0.8s ease;
}
.rating-bar-count {
  width: 30px;
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.aggregate-score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.aggregate-score-card .big-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--star);
  line-height: 1;
}
.aggregate-score-card .score-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.param-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.param-rating-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.param-rating-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.param-rating-stars {
  display: flex;
  gap: 2px;
}
.param-rating-stars .star {
  font-size: 13px;
}
.param-score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--star);
}

.section-title {
  margin-bottom: 32px;
}
.section-title h2 {
  margin-bottom: 8px;
}
.section-title p {
  color: var(--text-muted);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.bonus-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #0d1117;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.bonus-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 211, 119, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.bonus-card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.bonus-card-wager {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bonus-card-wager strong {
  color: var(--text);
}

.leave-review-banner {
  background: linear-gradient(135deg, #2a3a2d 0%, #1e2d21 100%);
  border: 1px solid rgba(99, 211, 119, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.leave-review-banner-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.leave-review-banner-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.leave-review-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.review-form-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}
.review-form-section h3 {
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-input,
.form-textarea,
.form-select {
  background: #1a1f2e;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.star-rating-input {
  display: flex;
  gap: 6px;
  font-size: 28px;
  cursor: pointer;
}
.star-rating-input .sr-star {
  color: #3a4156;
  transition: color var(--transition);
}
.star-rating-input .sr-star.active,
.star-rating-input .sr-star:hover,
.star-rating-input:hover .sr-star {
  color: var(--star);
}
.star-rating-input .sr-star ~ .sr-star {
  color: #3a4156;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.review-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.review-meta strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-country img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}
.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.review-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.review-rating-summary {
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-rating-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--star);
}
.rating-details-toggle {
  font-size: 0.75rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.rating-details-panel {
  display: none;
  background: #1a1f2e;
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 8px;
}
.rating-details-panel.open {
  display: block;
}
.rating-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.8rem;
}
.rating-detail-label {
  color: var(--text-muted);
}
.rating-detail-stars {
  display: flex;
  gap: 2px;
}
.rating-detail-stars .star {
  font-size: 11px;
}
.review-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.review-body {
  position: relative;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.review-text-short input[type="checkbox"] {
  display: none;
}
.review-text-short
  input[type="checkbox"]:checked
  ~ .review-text-inner
  .review-truncated {
  display: none;
}
.review-text-short
  input[type="checkbox"]:checked
  ~ .review-text-inner
  .review-full {
  display: block;
}
.review-text-short input[type="checkbox"]:checked ~ .review-expand-label {
  display: none;
}
.review-text-short input[type="checkbox"] ~ .review-text-inner .review-full {
  display: none;
}
.review-truncated,
.review-full {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.review-expand-label {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 0.83rem;
  cursor: pointer;
  font-weight: 600;
}
.review-expand-label:hover {
  color: var(--accent-hover);
}

.review-source {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-source-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
}
.review-source-badge {
  background: rgba(99, 211, 119, 0.12);
  border: 1px solid rgba(99, 211, 119, 0.25);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
  padding: 16px;
  background: #1a1f2e;
  border-radius: var(--radius-sm);
}
.pros-cons h5 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pros-cons h5.pros {
  color: #4ebb63;
}
.pros-cons h5.cons {
  color: #e05454;
}
.pros-cons ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pros-cons li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.pro-marker {
  color: #4ebb63;
  font-weight: 700;
  flex-shrink: 0;
}
.con-marker {
  color: #e05454;
  font-weight: 700;
  flex-shrink: 0;
}

.review-media {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.review-media img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}

.review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}
.review-votes {
  display: flex;
  gap: 8px;
}
.vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #1a1f2e;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.vote-btn:hover,
.vote-btn.voted {
  border-color: var(--accent);
  color: var(--text);
}
.vote-btn.like-btn:hover,
.vote-btn.like-btn.voted {
  background: rgba(99, 211, 119, 0.1);
}
.vote-btn.dislike-btn:hover,
.vote-btn.dislike-btn.voted {
  background: rgba(224, 84, 84, 0.1);
  border-color: #e05454;
  color: #e05454;
}
.reply-toggle-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  background: #1a1f2e;
  transition: all var(--transition);
}
.reply-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}
.reply-form-wrap {
  display: none;
  margin-top: 14px;
  background: #1a1f2e;
  border-radius: var(--radius-sm);
  padding: 16px;
}
.reply-form-wrap.open {
  display: block;
}
.reply-form-wrap textarea {
  background: #252c3d;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
  resize: vertical;
  min-height: 80px;
}
.reply-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* COMPARISON TABLE */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th {
  background: #252c3d;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  vertical-align: middle;
}
.comparison-table tr:hover td {
  background: #252c3d;
}
.comparison-table .casino-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.comparison-table .casino-logo-sm {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
  background: #1a1f2e;
  padding: 4px;
}
.table-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.table-rating .star {
  font-size: 13px;
}
.table-rating-num {
  font-weight: 700;
  color: var(--star);
  font-size: 0.9rem;
}
.table-check {
  color: var(--accent);
  font-size: 1.1rem;
}
.table-cross {
  color: #e05454;
  font-size: 1.1rem;
}

/* SUPPLEMENTARY */
.info-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.info-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition);
}
.info-tile:hover {
  transform: translateY(-2px);
}
.info-tile-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.info-tile-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.info-tile-value {
  font-size: 1rem;
  font-weight: 700;
}

/* TRUSTPILOT */
.trustpilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.tp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.tp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.tp-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d1117;
  flex-shrink: 0;
}
.tp-user-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.tp-user-meta {
  font-size: 0.73rem;
  color: var(--text-muted);
}
.tp-logo-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #00b67a;
  font-weight: 700;
}
.tp-logo-badge svg {
  width: 65px;
  height: 67px;
}
.tp-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.tp-star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-star svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}
.tp-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tp-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tp-body {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.tp-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.tp-action-btn {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.tp-action-btn:hover {
  color: var(--text);
}

/* CONTENT BLOCK */
.content-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  color: var(--text);
  margin: 1.5em 0 0.6em;
  line-height: 1.3;
}
.content-block h1 {
  font-size: 1.9rem;
}
.content-block h2 {
  font-size: 1.5rem;
}
.content-block h3 {
  font-size: 1.25rem;
}
.content-block p {
  color: var(--text-muted);
  margin-bottom: 1em;
  line-height: 1.75;
}
.content-block a {
  color: var(--accent);
  text-decoration: underline;
}
.content-block a:hover {
  color: var(--accent-hover);
}
.content-block ul,
.content-block ol {
  margin: 1em 0 1em 1.5em;
  color: var(--text-muted);
}
.content-block ul {
  list-style: disc;
}
.content-block ol {
  list-style: decimal;
}
.content-block li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  text-align: left;
}
.content-block table th {
  background: #252c3d;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  border: 1px solid var(--border);
}
.content-block table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}
.content-block table tr:nth-child(even) td {
  background: #1e2436;
}
.content-block blockquote {
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  background: #1e2436;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5em 0;
  color: var(--text-muted);
  font-style: italic;
}
.content-block strong {
  color: var(--text);
  font-weight: 700;
}
.content-block em {
  font-style: italic;
}
.content-block hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}
.content-block code {
  background: #1a1f2e;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--accent);
}
.content-block pre {
  background: #1a1f2e;
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5em 0;
}
.content-block pre code {
  background: none;
  padding: 0;
}

/* AUTHOR BOX */
.author-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 24px;
}
.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border);
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.author-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.author-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.author-link {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  background: var(--header);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--text);
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 6px 0;
}
.footer-logo-badge {
  background: #252c3d;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color var(--transition);
}
.footer-logo-badge:hover {
  border-color: var(--accent);
  color: var(--text);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 30px 0;
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 680px;
}
.footer-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-flag-img {
  font-size: 1.5rem;
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.trust-badge {
  background: #252c3d;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #252c3d;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d1117;
}
.social-link svg {
  width: 16px;
  height: 16px;
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--header);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #252c3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.mobile-nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* FADE IN ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}
.fade-in-up-1 {
  animation-delay: 0.1s;
}
.fade-in-up-2 {
  animation-delay: 0.2s;
}
.fade-in-up-3 {
  animation-delay: 0.3s;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.pulse {
  animation: pulse 2s ease infinite;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-green {
  background: rgba(99, 211, 119, 0.15);
  color: var(--accent);
  border: 1px solid rgba(99, 211, 119, 0.3);
}
.badge-blue {
  background: rgba(99, 163, 211, 0.15);
  color: #63a3d3;
  border: 1px solid rgba(99, 163, 211, 0.3);
}
.badge-yellow {
  background: rgba(245, 166, 35, 0.15);
  color: var(--star);
  border: 1px solid rgba(245, 166, 35, 0.3);
}
.badge-red {
  background: rgba(224, 84, 84, 0.15);
  color: #e05454;
  border: 1px solid rgba(224, 84, 84, 0.3);
}

/* MISC */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.page-banner-sm {
  background: linear-gradient(135deg, #252c3d 0%, #1e2436 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-banner-sm-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.page-banner-sm-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}
.wp-block-content {
  display: none;
}

.review-count-badge {
  background: rgba(99, 211, 119, 0.1);
  border: 1px solid rgba(99, 211, 119, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(99, 211, 119, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  cursor: pointer;
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-hover);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .param-ratings {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas: "logo actions" "nav nav";
  }
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .mobile-auth {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .header-desktop-auth {
    display: none;
  }
  .header-review-count {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 32px 0;
    gap: 24px;
  }
  .param-ratings {
    grid-template-columns: 1fr 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .leave-review-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .leave-review-banner-actions {
    flex-wrap: wrap;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .review-header {
    flex-direction: column;
  }
  .review-rating-block {
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .info-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .trustpilot-grid {
    grid-template-columns: 1fr;
  }
  .content-block {
    padding: 22px;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .casino-tile {
    padding: 20px;
  }
  .param-ratings {
    grid-template-columns: 1fr 1fr;
  }
  .info-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .aggregate-score-card .big-score {
    font-size: 2.5rem;
  }
  .review-card {
    padding: 18px;
  }
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.wp-block-separator {
  border: none;
  border-top: 1px solid transparent;
  margin: 0;
}
.elementor-widget-wrap,
.elementor-section {
  display: contents;
}
.site-content .entry-content {
  display: contents;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}
.text-gradient-x {
  background-clip: text;
  -webkit-background-clip: text;
}
.skew-y-3 {
  transform: skewY(3deg);
}
.rotate-180 {
  transform: rotate(180deg);
}
