*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-bg: #090f1e;
  --clr-header: #141b2e;
  --clr-btn-login: #1f2841;
  --clr-btn-reg: #19ac5a;
  --clr-text: #e8eaf0;
  --clr-text-muted: #8e9ab5;
  --clr-accent: #19ac5a;
  --clr-accent2: #1a9e53;
  --clr-card: #111827;
  --clr-card2: #0d1526;
  --clr-border: #1e2c4a;
  --clr-plus: #19ac5a;
  --clr-minus: #e05252;
  --radius: 10px;
  --transition: 0.25s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #22e07a;
}
ul {
  list-style: none;
}

.xk9f2a {
  display: none;
}
.wp-block-group {
}
.entry-content {
}
.elementor-widget {
}
.wp-post-image {
}

.s1te-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.s1te-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.s1te-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.s1te-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.s1te-logo img {
  height: 40px;
  width: auto;
}
.s1te-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.s1te-nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    color var(--transition),
    background var(--transition);
}
.s1te-nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}
.s1te-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.s1te-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.s1te-online__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 6px var(--clr-accent);
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.btn-login {
  background: var(--clr-btn-login);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-login:hover {
  background: #283450;
  color: var(--clr-text);
  transform: translateY(-1px);
}
.btn-reg {
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-reg:hover {
  background: var(--clr-accent2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(25, 172, 90, 0.4);
}
.s1te-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.s1te-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.s1te-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.s1te-burger.active span:nth-child(2) {
  opacity: 0;
}
.s1te-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.s1te-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  z-index: 99;
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
  animation: slideDown 0.2s ease;
}
.s1te-mobile-nav.open {
  display: flex;
}
.s1te-mobile-nav a {
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid var(--clr-border);
}
.s1te-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s1te-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.s1te-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/winban.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.s1te-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 15, 30, 0.92) 0%,
    rgba(9, 15, 30, 0.6) 60%,
    rgba(9, 15, 30, 0.1) 100%
  );
}
.s1te-hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 60px 20px 60px 40px;
}
.s1te-hero__badge {
  display: inline-block;
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s1te-hero__title {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
}
.s1te-hero__title span {
  color: var(--clr-accent);
}
.s1te-hero__sub {
  font-size: 16px;
  color: #c5cde0;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.s1te-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-reg {
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(25, 172, 90, 0.35);
}
.btn-hero-reg:hover {
  background: var(--clr-accent2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(25, 172, 90, 0.5);
}
.btn-hero-demo {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.btn-hero-demo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.s1te-section {
  padding: 60px 20px;
}
.s1te-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s1te-section__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.s1te-section__sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
}
.s1te-divider {
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin: 10px 0 32px;
}

.s1te-procon {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.s1te-procon__col {
  flex: 1;
  min-width: 260px;
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  padding: 24px;
  margin-bottom: 4px;
}
.s1te-procon__col--pros {
  border-top: 3px solid var(--clr-plus);
}
.s1te-procon__col--cons {
  border-top: 3px solid var(--clr-minus);
}
.s1te-procon__head {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s1te-procon__head svg {
  flex-shrink: 0;
}
.s1te-procon__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.5;
}
.s1te-procon__list li:last-child {
  border-bottom: none;
}
.s1te-procon__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
}
.s1te-procon__col--pros .s1te-procon__list li::before {
  background: var(--clr-plus);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.s1te-procon__col--cons .s1te-procon__list li::before {
  background: var(--clr-minus);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 8z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 8z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.s1te-jackpot {
  background: linear-gradient(135deg, #0c1628 0%, #091020 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s1te-jackpot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(25, 172, 90, 0.12) 0%,
    transparent 70%
  );
}
.s1te-jackpot__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.s1te-jackpot__amount {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(25, 172, 90, 0.4);
}
.s1te-jackpot__amount span {
  color: var(--clr-accent);
}
.s1te-jackpot__sub {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-top: 10px;
}
.s1te-jackpot__btn {
  margin-top: 24px;
  display: inline-block;
}

.s1te-grid3 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.s1te-grid3 > * {
  flex: 1;
  min-width: 260px;
}

.s1te-tournament-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.s1te-tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.s1te-tournament-card__badge {
  display: inline-block;
  background: rgba(25, 172, 90, 0.15);
  color: var(--clr-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.s1te-tournament-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.s1te-tournament-card__desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.s1te-tournament-card__prize {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.3px;
}
.s1te-tournament-card__prize-label {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: -6px;
}
.s1te-tournament-card__timer {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.s1te-timer-seg {
  background: var(--clr-btn-login);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 52px;
}
.s1te-timer-seg__val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.s1te-timer-seg__lbl {
  font-size: 10px;
  color: var(--clr-text-muted);
  display: block;
  margin-top: 2px;
}
.s1te-tournament-card__btn {
  margin-top: auto;
  display: inline-block;
  background: var(--clr-btn-login);
  color: var(--clr-text);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  border: 1px solid var(--clr-border);
  transition:
    background var(--transition),
    color var(--transition);
  text-decoration: none;
  text-align: center;
}
.s1te-tournament-card__btn:hover {
  background: var(--clr-btn-reg);
  color: #fff;
  border-color: var(--clr-btn-reg);
}

.s1te-bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.s1te-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.s1te-bonus-card__head {
  background: linear-gradient(135deg, #192b4a, #0d1a30);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.s1te-bonus-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(25, 172, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s1te-bonus-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-accent);
}
.s1te-bonus-card__amount {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.s1te-bonus-card__amount span {
  color: var(--clr-accent);
}
.s1te-bonus-card__name {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 4px;
}
.s1te-bonus-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s1te-bonus-card__desc {
  font-size: 13px;
  color: var(--clr-text);
  line-height: 1.5;
}
.s1te-bonus-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(25, 172, 90, 0.1);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  width: fit-content;
}
.s1te-bonus-card__btn {
  margin-top: 12px;
  display: block;
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition);
}
.s1te-bonus-card__btn:hover {
  background: var(--clr-accent2);
  color: #fff;
  transform: translateY(-1px);
}

.s1te-demo {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}
.s1te-demo iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}
.s1te-demo__placeholder {
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-card2);
  flex-direction: column;
  gap: 16px;
}
.s1te-demo__placeholder p {
  color: var(--clr-text-muted);
  font-size: 15px;
}

.s1te-review {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px;
}
.s1te-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.s1te-review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #0e7040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.s1te-review__author-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.s1te-review__author-meta {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.s1te-review__author a {
  color: var(--clr-accent);
  font-size: 12px;
}
.s1te-review__content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text);
}
.s1te-review__content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.s1te-review__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
  line-height: 1.3;
}
.s1te-review__content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #e0e4ef;
  margin: 18px 0 8px;
}
.s1te-review__content p {
  margin-bottom: 14px;
}
.s1te-review__content p:last-child {
  margin-bottom: 0;
}
.s1te-review__content ul,
.s1te-review__content ol {
  margin: 12px 0 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s1te-review__content ul {
  list-style: disc;
}
.s1te-review__content ol {
  list-style: decimal;
}
.s1te-review__content li {
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
}
.s1te-review__content a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.s1te-review__content strong {
  color: #fff;
  font-weight: 700;
}
.s1te-review__content em {
  font-style: italic;
  color: #c5cde0;
}
.s1te-review__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow-x: auto;
  display: block;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
}
.s1te-review__content table th {
  background: var(--clr-btn-login);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.s1te-review__content table td {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}
.s1te-review__content table tr:last-child td {
  border-bottom: none;
}
.s1te-review__content table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.s1te-review__content blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 18px;
  margin: 18px 0;
  background: rgba(25, 172, 90, 0.06);
  border-radius: 0 6px 6px 0;
  color: #c5cde0;
  font-style: italic;
}
.s1te-review__content code {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
  color: #e8eaf0;
}
.s1te-review__content pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 16px 0;
}
.s1te-review__content pre code {
  background: none;
  padding: 0;
}
.s1te-review__content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

.s1te-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s1te-faq__item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.s1te-faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 1.4;
}
.s1te-faq__q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.s1te-faq__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(25, 172, 90, 0.15);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.s1te-faq__item.open .s1te-faq__icon {
  transform: rotate(45deg);
}
.s1te-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.s1te-faq__item.open .s1te-faq__a {
  max-height: 400px;
}
.s1te-faq__a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.s1te-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 20px 28px;
}
.s1te-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s1te-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.s1te-footer__brand {
  flex: 1;
  min-width: 220px;
}
.s1te-footer__logo {
  margin-bottom: 14px;
}
.s1te-footer__logo img {
  height: 36px;
  width: auto;
}
.s1te-footer__brand-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.s1te-footer__col {
  flex: 1;
  min-width: 160px;
}
.s1te-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.s1te-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s1te-footer__col a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.s1te-footer__col a:hover {
  color: var(--clr-accent);
}
.s1te-footer__payments {
  margin-bottom: 28px;
}
.s1te-footer__payments-title,
.s1te-footer__providers-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.s1te-footer__payments-list,
.s1te-footer__providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.s1te-payment-badge,
.s1te-provider-badge {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.s1te-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.s1te-footer__copy {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 640px;
}
.s1te-footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.s1te-footer__links a {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.s1te-footer__links a:hover {
  color: var(--clr-accent);
}

.s1te-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #0e1a30, #111d35);
  border-top: 1px solid var(--clr-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.s1te-widget__text {
  display: flex;
  flex-direction: column;
}
.s1te-widget__headline {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.s1te-widget__sub {
  font-size: 12px;
  color: var(--clr-accent);
  font-weight: 600;
  margin-top: 2px;
}
.s1te-widget__cta {
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(25, 172, 90, 0.3);
}
.s1te-widget__cta:hover {
  background: var(--clr-accent2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 172, 90, 0.45);
}
.s1te-widget__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--clr-text-muted);
  font-size: 20px;
  line-height: 1;
  transition: color var(--transition);
}
.s1te-widget__close:hover {
  color: #fff;
}
body.widget-open {
  padding-bottom: 70px;
}

.s1te-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.s1te-rating__stars {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 1px;
}
.s1te-rating__val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.s1te-rating__cnt {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.s1te-info-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.s1te-info-item {
  flex: 1;
  min-width: 140px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.s1te-info-item__val {
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-accent);
  display: block;
  line-height: 1;
}
.s1te-info-item__lbl {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 4px;
  display: block;
}

.s1te-bg-alt {
  background: var(--clr-card2);
}
.s1te-bg-dark {
  background: var(--clr-bg);
}

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

.p9r3kx {
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.wp-content-img {
  display: none;
}

.s1te-slider {
  overflow: hidden;
  position: relative;
}
.s1te-slider__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}
.s1te-slider__nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.s1te-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.s1te-slider__dot.active {
  background: var(--clr-accent);
}

@media (max-width: 1024px) {
  .s1te-nav {
    display: none;
  }
  .s1te-burger {
    display: flex;
  }
  .s1te-header__inner {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .s1te-hero__content {
    padding: 48px 20px;
  }
  .s1te-grid3 {
    gap: 16px;
  }
  .s1te-grid3 > * {
    min-width: 100%;
    flex: none;
  }
  .s1te-section {
    padding: 44px 16px;
  }
  .s1te-procon {
    gap: 14px;
  }
  .s1te-procon__col {
    min-width: 100%;
  }
  .s1te-footer__top {
    gap: 28px;
  }
  .s1te-info-grid {
    gap: 10px;
  }
  .s1te-info-item {
    min-width: calc(50% - 10px);
  }
  .s1te-review {
    padding: 22px 18px;
  }
  .s1te-jackpot {
    padding: 28px 20px;
  }
  .s1te-demo iframe {
    height: 400px;
  }
  .s1te-demo__placeholder {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .s1te-hero {
    min-height: 420px;
  }
  .s1te-hero__btns {
    flex-direction: column;
  }
  .btn-hero-reg,
  .btn-hero-demo {
    text-align: center;
  }
  .s1te-widget {
    padding: 10px 14px;
    gap: 10px;
  }
  .s1te-widget__headline {
    font-size: 14px;
  }
  .s1te-widget__cta {
    font-size: 13px;
    padding: 10px 16px;
  }
  .s1te-info-item {
    min-width: calc(50% - 8px);
  }
  .s1te-timer-seg {
    min-width: 44px;
    padding: 5px 7px;
  }
  .s1te-timer-seg__val {
    font-size: 17px;
  }
}
