:root {
  --c-primary: #5274ff;
  --c-primary-hover: #3a5ce8;
  --c-green: #69d253;
  --c-green-hover: #52b83e;
  --c-bg: #f5f5f5;
  --c-white: #ffffff;
  --c-dark: #1a1a2e;
  --c-text: #2d2d2d;
  --c-text-muted: #6c757d;
  --c-border: #e0e0e0;
  --c-header-bg: #ffffff;
  --c-footer-bg: #1a1a2e;
  --c-card-bg: #ffffff;
  --c-plus: #e8f8e3;
  --c-minus: #ffeaea;
  --c-plus-border: #69d253;
  --c-minus-border: #ff5252;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(82, 116, 255, 0.1);
  --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: "Roboto", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.3;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-primary-hover);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.x7q2-wrap {
  width: 100%;
}
.x7q2-section {
  padding: 60px 0;
}
.x7q2-section-sm {
  padding: 40px 0;
}
.x7q2-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.5px;
}
.x7q2-title span {
  color: var(--c-primary);
}
.x7q2-title-left {
  text-align: left;
}
.x7q2-subtitle {
  font-size: 16px;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
}

.btn-primary-custom,
.btn-green-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-custom {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary-custom:hover {
  background: var(--c-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 116, 255, 0.35);
}
.btn-green-custom {
  background: var(--c-green);
  color: #1a1a2e;
}
.btn-green-custom:hover {
  background: var(--c-green-hover);
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 210, 83, 0.35);
}

.x9k3-header {
  background: var(--c-header-bg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.x9k3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.x9k3-logo {
  flex-shrink: 0;
}
.x9k3-logo img {
  height: 44px;
  width: auto;
}

.x9k3-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.x9k3-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}
.x9k3-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--transition);
}
.x9k3-nav a:hover {
  color: var(--c-primary);
}
.x9k3-nav a:hover::after {
  width: 100%;
}

.x9k3-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.x9k3-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}
.x9k3-online-dot {
  width: 8px;
  height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.x9k3-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.x9k3-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.x9k3-burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.x9k3-burger.active span:nth-child(2) {
  opacity: 0;
}
.x9k3-burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.x9k3-mobile-nav {
  display: none;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
}
.x9k3-mobile-nav.active {
  display: block;
}
.x9k3-mobile-nav a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  padding: 10px 16px;
  transition:
    color var(--transition),
    background var(--transition);
  border-radius: 6px;
}
.x9k3-mobile-nav a:hover {
  color: var(--c-primary);
  background: rgba(82, 116, 255, 0.06);
}

.x3h7-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1b4c 0%, #1a2e7a 60%, #2a4bb5 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x3h7-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ttban.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.x3h7-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 20, 80, 0.88) 0%,
    rgba(10, 20, 80, 0.35) 100%
  );
}
.x3h7-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.x3h7-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(105, 210, 83, 0.18);
  border: 1px solid var(--c-green);
  color: var(--c-green);
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.x3h7-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
  text-balance: balance;
}
.x3h7-hero h1 span {
  color: var(--c-green);
}
.x3h7-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}
.x3h7-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.x3h7-hero-btns .btn-green-custom {
  font-size: 16px;
  padding: 14px 32px;
}
.x3h7-hero-btns .btn-primary-custom {
  font-size: 16px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.x3h7-hero-btns .btn-primary-custom:hover {
  background: rgba(255, 255, 255, 0.28);
}

.x3h7-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.x3h7-stat {
  color: rgba(255, 255, 255, 0.9);
}
.x3h7-stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.x3h7-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.x5t1-section {
  background: var(--c-white);
}
.x5t1-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.x5t1-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}
.x5t1-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.x5t1-table tr:last-child {
  border-bottom: none;
}
.x5t1-table tr:hover {
  background: rgba(82, 116, 255, 0.04);
}
.x5t1-table td {
  padding: 13px 20px;
  font-size: 15px;
  text-align: left;
  vertical-align: middle;
}
.x5t1-table td:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: 38%;
  white-space: nowrap;
}
.x5t1-table td:last-child {
  font-weight: 500;
  color: var(--c-text);
}
.x5t1-rating {
  color: #f5a623;
  font-weight: 700;
}
.x5t1-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(105, 210, 83, 0.15);
  color: #3a8a28;
  font-family: "Montserrat", sans-serif;
}

.xb2m-section {
  background: var(--c-bg);
}
.xb2m-grid {
  display: flex;
  gap: 24px;
}
.xb2m-col {
  flex: 1;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.xb2m-col-plus {
  background: var(--c-plus);
  border: 1.5px solid var(--c-plus-border);
}
.xb2m-col-minus {
  background: var(--c-minus);
  border: 1.5px solid var(--c-minus-border);
}
.xb2m-col-title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.xb2m-col-plus .xb2m-col-title {
  color: #2a7a18;
}
.xb2m-col-minus .xb2m-col-title {
  color: #c0392b;
}
.xb2m-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xb2m-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.5;
}
.xb2m-list li .ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
}
.xb2m-col-plus .ico {
  background: var(--c-green);
  color: #fff;
}
.xb2m-col-minus .ico {
  background: #ff5252;
  color: #fff;
}

.x1p9-section {
  background: var(--c-white);
}
.x1p9-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.x1p9-table-wrap {
  flex: 1;
  min-width: 280px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.x1p9-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.x1p9-table tr {
  border-bottom: 1px solid var(--c-border);
}
.x1p9-table tr:last-child {
  border-bottom: none;
}
.x1p9-table tr:hover {
  background: rgba(82, 116, 255, 0.04);
}
.x1p9-table td {
  padding: 11px 18px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}
.x1p9-table td:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: 45%;
}
.x1p9-btns {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.x1p9-btns .x1p9-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--c-dark);
  margin-bottom: 6px;
}
.x1p9-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.x1p9-dl-btn:hover {
  border-color: var(--c-primary);
  background: rgba(82, 116, 255, 0.05);
  transform: translateX(4px);
}
.x1p9-dl-btn svg {
  flex-shrink: 0;
}
.x1p9-dl-btn-text {
  display: flex;
  flex-direction: column;
}
.x1p9-dl-btn-text small {
  font-size: 11px;
  color: var(--c-text-muted);
}
.x1p9-dl-btn-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
}
.x1p9-dl-btn-apk {
  background: linear-gradient(135deg, var(--c-primary), #3a5ce8);
  border-color: var(--c-primary);
  color: #fff;
}
.x1p9-dl-btn-apk:hover {
  background: linear-gradient(135deg, #3a5ce8, #2a4ccc);
  border-color: #2a4ccc;
}
.x1p9-dl-btn-apk .x1p9-dl-btn-text small,
.x1p9-dl-btn-apk .x1p9-dl-btn-text strong {
  color: #fff;
}
.x1p9-bonus-note {
  background: linear-gradient(
    135deg,
    rgba(105, 210, 83, 0.12),
    rgba(82, 116, 255, 0.08)
  );
  border: 1px solid var(--c-green);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--c-text);
  margin-top: 6px;
}
.x1p9-bonus-note strong {
  color: #2a7a18;
}

.xe4v-section {
  background: var(--c-bg);
}
.xe4v-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.xe4v-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.xsl8-section {
  background: linear-gradient(135deg, #0f1b4c 0%, #1a2e7a 100%);
}
.xsl8-section .x7q2-title {
  color: #fff;
}
.xsl8-section .x7q2-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.xsl8-machine {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1e2d6b, #0f1b4c);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(82, 116, 255, 0.3);
}
.xsl8-reels {
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  border: 2px solid rgba(82, 116, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.xsl8-reel {
  flex: 1;
  height: 96px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.15s;
  overflow: hidden;
  position: relative;
}
.xsl8-reel.spinning {
  animation: reel-spin 0.15s linear infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.xsl8-payline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(105, 210, 83, 0.4);
  pointer-events: none;
  transform: translateY(-50%);
}
.xsl8-bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}
.xsl8-bet-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}
.xsl8-credits {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(82, 116, 255, 0.4);
  border-radius: 8px;
  padding: 8px 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.xsl8-spin-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--c-green), #52c23f);
  color: #1a1a2e;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(105, 210, 83, 0.3);
}
.xsl8-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(105, 210, 83, 0.4);
}
.xsl8-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.xsl8-result {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  display: none;
  animation: fade-in 0.3s ease;
}
.xsl8-result.win {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(105, 210, 83, 0.18),
    rgba(105, 210, 83, 0.06)
  );
  border: 1.5px solid var(--c-green);
}
.xsl8-result.lose {
  display: block;
  background: rgba(255, 82, 82, 0.1);
  border: 1.5px solid #ff5252;
}
.xsl8-result-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.xsl8-result.win .xsl8-result-title {
  color: var(--c-green);
}
.xsl8-result.lose .xsl8-result-title {
  color: #ff5252;
}
.xsl8-result p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.xsl8-get-btn {
  display: inline-block;
  padding: 11px 28px;
  background: var(--c-green);
  color: #1a1a2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}
.xsl8-get-btn:hover {
  background: var(--c-green-hover);
  color: #1a1a2e;
  transform: scale(1.04);
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xrc5-section {
  background: var(--c-white);
}
.xrc5-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(82, 116, 255, 0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-primary);
  margin-bottom: 32px;
}
.xrc5-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-primary);
}
.xrc5-author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
}
.xrc5-author-name a {
  color: var(--c-primary);
}
.xrc5-author-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 3px;
}

.xrc5-content h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--c-dark);
}
.xrc5-content h3 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--c-dark);
}
.xrc5-content h4 {
  font-size: 16px;
  margin: 18px 0 8px;
  color: var(--c-dark);
}
.xrc5-content p {
  font-size: 15.5px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--c-text);
}
.xrc5-content ul,
.xrc5-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.xrc5-content ul li,
.xrc5-content ol li {
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.6;
}
.xrc5-content a {
  color: var(--c-primary);
  text-decoration: underline;
}
.xrc5-content strong {
  font-weight: 700;
}
.xrc5-content em {
  font-style: italic;
}
.xrc5-content blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 12px 20px;
  background: rgba(82, 116, 255, 0.05);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.xrc5-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}
.xrc5-content table th {
  background: rgba(82, 116, 255, 0.1);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  font-size: 14px;
}
.xrc5-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  font-size: 14px;
}
.xrc5-content table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
.xrc5-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

.xfq2-section {
  background: var(--c-bg);
}
.xfq2-item {
  background: var(--c-white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.xfq2-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.xfq2-question:hover {
  background: rgba(82, 116, 255, 0.04);
}
.xfq2-question.active {
  color: var(--c-primary);
}
.xfq2-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(82, 116, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 16px;
  color: var(--c-primary);
  font-weight: 900;
}
.xfq2-question.active .xfq2-icon {
  background: var(--c-primary);
  color: #fff;
  transform: rotate(45deg);
}
.xfq2-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.xfq2-answer.active {
  display: block;
  animation: fade-in 0.2s ease;
}

.xrv4-section {
  background: var(--c-white);
}
.xrv4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.xrv4-card {
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--c-border);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.xrv4-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.xrv4-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.xrv4-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-primary);
  flex-shrink: 0;
}
.xrv4-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-dark);
}
.xrv4-stars {
  color: #f5a623;
  font-size: 15px;
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.xrv4-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.xrv4-date {
  font-size: 12px;
  color: var(--c-border);
  margin-top: 10px;
}

.xrv4-form-wrap {
  background: rgba(82, 116, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(82, 116, 255, 0.15);
  max-width: 540px;
}
.xrv4-form-wrap h3 {
  font-size: 20px;
  margin-bottom: 22px;
}
.xrv4-form .form-group {
  margin-bottom: 16px;
}
.xrv4-form label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.xrv4-form input,
.xrv4-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.xrv4-form input:focus,
.xrv4-form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(82, 116, 255, 0.12);
}
.xrv4-form textarea {
  min-height: 110px;
  resize: vertical;
}
.xrv4-success {
  display: none;
  padding: 14px 18px;
  background: rgba(105, 210, 83, 0.15);
  border: 1.5px solid var(--c-green);
  border-radius: 8px;
  color: #2a7a18;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-top: 14px;
  animation: fade-in 0.3s ease;
}

.xft9-footer {
  background: var(--c-footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}
.xft9-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.xft9-col-logo {
  flex: 0 0 220px;
}
.xft9-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.xft9-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.xft9-col {
  flex: 1;
  min-width: 160px;
}
.xft9-col-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.xft9-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.xft9-col a:hover {
  color: var(--c-green);
}

.xft9-payments {
  margin-bottom: 28px;
}
.xft9-section-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.xft9-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.xft9-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: background var(--transition);
}
.xft9-logo-badge:hover {
  background: rgba(255, 255, 255, 0.14);
}

.xft9-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.xft9-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 680px;
}
.xft9-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
}
.xft9-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.xft9-18 {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.xwg1-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0f1b4c 0%, #1a2e7a 100%);
  border-top: 2px solid var(--c-primary);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  padding: 14px 0;
}
.xwg1-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.xwg1-text {
  color: #fff;
  font-size: 14px;
}
.xwg1-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}
.xwg1-text span {
  color: var(--c-green);
  font-weight: 700;
}
.xwg1-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0 0 0 8px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.xwg1-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

body.widget-open {
  padding-bottom: 80px;
}

.wp-block-group {
  display: block;
}
.elementor-widget-container {
  position: relative;
}
.yoast-seo-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.e-con-inner {
  display: flex;
}
.wp-caption {
  text-align: center;
}
.aligncenter {
  margin: 0 auto;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.x9q2z {
  color: transparent;
}
.b7k1p {
  font-size: 0;
}
.m3n6w {
  line-height: 0;
}
.r8t2y {
  display: none;
}
.j4x9c {
  visibility: hidden;
}
.f5v3s {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .x9k3-nav {
    display: none;
  }
  .x9k3-burger {
    display: flex;
  }
  .x3h7-hero {
    min-height: 420px;
  }
  .xb2m-grid {
    flex-direction: column;
  }
  .x1p9-inner {
    flex-direction: column;
  }
  .xft9-top {
    gap: 28px;
  }
  .xft9-col-logo {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .x7q2-section {
    padding: 40px 0;
  }
  .x3h7-hero {
    min-height: 380px;
    padding: 40px 0;
  }
  .x3h7-hero-btns {
    gap: 10px;
  }
  .x3h7-stats {
    gap: 20px;
  }
  .xwg1-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .xrv4-grid {
    grid-template-columns: 1fr;
  }
  .xrv4-form-wrap {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .x9k3-header-inner {
    padding: 10px 0;
  }
  .x9k3-logo img {
    height: 36px;
  }
  .x3h7-hero h1 {
    font-size: 22px;
  }
  .x3h7-hero-btns .btn-green-custom,
  .x3h7-hero-btns .btn-primary-custom {
    padding: 12px 20px;
    font-size: 14px;
  }
  .xsl8-machine {
    padding: 20px 16px;
  }
  .xsl8-reel {
    font-size: 36px;
    height: 76px;
  }
}
