*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-brand: #8d0d0f;
  --c-brand-d: #6a0a0c;
  --c-btn-dark: #363636;
  --c-btn-green: #29b149;
  --c-btn-green-d: #1e8f38;
  --c-bg: #1d1d1d;
  --c-bg2: #252525;
  --c-bg3: #2e2e2e;
  --c-text: #f0f0f0;
  --c-text-muted: #a8a8a8;
  --c-border: #3a3a3a;
  --c-gold: #f0b429;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.3;
  color: #fff;
}

.x9f2a {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.b7d1k {
  padding: 60px 0;
}
.b7d1k--sm {
  padding: 40px 0;
}

.q3r8m {
  background: var(--c-brand);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.q3r8m__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.q3r8m__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.q3r8m__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.q3r8m__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
}
.q3r8m__nav a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    color var(--transition),
    opacity var(--transition);
}
.q3r8m__nav a:hover {
  color: var(--c-gold);
}
.q3r8m__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.q3r8m__online {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.q3r8m__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b149;
  display: inline-block;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.q3r8m__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.q3r8m__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.q3r8m__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.q3r8m__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.q3r8m__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.q3r8m__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--c-brand-d);
}
.q3r8m__mobile-nav.is-open {
  display: flex;
}
.q3r8m__mobile-nav a {
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v4n2b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.v4n2b:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.v4n2b:active {
  transform: translateY(0);
}
.v4n2b--dark {
  background: var(--c-btn-dark);
  color: #fff;
}
.v4n2b--dark:hover {
  background: #444;
  color: #fff;
}
.v4n2b--green {
  background: var(--c-btn-green);
  color: #fff;
}
.v4n2b--green:hover {
  background: var(--c-btn-green-d);
  color: #fff;
}
.v4n2b--gold {
  background: var(--c-gold);
  color: #1a1a1a;
}
.v4n2b--gold:hover {
  background: #d9a020;
  color: #1a1a1a;
}
.v4n2b--lg {
  padding: 14px 34px;
  font-size: 1.05rem;
}
.v4n2b--full {
  width: 100%;
}

.h8p3x {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0607 50%, #0d0d0d 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.h8p3x__bg {
  position: absolute;
  inset: 0;
  background-image: url("/starzLog.png");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.h8p3x__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.55) 60%,
    transparent 100%
  );
}
.h8p3x__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 16px;
}
.h8p3x__label {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.h8p3x__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.h8p3x__title span {
  color: var(--c-gold);
}
.h8p3x__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 480px;
}
.h8p3x__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.k2j9c {
  background: linear-gradient(135deg, var(--c-brand-d), #3d0304);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.k2j9c::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 10px
  );
  pointer-events: none;
}
.k2j9c:hover {
  transform: translateY(-4px);
}
.k2j9c__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.k2j9c__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.k2j9c__amount {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--c-gold);
  font-family: "Roboto", sans-serif;
}
.k2j9c__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.s5t7g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.m1r4w {
  background: var(--c-bg2);
  border-radius: var(--radius);
}
.m1r4w h2 {
  color: #fff;
  margin-bottom: 6px;
}
.m1r4w__meta {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.m1r4w__meta-dot {
  color: var(--c-btn-green);
}

.z8k5n {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.z8k5n thead tr {
  background: var(--c-brand);
}
.z8k5n thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.z8k5n tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.z8k5n tbody tr:last-child {
  border-bottom: none;
}
.z8k5n tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.z8k5n td {
  padding: 12px 16px;
  color: var(--c-text);
  vertical-align: middle;
}
.z8k5n td a {
  color: var(--c-btn-green);
  font-weight: 600;
}
.z8k5n td a:hover {
  color: #fff;
}
.z8k5n__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-btn-green);
}
.z8k5n__status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-btn-green);
}
.z8k5n-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.p9e2f {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.p9e2f__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.p9e2f__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p9e2f__item:hover img {
  transform: scale(1.05);
}
.p9e2f__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p9e2f__item:hover .p9e2f__item-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.g7l0q {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.g7l0q__card {
  background: var(--c-bg2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 16px;
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.g7l0q__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}
.g7l0q__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.g7l0q__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 8px 8px;
  line-height: 1.3;
}
.g7l0q__provider {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}

.t3c8v {
  background: var(--c-bg3);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--c-border);
}
.t3c8v__reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.t3c8v__reel {
  width: 72px;
  height: 88px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  overflow: hidden;
  position: relative;
}
.t3c8v__reel.spinning {
  animation: reel-spin 0.08s linear infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
.t3c8v__result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.t3c8v__win {
  color: var(--c-btn-green);
  font-size: 1.2rem;
  font-weight: 700;
  animation: fade-in 0.4s ease;
}
.t3c8v__lose {
  color: #e55;
  font-size: 1rem;
  font-weight: 600;
  animation: fade-in 0.4s ease;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.t3c8v__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.t3c8v__balance {
  font-weight: 700;
  color: #fff;
}

.c4n7b {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 6px;
}

.r6h2x {
  padding: 32px;
  background: var(--c-bg2);
  border-radius: var(--radius);
}
.r6h2x h2 {
  margin-bottom: 20px;
}

.a1q5w__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.a1q5w__card {
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.a1q5w__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.a1q5w__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.a1q5w__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.a1q5w__date {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.a1q5w__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.a1q5w__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.a1q5w__text {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.f2m8k {
  background: var(--c-bg3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
}
.f2m8k h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}
.f2m8k__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.f2m8k__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.f2m8k__input,
.f2m8k__textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition);
}
.f2m8k__input:focus,
.f2m8k__textarea:focus {
  outline: none;
  border-color: var(--c-brand);
}
.f2m8k__textarea {
  min-height: 110px;
  resize: vertical;
}
.f2m8k__success {
  display: none;
  background: rgba(41, 177, 73, 0.12);
  border: 1px solid var(--c-btn-green);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--c-btn-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}
.f2m8k__success.is-visible {
  display: block;
  animation: fade-in 0.3s ease;
}

.n0d5j {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
}
.n0d5j__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.n0d5j__logo img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
}
.n0d5j__desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.n0d5j__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.n0d5j__nav a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.n0d5j__nav a:hover {
  color: #fff;
}
.n0d5j__nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  font-weight: 700;
}
.n0d5j__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.n0d5j__payment-badge {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.n0d5j__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.n0d5j__provider-badge {
  background: rgba(141, 13, 15, 0.15);
  border: 1px solid rgba(141, 13, 15, 0.3);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.n0d5j__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  text-align: center;
}
.n0d5j__legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 10px;
}
.n0d5j__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.w5z3p {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(
    90deg,
    #0d0d0d 0%,
    var(--c-brand-d) 50%,
    #0d0d0d 100%
  );
  border-top: 2px solid var(--c-brand);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.w5z3p__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}
.w5z3p__bonus {
  color: var(--c-gold);
  font-weight: 700;
}
.w5z3p__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.w5z3p__close:hover {
  color: #fff;
}

.e3u9h {
  position: relative;
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
}
.e3u9h__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.e3u9h__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.e3u9h__author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-brand);
}
.e3u9h__author-name {
  font-weight: 700;
  color: #fff;
}
.e3u9h__author-role {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.e3u9h__author-link {
  font-size: 0.78rem;
  color: var(--c-gold);
}
.e3u9h__updated {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.d6f1r {
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
}
.d6f1r h2 {
  margin-bottom: 20px;
}
.d6f1r__item {
  border-bottom: 1px solid var(--c-border);
  padding: 16px 0;
}
.d6f1r__item:last-child {
  border-bottom: none;
}
.d6f1r__q {
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.d6f1r__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.d6f1r__item.is-open .d6f1r__q::after {
  transform: rotate(45deg);
}
.d6f1r__a {
  display: none;
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.d6f1r__item.is-open .d6f1r__a {
  display: block;
  animation: fade-in 0.25s ease;
}

.x9q2p {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.x9q2p__item {
  background: var(--c-bg3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--c-border);
}
.x9q2p__val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-gold);
}
.x9q2p__lab {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sec-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.sec-sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-btn-green);
  background: rgba(41, 177, 73, 0.1);
  border: 1px solid rgba(41, 177, 73, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
}
.badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-btn-green);
  display: inline-block;
  animation: pulse-dot 1.6s infinite;
}

.wp-content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.wp-content-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
}
.wp-content-block h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-gold);
  margin: 18px 0 8px;
}
.wp-content-block p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
}
.wp-content-block ul,
.wp-content-block ol {
  margin: 0 0 16px 20px;
  color: var(--c-text-muted);
}
.wp-content-block li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.wp-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.wp-content-block table th {
  background: var(--c-brand);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}
.wp-content-block table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.wp-content-block table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.wp-content-block a {
  color: var(--c-gold);
}
.wp-content-block strong {
  color: #fff;
}
.wp-content-block blockquote {
  border-left: 3px solid var(--c-brand);
  padding: 12px 20px;
  background: rgba(141, 13, 15, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.7);
}

.u7b4n {
  display: none;
}

.slider-wrap {
  position: relative;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.slider-btn:hover {
  background: var(--c-brand);
}
.slider-btn--prev {
  left: -18px;
}
.slider-btn--next {
  right: -18px;
}

.mb12 {
  margin-bottom: 12px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb32 {
  margin-bottom: 32px;
}
.mt16 {
  margin-top: 16px;
}
.mt24 {
  margin-top: 24px;
}
.ta-c {
  text-align: center;
}

@media (max-width: 1024px) {
  .g7l0q {
    grid-template-columns: repeat(3, 1fr);
  }
  .n0d5j__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .q3r8m__nav {
    display: none;
  }
  .q3r8m__burger {
    display: flex;
  }
  .q3r8m__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .q3r8m__online {
    display: none;
  }
  .h8p3x {
    min-height: 400px;
  }
  .h8p3x__content {
    padding: 40px 16px;
  }
  .p9e2f {
    grid-template-columns: 1fr;
  }
  .p9e2f__slider-wrap {
    overflow: hidden;
  }
  .p9e2f__track {
    display: flex;
    transition: transform 0.4s ease;
  }
  .p9e2f__item {
    flex: 0 0 100%;
  }
  .g7l0q {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .g7l0q__card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }
  .n0d5j__grid {
    grid-template-columns: 1fr;
  }
  .s5t7g {
    grid-template-columns: repeat(2, 1fr);
  }
  .x9q2p {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .s5t7g {
    grid-template-columns: 1fr 1fr;
  }
  .b7d1k {
    padding: 40px 0;
  }
  .t3c8v__reel {
    width: 60px;
    height: 74px;
    font-size: 2rem;
  }
  .w5z3p {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .h8p3x__actions {
    flex-direction: column;
  }
  .h8p3x__actions .v4n2b {
    width: 100%;
    max-width: 280px;
  }
}

.wc-ajax-facade {
  display: none;
}
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.entry-content {
  padding: 0;
}
.elementor-section {
  padding: 0;
}
.wp-caption-text {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 4px;
}
