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

:root {
  --c-header: #1a1a2e;
  --c-header-text: #f0e6c8;
  --c-btn-login: #c9a84c;
  --c-btn-register: #d4af37;
  --c-btn-text: #1a1a2e;
  --c-bg: #f5f0e8;
  --c-bg-dark: #12111e;
  --c-gold: #d4af37;
  --c-gold-light: #f0d060;
  --c-gold-dark: #a87c20;
  --c-text: #1e1c2e;
  --c-text-muted: #6b6580;
  --c-text-light: #f5f0e8;
  --c-card: #ffffff;
  --c-card-alt: #faf5e9;
  --c-border: #e0d4b0;
  --c-success: #2ecc71;
  --c-error: #e74c3c;
  --c-star: #d4af37;
  --c-star-empty: #ddd;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.13);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold);
}

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

.gx-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gx-section {
  padding: 60px 0;
}
.gx-section--dark {
  background: var(--c-bg-dark);
  color: var(--c-text-light);
}
.gx-section--alt {
  background: var(--c-card-alt);
}

.gx-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.gx-title--light {
  color: var(--c-text-light);
}
.gx-subtitle {
  color: var(--c-text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.gx-subtitle--light {
  color: rgba(240, 230, 200, 0.7);
}

.gx-gold {
  color: var(--c-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
}
.btn--login {
  background: var(--c-btn-login);
  color: var(--c-btn-text);
}
.btn--login:hover {
  background: var(--c-gold-light);
  color: var(--c-btn-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn--register {
  background: var(--c-btn-register);
  color: var(--c-btn-text);
}
.btn--register:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: var(--c-btn-text);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(212, 175, 55, 0.12);
  color: var(--c-gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.btn--ghost:hover {
  background: rgba(212, 175, 55, 0.22);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gx-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.gx-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.15);
  color: var(--c-gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.stars {
  display: inline-flex;
  gap: 2px;
}
.stars span {
  font-size: 1rem;
  color: var(--c-star-empty);
  line-height: 1;
}
.stars span.filled {
  color: var(--c-star);
}

.gx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--c-gold-dark);
}
.gx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gx-header__logo img {
  height: 24px;
  width: auto;
}
.gx-header__logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}
.gx-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.gx-header__nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-header-text);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.gx-header__nav a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--c-gold);
}
.gx-header__nav a svg {
  width: 15px;
  height: 15px;
  opacity: 0.75;
}
.gx-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gx-header__review-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(240, 230, 200, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.gx-header__review-count strong {
  color: var(--c-gold);
}
.gx-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.gx-burger:hover {
  background: rgba(212, 175, 55, 0.15);
}
.gx-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.gx-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.gx-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gx-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.gx-mobile-nav {
  display: none;
  background: var(--c-header);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px 20px;
  flex-direction: column;
  gap: 6px;
}
.gx-mobile-nav.open {
  display: flex;
}
.gx-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-header-text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.gx-mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--c-gold);
}
.gx-mobile-nav a svg {
  width: 16px;
  height: 16px;
  opacity: 0.75;
}

.gx-hero {
  position: relative;
  background: var(--c-bg-dark);
  overflow: hidden;
}
.gx-hero__banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #12111e 0%, #1e1a2e 60%, #2a1f10 100%);
  overflow: hidden;
}
.gx-hero__banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}
.gx-hero__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 17, 30, 0.9) 0%,
    rgba(18, 17, 30, 0.3) 100%
  );
  z-index: 1;
}
.gx-hero__banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.gx-hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.gx-hero__brand img {
  height: 56px;
  border-radius: var(--radius-sm);
}
.gx-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.gx-hero__title span {
  color: var(--c-gold);
}
.gx-hero__subtitle {
  color: rgba(240, 230, 200, 0.75);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.gx-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gx-hero__info {
  background: var(--c-bg-dark);
  padding: 40px 0;
}
.gx-hero__info-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gx-rating-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
}
.gx-rating-block__overall {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.gx-rating-block__score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.gx-rating-block__score-label {
  color: rgba(240, 230, 200, 0.6);
  font-size: 0.82rem;
  margin-top: 4px;
}
.gx-rating-block__stars .stars span {
  font-size: 1.4rem;
}
.gx-rating-params {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gx-rating-param {
  display: grid;
  grid-template-columns: 1fr 80px 48px;
  align-items: center;
  gap: 10px;
}
.gx-rating-param__label {
  color: rgba(240, 230, 200, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
}
.gx-rating-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.gx-rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold));
  border-radius: 3px;
  transition: width 1s ease;
}
.gx-rating-param__value {
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: right;
}

.gx-casino-info {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gx-casino-info__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gx-casino-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gx-casino-info__item {
  background: rgba(26, 26, 46, 0.9);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: background var(--transition);
}
.gx-casino-info__item:hover {
  background: rgba(212, 175, 55, 0.08);
}
.gx-casino-info__key {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240, 230, 200, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gx-casino-info__val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-light);
}
.gx-casino-info__val a {
  color: var(--c-gold);
}
.gx-casino-info__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.gx-casino-info__logos img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  opacity: 0.85;
}
.gx-casino-info__more-btn {
  margin-top: 16px;
  align-self: flex-start;
}

.gx-bonuses {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gx-bonus-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
}
.gx-bonus-tile:hover {
  border-color: var(--c-gold);
  background: rgba(212, 175, 55, 0.07);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gx-bonus-tile__icon {
  font-size: 1.6rem;
  line-height: 1;
}
.gx-bonus-tile__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240, 230, 200, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gx-bonus-tile__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.2;
}
.gx-bonus-tile__desc {
  font-size: 0.78rem;
  color: rgba(240, 230, 200, 0.6);
  line-height: 1.5;
}

.gx-toc {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
}
.gx-toc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gx-toc__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gx-toc__tabs::-webkit-scrollbar {
  display: none;
}
.gx-toc__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gx-toc__tab:hover {
  color: var(--c-gold-dark);
  border-bottom-color: var(--c-gold);
}
.gx-toc__tab.active {
  color: var(--c-gold-dark);
  border-bottom-color: var(--c-gold);
}
.gx-toc__tab svg {
  width: 15px;
  height: 15px;
}

.gx-bonus-banner {
  background: linear-gradient(135deg, #1e1a2e, #2a200e);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.gx-bonus-banner__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 4px;
}
.gx-bonus-banner__text p {
  color: rgba(240, 230, 200, 0.7);
  font-size: 0.88rem;
}

.gx-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.gx-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
}
.gx-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.gx-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gx-field input,
.gx-field textarea,
.gx-field select {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: vertical;
}
.gx-field input:focus,
.gx-field textarea:focus,
.gx-field select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.gx-field textarea {
  min-height: 110px;
}

.gx-rating-inputs {
  margin-bottom: 22px;
}
.gx-rating-inputs__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.gx-rating-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.gx-rating-input-row label {
  font-size: 0.85rem;
  color: var(--c-text);
  font-weight: 600;
}
.gx-star-input {
  display: flex;
  gap: 4px;
}
.gx-star-input input[type="radio"] {
  display: none;
}
.gx-star-input label {
  font-size: 1.4rem;
  color: var(--c-star-empty);
  cursor: pointer;
  transition:
    color var(--transition),
    transform var(--transition);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.gx-star-input label:hover,
.gx-star-input label:hover ~ label,
.gx-star-input input:checked ~ label {
  color: var(--c-star);
}
.gx-star-input:hover label {
  color: var(--c-star);
}
.gx-star-input label:hover ~ label {
  color: var(--c-star-empty);
}

.gx-form__success {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #1a8a44;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}
.gx-form__success.show {
  display: block;
}

.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mb-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.mb-review-card:hover {
  box-shadow: var(--shadow-md);
}
.mb-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mb-review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mb-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mb-review-author {
  font-weight: 700;
  color: var(--c-text);
  font-size: 0.92rem;
}
.mb-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-country img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}
.mb-review-date {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.mb-review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mb-rating-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.mb-stars {
  display: flex;
  gap: 2px;
}
.mb-star {
  font-size: 1rem;
  color: var(--c-star-empty);
}
.mb-star.mb-star-filled {
  color: var(--c-star);
}
.mb-rating-details-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.mb-rating-details-btn:hover {
  background: rgba(212, 175, 55, 0.2);
}
.mb-rating-details {
  display: none;
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.mb-rating-details.open {
  display: block;
}
.mb-rating-detail-row {
  display: grid;
  grid-template-columns: 1fr 60px 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.78rem;
}
.mb-rating-detail-row:last-child {
  margin-bottom: 0;
}
.mb-rating-detail-label {
  color: var(--c-text-muted);
  font-weight: 600;
}
.mb-review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.mb-review-source a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-gold-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(164, 124, 32, 0.3);
  padding-bottom: 1px;
  transition: all var(--transition);
}
.mb-review-source a:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
.mb-review-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}
.mb-review-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-text);
}
.mb-review-text-full {
  display: none;
}
.mb-review-expand {
  margin-top: 8px;
  background: none;
  border: none;
  color: var(--c-gold-dark);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color var(--transition);
}
.mb-review-expand:hover {
  color: var(--c-gold);
}
.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.mb-review-pros,
.mb-review-cons {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.mb-review-pros {
  background: rgba(46, 204, 113, 0.07);
  border: 1px solid rgba(46, 204, 113, 0.2);
}
.mb-review-cons {
  background: rgba(231, 76, 60, 0.07);
  border: 1px solid rgba(231, 76, 60, 0.2);
}
.mb-review-pros h5 {
  color: #1a8a44;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.mb-review-cons h5 {
  color: #c0392b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.mb-review-pros ul,
.mb-review-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mb-pro-item {
  font-size: 0.8rem;
  color: #1a8a44;
  font-weight: 600;
}
.mb-con-item {
  font-size: 0.8rem;
  color: #c0392b;
  font-weight: 600;
}
.mb-review-media {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.mb-review-media img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--c-border);
  transition: all var(--transition);
}
.mb-review-media img:hover {
  border-color: var(--c-gold);
  transform: scale(1.04);
}
.mb-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 10px;
}
.mb-review-votes {
  display: flex;
  gap: 8px;
}
.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--c-border);
  background: var(--c-card-alt);
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.mb-vote-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}
.mb-vote-btn.voted {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}
.mb-reply-btn {
  background: none;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.mb-reply-btn:hover {
  border-color: var(--c-gold-dark);
  color: var(--c-gold-dark);
}
.mb-reply-form {
  margin-top: 14px;
  background: var(--c-card-alt);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--c-border);
}
.mb-reply-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  resize: vertical;
  background: #fff;
  transition: border-color var(--transition);
}
.mb-reply-form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.mb-reply-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.mb-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.mb-btn-primary {
  background: var(--c-gold);
  color: var(--c-btn-text);
}
.mb-btn-primary:hover {
  background: var(--c-gold-light);
}
.mb-btn-secondary {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.mb-btn-secondary:hover {
  border-color: var(--c-text-muted);
}

.gx-comparison {
  overflow-x: auto;
}
.gx-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 560px;
}
.gx-comparison table th {
  background: var(--c-header);
  color: var(--c-gold);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--c-gold-dark);
}
.gx-comparison table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.gx-comparison table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.gx-comparison table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
  background: var(--c-card);
  color: var(--c-text);
}
.gx-comparison table tr:last-child td {
  border-bottom: none;
}
.gx-comparison table tr:nth-child(even) td {
  background: var(--c-card-alt);
}
.gx-comparison table tr.gx-highlight td {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--c-gold);
}
.gx-comparison table .stars span {
  font-size: 0.85rem;
}

.gx-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gx-screenshots__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--c-border);
  cursor: pointer;
  transition: all var(--transition);
}
.gx-screenshots__item:hover {
  border-color: var(--c-gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.gx-screenshots__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gx-content-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text);
}
.gx-content-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 2em 0 0.75em;
  border-bottom: 2px solid var(--c-border);
  padding-bottom: 0.4em;
}
.gx-content-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 1.6em 0 0.6em;
}
.gx-content-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  margin: 1.4em 0 0.5em;
}
.gx-content-body p {
  margin-bottom: 1em;
}
.gx-content-body ul,
.gx-content-body ol {
  margin: 0.8em 0 1em 1.5em;
}
.gx-content-body li {
  margin-bottom: 0.4em;
}
.gx-content-body a {
  color: var(--c-gold-dark);
  border-bottom: 1px solid rgba(164, 124, 32, 0.3);
  padding-bottom: 1px;
}
.gx-content-body a:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
.gx-content-body strong,
.gx-content-body b {
  font-weight: 700;
  color: var(--c-text);
}
.gx-content-body em,
.gx-content-body i {
  font-style: italic;
}
.gx-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.88rem;
}
.gx-content-body table th {
  background: var(--c-header);
  color: var(--c-gold);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border);
}
.gx-content-body table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
}
.gx-content-body table tr:nth-child(even) td {
  background: var(--c-card-alt);
}
.gx-content-body blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 12px 18px;
  background: rgba(212, 175, 55, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2em 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.gx-content-body img {
  border-radius: var(--radius-sm);
  margin: 1.2em auto;
}
.gx-content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 2em 0;
}

.gx-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.gx-author__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}
.gx-author__info {
  flex: 1;
}
.gx-author__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 4px;
}
.gx-author__role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.gx-author__bio {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.gx-author__socials {
  display: flex;
  gap: 10px;
}
.gx-author__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.gx-author__socials a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212, 175, 55, 0.1);
}
.gx-author__socials a svg {
  width: 16px;
  height: 16px;
}

.gx-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gx-faq__item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.gx-faq__item:hover {
  box-shadow: var(--shadow-sm);
}
.gx-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.gx-faq__q:hover {
  color: var(--c-gold-dark);
}
.gx-faq__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-gold);
  transition: transform var(--transition);
}
.gx-faq__item.open .gx-faq__q svg {
  transform: rotate(180deg);
}
.gx-faq__a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.gx-faq__item.open .gx-faq__a {
  display: block;
}

.gx-footer {
  background: var(--c-header);
  color: var(--c-header-text);
  padding: 48px 0 28px;
  border-top: 3px solid var(--c-gold-dark);
}
.gx-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gx-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.gx-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}
.gx-footer__logo img {
  height: 38px;
}
.gx-footer__logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-gold);
}
.gx-footer__desc {
  font-size: 0.82rem;
  color: rgba(240, 230, 200, 0.55);
  line-height: 1.65;
}
.gx-footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.gx-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gx-footer__nav a {
  color: rgba(240, 230, 200, 0.65);
  font-size: 0.85rem;
  transition: color var(--transition);
  text-decoration: none;
}
.gx-footer__nav a:hover {
  color: var(--c-gold);
}
.gx-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.gx-footer__trust img {
  height: 30px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(30%);
  border-radius: 4px;
  transition: opacity var(--transition);
}
.gx-footer__trust img:hover {
  opacity: 0.9;
}
.gx-footer__divider {
  border: none;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 24px;
}
.gx-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gx-footer__copyright {
  font-size: 0.78rem;
  color: rgba(240, 230, 200, 0.4);
  line-height: 1.7;
  max-width: 600px;
}
.gx-footer__legal {
  font-size: 0.72rem;
  color: rgba(240, 230, 200, 0.25);
  line-height: 1.65;
  max-width: 680px;
  margin-top: 10px;
}
.gx-footer__18 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(240, 230, 200, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240, 230, 200, 0.4);
  flex-shrink: 0;
}

.gx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a1a2e 0%, #2a1f10 100%);
  border-top: 2px solid var(--c-gold-dark);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.gx-widget__text {
  color: rgba(240, 230, 200, 0.75);
  font-size: 0.85rem;
  line-height: 1.4;
}
.gx-widget__text strong {
  color: var(--c-gold);
  font-weight: 800;
  display: block;
  font-size: 1rem;
}
.gx-widget__close {
  background: none;
  border: none;
  color: rgba(240, 230, 200, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.gx-widget__close:hover {
  color: rgba(240, 230, 200, 0.8);
}
.gx-widget__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gx-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gx-modal-overlay.open {
  display: flex;
}
.gx-modal {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.gx-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--c-text-muted);
  line-height: 1;
  transition: color var(--transition);
}
.gx-modal__close:hover {
  color: var(--c-text);
}
.gx-modal__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 20px;
}

.gx-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1200;
  align-items: center;
  justify-content: center;
}
.gx-lightbox.open {
  display: flex;
}
.gx-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.gx-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.gx-lightbox__close:hover {
  opacity: 1;
}

.gx-spoiler {
  margin-bottom: 0;
}
.gx-spoiler__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  cursor: pointer;
  padding: 6px 0;
  margin-top: 6px;
  transition: color var(--transition);
}
.gx-spoiler__toggle:hover {
  color: var(--c-gold);
}
.gx-spoiler__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.gx-spoiler.open .gx-spoiler__toggle svg {
  transform: rotate(180deg);
}
.gx-spoiler__content {
  display: none;
  margin-top: 12px;
}
.gx-spoiler.open .gx-spoiler__content {
  display: block;
}

@keyframes gx-fadein {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gx-goldpulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
}
.gx-fadein {
  animation: gx-fadein 0.5s ease forwards;
}
.gx-goldpulse {
  animation: gx-goldpulse 2.5s infinite;
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
}
.has-background {
  background: inherit;
}
.entry-content {
  display: block;
}
.wp-post-image {
  max-width: 100%;
}
.elementor-section {
  display: block;
}
.yoast-seo-meta {
  display: none;
}
.wp-caption {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .gx-hero__info-grid {
    grid-template-columns: 1fr;
  }
  .gx-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .gx-header__nav {
    display: none;
  }
  .gx-burger {
    display: flex;
  }
  .gx-section {
    padding: 40px 0;
  }
  .gx-hero__banner {
    min-height: 260px;
  }
  .gx-hero__title {
    font-size: 1.8rem;
  }
  .gx-casino-info__grid {
    grid-template-columns: 1fr;
  }
  .gx-bonuses {
    grid-template-columns: 1fr 1fr;
  }
  .gx-screenshots__grid {
    grid-template-columns: 1fr;
  }
  .gx-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gx-author {
    flex-direction: column;
  }
  .gx-author__photo {
    width: 64px;
    height: 64px;
  }
  .mb-review-pros-cons {
    grid-template-columns: 1fr;
  }
  .gx-bonus-banner {
    flex-direction: column;
  }
  .gx-rating-param {
    grid-template-columns: 1fr 60px 36px;
  }
  body {
    padding-bottom: 80px;
  }
  .gx-widget {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .gx-bonuses {
    grid-template-columns: 1fr;
  }
  .gx-rating-input-row {
    grid-template-columns: 1fr;
  }
  .gx-hero__ctas {
    flex-direction: column;
  }
  .gx-footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .gx-header__actions .btn--login,
  .gx-header__actions .btn--register {
    display: none;
  }
}
