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

:root {
  --clr-header: #1d2158;
  --clr-header-dark: #161944;
  --clr-bg: #2d3447;
  --clr-bg-dark: #232737;
  --clr-bg-light: #353b52;
  --clr-btn-login: #96a5d1;
  --clr-btn-login-hover: #7d91c5;
  --clr-btn-reg: #eaae16;
  --clr-btn-reg-hover: #d49c0e;
  --clr-text: #e8ecf7;
  --clr-text-muted: #9aa3c2;
  --clr-accent: #96a5d1;
  --clr-gold: #eaae16;
  --clr-border: #3e4663;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.28);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: "Roboto", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.x9f2k {
  display: none;
}
.wp-block-spacer {
  height: 1px;
}
.entry-content {
  position: relative;
}
.has-text-align-center {
  text-align: center;
}
.elementor-widget {
  position: relative;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.b3xt {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.b3xt-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.a7q-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.a7q-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.a7q-btn:active {
  transform: translateY(0);
}

.a7q-btn--login {
  background: var(--clr-btn-login);
  color: #1d2158;
}
.a7q-btn--login:hover {
  background: var(--clr-btn-login-hover);
  color: #1d2158;
}

.a7q-btn--reg {
  background: var(--clr-btn-reg);
  color: #1a1a1a;
}
.a7q-btn--reg:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a1a1a;
}

.a7q-btn--lg {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: 12px;
}

.a7q-btn--xl {
  padding: 17px 44px;
  font-size: 18px;
  border-radius: 14px;
}

.h9d-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(150, 165, 209, 0.15);
}

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

.h9d-logo img {
  height: 84px;
  width: 140px;
  object-fit: contain;
}

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

.h9d-nav a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all var(--transition);
  text-decoration: none;
}
.h9d-nav a:hover {
  color: var(--clr-gold);
  background: rgba(234, 174, 22, 0.1);
}

.h9d-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.h9d-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
  white-space: nowrap;
}
.h9d-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: h9d-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes h9d-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.h9d-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: 7px;
  transition: background var(--transition);
}
.h9d-burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.h9d-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.h9d-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.h9d-burger.active span:nth-child(2) {
  opacity: 0;
}
.h9d-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.h9d-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--clr-header-dark);
  border-bottom: 2px solid var(--clr-border);
  padding: 16px 18px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.h9d-mobile-menu.active {
  display: flex;
}
.h9d-mobile-menu a {
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.h9d-mobile-menu a:hover {
  background: rgba(150, 165, 209, 0.12);
  border-color: var(--clr-border);
}

.s1-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.s1-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/madBan.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.s1-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(29, 33, 88, 0.93) 0%,
    rgba(29, 33, 88, 0.7) 55%,
    rgba(45, 52, 71, 0.55) 100%
  );
}

.s1-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.s1-hero-label {
  display: inline-block;
  background: rgba(234, 174, 22, 0.18);
  border: 1px solid rgba(234, 174, 22, 0.4);
  color: var(--clr-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.s1-hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.s1-hero h1 span {
  color: var(--clr-gold);
}

.s1-hero-desc {
  font-size: 16px;
  color: rgba(232, 236, 247, 0.85);
  margin-bottom: 28px;
  line-height: 1.65;
}

.s1-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.s1-hero-bonus-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(234, 174, 22, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.s1-hero-bonus-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.s1-hero-bonus-sub {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 18px;
}
.s1-hero-bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s1-hero-bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-text);
}
.s1-hero-bonus-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.2);
  border: 1.5px solid #4ade80;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234ade80' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.p3s-section {
  padding: 64px 0;
}
.p3s-section--dark {
  background: var(--clr-bg-dark);
}
.p3s-section--light {
  background: var(--clr-bg-light);
}

.p3s-heading {
  text-align: center;
  margin-bottom: 44px;
}
.p3s-heading h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.p3s-heading p {
  font-size: 15px;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
}
.p3s-heading-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-login));
  border-radius: 3px;
  margin: 12px auto 0;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.adv-card {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-login));
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(150, 165, 209, 0.4);
}
.adv-card:hover::before {
  opacity: 1;
}

.adv-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.adv-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

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

.jck-card {
  background: linear-gradient(145deg, #1d2158, #2a3060);
  border: 1px solid rgba(234, 174, 22, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.jck-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(234, 174, 22, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.jck-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(234, 174, 22, 0.2);
}

.jck-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.jck-amount {
  font-size: 30px;
  font-weight: 900;
  color: var(--clr-gold);
  text-shadow: 0 0 20px rgba(234, 174, 22, 0.4);
  font-feature-settings: "tnum";
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
  min-height: 38px;
}
.jck-name {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.jck-ticker {
  animation: jck-tick 0.15s ease-in-out;
}
@keyframes jck-tick {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.gm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gm-card {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.gm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  border-color: rgba(150, 165, 209, 0.45);
}

.gm-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--clr-bg-dark);
  position: relative;
}
.gm-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gm-card:hover .gm-card-thumb img {
  transform: scale(1.06);
}

.gm-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 33, 88, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gm-card:hover .gm-card-overlay {
  opacity: 1;
}

.gm-card-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gm-card-info {
  flex: 1;
  overflow: hidden;
}
.gm-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.gm-card-provider {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.gm-swiper-wrap {
  overflow: hidden;
}
.gm-swiper {
  display: flex;
  gap: 14px;
  transition: transform 0.38s ease;
}
.gm-swiper .gm-card {
  flex: 0 0 calc(50% - 7px);
}
.gm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.gm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.gm-dot.active {
  background: var(--clr-gold);
  width: 22px;
  border-radius: 4px;
}

.demo-wrap {
  background: var(--clr-bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.demo-header {
  background: var(--clr-header);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-header-title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.demo-header-badge {
  background: rgba(234, 174, 22, 0.18);
  border: 1px solid rgba(234, 174, 22, 0.4);
  color: var(--clr-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.demo-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-footer-note {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.rv-wrap {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

.rv-wrap h2,
.rv-wrap h3,
.rv-wrap h4 {
  color: #fff;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
.rv-wrap h2 {
  font-size: 24px;
  margin-top: 0;
}
.rv-wrap h3 {
  font-size: 20px;
}
.rv-wrap h4 {
  font-size: 17px;
  color: var(--clr-accent);
}

.rv-wrap p {
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.rv-wrap ul,
.rv-wrap ol {
  margin: 12px 0 14px 24px;
  color: var(--clr-text);
  line-height: 1.7;
}
.rv-wrap ul li,
.rv-wrap ol li {
  margin-bottom: 6px;
}
.rv-wrap ul {
  list-style: disc;
}
.rv-wrap ol {
  list-style: decimal;
}

.rv-wrap table {
  width: auto;
  max-width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  margin: 16px auto 20px;
  font-size: 14px;
  background: var(--clr-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  display: block;
  overflow-x: auto;
}
.rv-wrap table th {
  background: var(--clr-header);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}
.rv-wrap table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.rv-wrap table tr:last-child td {
  border-bottom: none;
}
.rv-wrap table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.rv-wrap a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.rv-wrap a:hover {
  color: var(--clr-gold);
}

.rv-wrap blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 18px;
  background: rgba(234, 174, 22, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--clr-text);
}

.rv-wrap strong {
  color: #fff;
  font-weight: 700;
}
.rv-wrap em {
  color: var(--clr-text-muted);
}

.rv-wrap img {
  border-radius: 8px;
  max-width: 100%;
  margin: 12px auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(150, 165, 209, 0.5);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: background var(--transition);
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(150, 165, 209, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background var(--transition);
}
.faq-arrow svg {
  display: block;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(234, 174, 22, 0.2);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
  padding: 0 20px;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 16px;
}

.author-card {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.author-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--clr-btn-login);
  background: var(--clr-bg-dark);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 12px;
  color: var(--clr-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  background: rgba(150, 165, 209, 0.1);
  border: 1px solid rgba(150, 165, 209, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all var(--transition);
  text-decoration: none;
}
.author-link:hover {
  background: rgba(150, 165, 209, 0.2);
  color: #fff;
  border-color: rgba(150, 165, 209, 0.5);
}

.ft-footer {
  background: var(--clr-header-dark);
  border-top: 2px solid var(--clr-border);
  padding: 50px 0 24px;
}
.ft-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.ft-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}
.ft-tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  max-width: 220px;
  line-height: 1.55;
}
.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ft-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-col ul li a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.ft-col ul li a:hover {
  color: var(--clr-text);
}

.ft-payments {
  padding: 22px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 22px;
}
.ft-payments-title,
.ft-providers-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  text-align: center;
}
.ft-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ft-payment-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.ft-payment-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-text);
}

.ft-providers-section {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--clr-border);
}
.ft-provider-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ft-provider-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.ft-legal {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.ft-legal a {
  color: var(--clr-text-muted);
  text-decoration: underline;
}
.ft-legal a:hover {
  color: var(--clr-text);
}
.ft-copy {
  margin-bottom: 8px;
  font-weight: 500;
}
.ft-18plus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin: 6px 0;
}
.ft-license {
  font-size: 11px;
  opacity: 0.7;
}

.sw-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a1f4a 0%, #1d2158 100%);
  border-top: 2px solid rgba(234, 174, 22, 0.5);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.sw-widget.hidden {
  transform: translateY(100%);
}
.sw-bonus-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.sw-bonus-text span {
  color: var(--clr-gold);
}
.sw-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--clr-text-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.sw-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.brc-wrap {
  background: var(--clr-bg-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
}
.brc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.brc-list li {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.brc-list li a {
  color: var(--clr-accent);
}
.brc-list li a:hover {
  color: var(--clr-gold);
}
.brc-sep {
  opacity: 0.4;
}

.rating-section {
  padding: 48px 0;
}
.rating-card {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.rating-score {
  text-align: center;
}
.rating-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.rating-stars {
  color: var(--clr-gold);
  font-size: 22px;
  letter-spacing: 2px;
  margin: 4px 0;
}
.rating-count {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 36px;
  gap: 10px;
  align-items: center;
}
.rating-bar-label {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.rating-bar-track {
  height: 7px;
  background: var(--clr-bg-dark);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-login));
  border-radius: 4px;
  transition: width 1s ease;
}
.rating-bar-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-gold);
  text-align: right;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fadeup {
  animation: fadeInUp 0.55s ease both;
}
.anim-fadeup-d1 {
  animation-delay: 0.1s;
}
.anim-fadeup-d2 {
  animation-delay: 0.2s;
}
.anim-fadeup-d3 {
  animation-delay: 0.3s;
}
.anim-fadeup-d4 {
  animation-delay: 0.4s;
}

.observe-anim {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.observe-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--clr-gold) 25%,
    #fff 50%,
    var(--clr-gold) 75%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.wp-post-image {
  display: none;
}
.widget_recent_entries {
  display: none;
}
.wpcf7 {
  position: relative;
}
.elementor-section {
  position: relative;
}
.wp-block-columns {
  display: none;
}
.entry-meta {
  display: none;
}
.post-navigation {
  display: none;
}
.site-footer .widget-area {
  display: none;
}

@media (max-width: 991px) {
  .h9d-nav {
    display: none;
  }
  .h9d-burger {
    display: flex;
  }
  .h9d-header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .h9d-online {
    display: none;
  }
  .h9d-actions .a7q-btn:not(.a7q-btn--reg):not(.a7q-btn--login) {
    display: none;
  }
  .gm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ft-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .rating-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rating-score {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .s1-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .s1-hero-bonus-box {
    display: none;
  }
  .s1-hero {
    min-height: 380px;
  }
  .rv-wrap {
    padding: 22px 18px;
  }
  .gm-grid {
    display: none;
  }
  .gm-swiper-wrap {
    display: block;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jck-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-cols {
    grid-template-columns: 1fr;
  }
  .sw-widget {
    padding: 10px 50px 10px 18px;
  }
  .rating-bar-row {
    grid-template-columns: 90px 1fr 32px;
  }
}

@media (max-width: 480px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .jck-grid {
    grid-template-columns: 1fr;
  }
  .h9d-actions {
    gap: 6px;
  }
  .a7q-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .sw-bonus-text {
    font-size: 12px;
  }
  .sw-widget .a7q-btn--xl {
    padding: 11px 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .gm-grid {
    display: none !important;
  }
  .gm-swiper-wrap {
    display: block !important;
  }
}
