:root {
  --clr-bg: #000210;
  --clr-header: #060c23;
  --clr-blue: #2999ec;
  --clr-green: #42b564;
  --clr-text: #e8eaf6;
  --clr-text-muted: #8c9ac4;
  --clr-border: #1a2347;
  --clr-card: #0a1130;
  --clr-card2: #0d1640;
  --radius: 12px;
  --radius-sm: 8px;
  --font-main: "Roboto", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

body.fixed {
  overflow: hidden;
}

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

a {
  color: var(--clr-blue);
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

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

.section {
  padding: 60px 0;
}
.section--sm {
  padding: 40px 0;
}

.box {
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
}

.btn--blue {
  background: var(--clr-blue);
  color: #fff;
}
.btn--green {
  background: var(--clr-green);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
}
.btn--lg {
  padding: 14px 30px;
  font-size: 17px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--signin {
  background: var(--clr-blue);
  color: #fff;
}
.btn--signup {
  background: var(--clr-green);
  color: #fff;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.header-logo img {
  height: 22px;
  width: auto;
  border-radius: 6px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(41, 153, 236, 0.15);
  color: var(--clr-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.online-count {
  font-size: 12px;
  color: var(--clr-green);
  background: rgba(66, 181, 100, 0.1);
  border: 1px solid rgba(66, 181, 100, 0.3);
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.online-count::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060c23 0%, #0d1a4a 50%, #060c23 100%);
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--clr-text);
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0.9;
}
.hero-badge {
  display: inline-block;
  background: rgba(41, 153, 236, 0.2);
  border: 1px solid var(--clr-blue);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  color: var(--clr-blue);
  margin-bottom: 16px;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slide {
  min-width: 100%;
}
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active {
  background: var(--clr-blue);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--clr-border);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.slider-arrow:hover {
  background: var(--clr-blue);
}
.slider-prev {
  left: 16px;
}
.slider-next {
  right: 16px;
}

.section-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}
.section-header {
  margin-bottom: 36px;
}
.section-header .section-title {
  margin-bottom: 8px;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: var(--clr-blue);
  border-radius: 2px;
  margin: 10px 0 20px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block,
.cons-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--clr-border);
}
.pros-block {
  border-top: 3px solid var(--clr-green);
}
.cons-block {
  border-top: 3px solid #e74c3c;
}
.pros-block h3 {
  color: var(--clr-green);
  margin-bottom: 16px;
}
.cons-block h3 {
  color: #e74c3c;
  margin-bottom: 16px;
}
.pros-block ul,
.cons-block ul {
  list-style: none;
  padding: 0;
}
.pros-block li,
.cons-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
  line-height: 1.5;
}
.pros-block li:last-child,
.cons-block li:last-child {
  border-bottom: none;
}
.pros-block li::before {
  content: "✓";
  color: var(--clr-green);
  font-weight: 700;
  flex-shrink: 0;
}
.cons-block li::before {
  content: "✗";
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
}

.jackpot-block {
  background: linear-gradient(135deg, #0a1130, #0d1a3e);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid rgba(41, 153, 236, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jackpot-block::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(41, 153, 236, 0.06) 0%,
    transparent 60%
  );
}
.jackpot-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  letter-spacing: -1px;
  margin: 12px 0;
  display: block;
}
.jackpot-label {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 6px;
}
.jackpot-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.app-info-table th,
.app-info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 14px;
}
.app-info-table th {
  background: var(--clr-header);
  color: var(--clr-blue);
  font-weight: 600;
}
.app-info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.app-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
}
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-sm);
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn--store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn--store:hover {
  border-color: var(--clr-blue);
  background: rgba(41, 153, 236, 0.1);
  color: #fff;
}
.btn--store svg {
  flex-shrink: 0;
}
.btn--store-icon {
  font-size: 22px;
}

.slot-machine {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}
.reel {
  width: 80px;
  height: 90px;
  background: var(--clr-header);
  border: 2px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
  position: relative;
}
.reel.spin .reel-inner {
  animation: spinReel 0.6s ease-out;
}
@keyframes spinReel {
  0% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-win {
  display: none;
  background: rgba(66, 181, 100, 0.15);
  border: 1px solid var(--clr-green);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  color: var(--clr-green);
  font-weight: 700;
  font-size: 17px;
}
.slot-win.show {
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--clr-border);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(41, 153, 236, 0.4);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-header);
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}
.stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-text {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.review-form {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--clr-border);
  max-width: 540px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  color: var(--clr-text-muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  background: rgba(66, 181, 100, 0.15);
  border: 1px solid var(--clr-green);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--clr-green);
  font-weight: 600;
  margin-top: 12px;
}
.form-success.show {
  display: block;
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}
.footer-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer-nav-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-list a {
  color: var(--clr-text-muted);
  font-size: 13px;
  transition: color 0.15s;
}
.footer-nav-list a:hover {
  color: var(--clr-blue);
}
.footer-payments,
.footer-providers {
  margin-bottom: 24px;
}
.footer-section-label {
  color: var(--clr-text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-logo,
.provider-logo {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--clr-text-muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 600px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links a {
  color: var(--clr-text-muted);
  font-size: 12px;
  transition: color 0.15s;
}
.footer-legal-links a:hover {
  color: var(--clr-blue);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #060c23 0%, #0d1a3e 100%);
  border-top: 2px solid var(--clr-green);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.widget-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.widget-text span {
  color: #ffd700;
  font-weight: 700;
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
  flex-shrink: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 153, 236, 0.4);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-desc {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.card-badge {
  display: inline-block;
  background: rgba(41, 153, 236, 0.15);
  border: 1px solid rgba(41, 153, 236, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: var(--clr-blue);
  margin-top: 12px;
}

.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 181, 100, 0.4);
}
.bonus-card-head {
  background: linear-gradient(135deg, #0d1a3e, #1a2347);
  padding: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.bonus-card-head .card-title {
  font-size: 15px;
  margin-bottom: 4px;
}
.bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: #ffd700;
}
.bonus-card-body {
  padding: 20px;
}
.bonus-card-body p {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.promo-block {
  background: linear-gradient(135deg, #0a1a0e, #0d1640);
  border: 2px solid var(--clr-green);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-header);
  border: 2px dashed var(--clr-green);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  margin: 16px 0;
  font-size: 28px;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: 4px;
}
.copy-btn {
  background: var(--clr-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.copy-btn:hover {
  opacity: 0.85;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  line-height: 1.5;
}
.info-table th {
  background: var(--clr-header);
  color: var(--clr-blue);
  font-weight: 600;
  width: 40%;
}
.info-table tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.02);
}
.info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background 0.15s;
}
.faq-question:hover {
  background: rgba(41, 153, 236, 0.08);
}
.faq-arrow {
  font-size: 18px;
  color: var(--clr-blue);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  padding: 0 20px;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--clr-blue);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--clr-blue);
  margin-bottom: 10px;
}
.author-bio {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-blue);
  font-size: 13px;
  border: 1px solid rgba(41, 153, 236, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.2s;
}
.author-links a:hover {
  background: rgba(41, 153, 236, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 13px 16px;
  text-align: center;
  border: 1px solid var(--clr-border);
  font-size: 14px;
}
.comparison-table th {
  background: var(--clr-header);
  color: var(--clr-blue);
  font-weight: 700;
}
.comparison-table td:first-child {
  text-align: left;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.comparison-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.check-y {
  color: var(--clr-green);
  font-size: 17px;
}
.check-n {
  color: #e74c3c;
  font-size: 17px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-blue);
}
.slot-card-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #0d1640, #1a2347);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.slot-card-body {
  padding: 14px;
}
.slot-card-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}
.slot-card-provider {
  color: var(--clr-text-muted);
  font-size: 12px;
}
.slot-badge {
  display: inline-block;
  font-size: 11px;
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 6px;
  font-weight: 600;
}
.slot-badge--hot {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}
.slot-badge--new {
  background: rgba(41, 153, 236, 0.2);
  color: var(--clr-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: border-color 0.2s;
}
.feature-item:hover {
  border-color: rgba(41, 153, 236, 0.4);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.feature-title {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}
.feature-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
}

.mirror-interactive {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--clr-border);
  text-align: center;
}
.mirror-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.safety-item {
  background: var(--clr-card);
  border: 1px solid rgba(66, 181, 100, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.safety-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.safety-title {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}
.safety-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.video-block {
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  background: #000;
}
.video-block iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.reg-method-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.reg-method-card:hover {
  border-color: var(--clr-blue);
  transform: translateY(-3px);
}
.reg-method-icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.reg-method-title {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}
.reg-method-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.content-review {
  margin: 0 auto;
}
.content-review h2 {
  font-size: 22px;
  color: #fff;
  margin: 28px 0 12px;
}
.content-review h3 {
  font-size: 18px;
  color: #fff;
  margin: 22px 0 10px;
}
.content-review p {
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-review ul,
.content-review ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.content-review li {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.content-review a {
  color: var(--clr-blue);
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.content-review table th,
.content-review table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.content-review table th {
  background: var(--clr-header);
  color: var(--clr-blue);
}
.content-review strong {
  color: #fff;
}
.content-review em {
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-review blockquote {
  border-left: 3px solid var(--clr-blue);
  padding-left: 16px;
  color: var(--clr-text-muted);
  font-style: italic;
  margin: 16px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.breadcrumb a {
  color: var(--clr-text-muted);
}
.breadcrumb a:hover {
  color: var(--clr-blue);
}
.breadcrumb-sep {
  opacity: 0.4;
}

.badge {
  display: inline-block;
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
}
.badge--license {
  background: rgba(41, 153, 236, 0.15);
  color: var(--clr-blue);
  border: 1px solid rgba(41, 153, 236, 0.3);
}
.badge--bonus {
  background: rgba(66, 181, 100, 0.15);
  color: var(--clr-green);
  border: 1px solid rgba(66, 181, 100, 0.3);
}
.badge--18 {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.technical-content {
  max-width: 800px;
  margin: 0 auto;
}
.technical-content h2 {
  font-size: 20px;
  color: #fff;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}
.technical-content h3 {
  font-size: 16px;
  color: var(--clr-blue);
  margin: 18px 0 8px;
}
.technical-content p {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.technical-content li {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 6px;
    z-index: 99;
    overflow-y: auto;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    font-size: 16px;
    padding: 10px 14px;
    width: 100%;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto auto;
  }
  .header-inner .header-nav {
    order: 3;
    grid-column: 1 / -1;
  }
  .header-right {
    gap: 6px;
  }
  .header-right .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .online-count {
    display: none;
  }
  .header-right .online-count {
    display: none;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
  .author-block {
    flex-direction: column;
  }
  .author-photo {
    width: 60px;
    height: 60px;
  }
  .reg-methods {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .reels {
    gap: 4px;
  }
  .reel {
    width: 70px;
    height: 80px;
    font-size: 38px;
  }
  .download-btns {
    flex-direction: column;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wp-e3kp9 {
  display: none;
}
.elementor-xq7m {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-blue {
  box-shadow: 0 0 20px rgba(41, 153, 236, 0.3);
}
.glow-green {
  box-shadow: 0 0 20px rgba(66, 181, 100, 0.3);
}

.mt1 {
  margin-top: 8px;
}
.mt2 {
  margin-top: 16px;
}
.mt3 {
  margin-top: 24px;
}
.mb1 {
  margin-bottom: 8px;
}
.mb2 {
  margin-bottom: 16px;
}
.mb3 {
  margin-bottom: 24px;
}
.pt3 {
  padding-top: 24px;
}
.pb3 {
  padding-bottom: 24px;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--clr-text-muted);
}
.text-green {
  color: var(--clr-green);
}
.text-blue {
  color: var(--clr-blue);
}
.text-gold {
  color: #ffd700;
}


/* Final responsive rebuild */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.wrapper,
main,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mobile-nav-login {
  display: none;
}

.content-review,
.content-box,
.tech-content,
.technical-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background:
    radial-gradient(circle at top right, rgba(41, 153, 236, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(16, 29, 67, 0.98), rgba(8, 17, 42, 0.98));
  border: 1px solid rgba(41, 153, 236, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.content-review {
  padding: 32px;
}

.content-box {
  padding: 34px;
}

.page-technical {
  background:
    radial-gradient(circle at 15% 10%, rgba(41, 153, 236, 0.16), transparent 34%),
    radial-gradient(circle at 85% 25%, rgba(66, 181, 100, 0.08), transparent 30%),
    #060c23;
}

.page-technical main {
  background: transparent;
}

.page-technical .content-review,
.page-technical .tech-content {
  margin: 0;
}

.content-table-scroll,
.table-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
}

.content-review table,
.tech-content table,
.technical-content table {
  width: 100%;
  min-width: 620px;
  max-width: none;
}

.content-review img,
.content-review video,
.content-review iframe,
.tech-content img,
.tech-content video,
.tech-content iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 64px;
    padding: 10px 16px !important;
    gap: 10px !important;
  }

  .header-logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-logo img {
    width: auto !important;
    height: 34px !important;
    max-width: 125px !important;
  }

  .header-right {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    gap: 7px !important;
    flex: 0 0 auto;
  }

  .header-right .btn--signin {
    display: none !important;
  }

  .header-right .btn--signup {
    padding: 9px 12px !important;
    font-size: 12px !important;
  }

  .burger {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 1002;
  }

  .header-nav {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100dvh - 64px) !important;
    margin: 0 !important;
    padding: 18px 16px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    overflow-y: auto !important;
    background: #09132e !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease !important;
    z-index: 1001 !important;
  }

  .header-nav.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header-nav a {
    display: block !important;
    width: 100% !important;
    padding: 13px 15px !important;
    border-radius: 9px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .mobile-nav-login {
    display: block !important;
    margin-top: 8px;
    background: var(--clr-blue) !important;
    color: #fff !important;
    text-align: center !important;
  }

  body.fixed {
    overflow: hidden !important;
  }

  .hero,
  .slide.hero,
  .slider-wrap.hero {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 390px !important;
    overflow: hidden !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 680px !important;
    padding: 46px 20px !important;
  }

  .responsive-2col,
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .pros-cons-grid,
  .features-grid,
  .card-grid,
  .reg-methods,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .slots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .content-review,
  .content-box,
  .technical-content {
    padding: 26px 22px !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .header-inner {
    min-height: 60px;
    padding: 9px 12px !important;
  }

  .header-logo img {
    height: 30px !important;
    max-width: 108px !important;
  }

  .header-right .btn--signup {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  .header-nav {
    top: 60px !important;
    height: calc(100dvh - 60px) !important;
  }

  .hero,
  .slide.hero,
  .slider-wrap.hero {
    min-height: 340px !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 34px 16px !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere;
  }

  .hero-sub {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .hero-content > div[style*="display:flex"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-content .btn {
    width: 100% !important;
    white-space: normal !important;
  }

  .pros-cons-grid,
  .features-grid,
  .card-grid,
  .reg-methods,
  .footer-grid,
  .responsive-2col {
    grid-template-columns: 1fr !important;
  }

  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .content-review,
  .content-box,
  .technical-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px 14px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  .content-review > *,
  .content-box > *,
  .technical-content > * {
    max-width: 100% !important;
  }

  .content-review table,
  .tech-content table,
  .technical-content table {
    width: max-content !important;
    min-width: 580px !important;
  }

  .content-review th,
  .content-review td,
  .tech-content th,
  .tech-content td {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .download-btns {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .download-btns > * {
    width: 100% !important;
  }

  .sticky-widget {
    width: calc(100% - 20px) !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .sticky-widget .btn {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .header-right .btn--signup {
    display: none !important;
  }

  .hero,
  .slide.hero,
  .slider-wrap.hero {
    min-height: 310px !important;
  }

  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .content-review,
  .content-box,
  .technical-content {
    padding: 18px 12px !important;
  }
}


/* Hero mobile fix */
@media (max-width:768px){
.hero-slider,
.hero-swiper,
.hero-banner,
.hero{
overflow:hidden!important;
}
.hero-slider .swiper-wrapper,
.hero-swiper .swiper-wrapper{
display:flex!important;
}
.hero-slider .swiper-slide,
.hero-swiper .swiper-slide,
.hero-slide{
width:100%!important;
min-width:100%!important;
max-width:100%!important;
flex:0 0 100%!important;
box-sizing:border-box!important;
padding:24px 18px!important;
}
.hero-slide>*{max-width:100%!important}
.hero-slide h1,
.hero-slide h2{
font-size:2rem!important;
line-height:1.1!important;
word-break:break-word!important;
}
.hero-slide p{
font-size:1rem!important;
}
.hero-slide .btn,
.hero-slide a.btn{
display:flex!important;
width:100%!important;
justify-content:center!important;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next,
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next{
width:42px!important;
height:42px!important;
}
}


.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #08112f;
  touch-action: pan-y;
}

.hero-carousel__track {
  display: flex;
  width: 100%;
  max-width: 100%;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.hero-carousel__slide {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 480px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-carousel__slide .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel__slide .hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 72px 76px;
  box-sizing: border-box;
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(4,10,29,.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-carousel__arrow--prev { left: 18px; }
.hero-carousel__arrow--next { right: 18px; }

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  cursor: pointer;
}

.hero-carousel__dot.active { background: var(--clr-blue); }

@media (max-width: 768px) {
  .hero-carousel,
  .hero-carousel__track,
  .hero-carousel__slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-carousel__track {
    display: flex !important;
    gap: 0 !important;
  }

  .hero-carousel__slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 520px !important;
    align-items: center !important;
  }

  .hero-carousel__slide .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 46px 54px 72px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .hero-carousel__slide .hero-title,
  .hero-carousel__slide .hero-title[style] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(30px, 10vw, 42px) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-carousel__slide .hero-sub {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-carousel__slide .hero-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-carousel__slide .hero-content > div[style*="display:flex"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .hero-carousel__slide .btn {
    width: min(100%, 420px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
  }

  .hero-carousel__arrow {
    width: 42px !important;
    height: 42px !important;
    font-size: 25px !important;
  }

  .hero-carousel__arrow--prev { left: 8px !important; }
  .hero-carousel__arrow--next { right: 8px !important; }
  .hero-carousel__dots { bottom: 18px !important; }
}

@media (max-width: 480px) {
  .hero-carousel__slide {
    min-height: 540px !important;
  }

  .hero-carousel__slide .hero-content {
    padding: 38px 48px 70px !important;
  }

  .hero-carousel__slide .hero-title,
  .hero-carousel__slide .hero-title[style] {
    font-size: clamp(27px, 9.2vw, 36px) !important;
  }

  .hero-carousel__slide .hero-sub {
    font-size: 15px !important;
  }
}
