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

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

:root {
  --c-header: #222723;
  --c-btn-green: #02504b;
  --c-btn-yellow: #f9c719;
  --c-bg: #0e2f2b;
  --c-text: #e8f0ef;
  --c-text-muted: #9bbbb8;
  --c-card: #132f2c;
  --c-border: rgba(249, 199, 25, 0.18);
  --c-accent: #f9c719;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Montserrat", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--c-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

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

#st-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.st-hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 12px;
}

.st-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.st-logo img {
  height: 46px;
  width: auto;
  border-radius: 6px;
}

.st-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.st-nav a {
  color: #c8dbd9;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.st-nav a:hover {
  color: var(--c-accent);
  background: rgba(249, 199, 25, 0.08);
  text-decoration: none;
}

.st-hd-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.st-online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7dc8c2;
  background: rgba(2, 80, 75, 0.3);
  border: 1px solid rgba(2, 80, 75, 0.5);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.st-online-dot {
  width: 7px;
  height: 7px;
  background: #2dbd6e;
  border-radius: 50%;
  animation: stPulse 1.6s infinite;
}
@keyframes stPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.btn-st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-st:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
  text-decoration: none;
}
.btn-st:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--c-btn-green);
  color: #ffffff;
}
.btn-register {
  background: var(--c-btn-yellow);
  color: #1a1a1a;
}
.btn-bonus-lg {
  background: linear-gradient(135deg, #f9c719, #e8a800);
  color: #1a1a1a;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 800;
}
.btn-green-lg {
  background: var(--c-btn-green);
  color: #fff;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 700;
}

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

.st-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 18px;
  gap: 6px;
}
.st-mobile-menu.is-open {
  display: flex;
}
.st-mobile-menu a {
  color: #c8dbd9;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 7px;
  display: block;
}
.st-mobile-menu a:hover {
  background: rgba(249, 199, 25, 0.1);
  color: var(--c-accent);
  text-decoration: none;
}

#st-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.st-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/sulBan.png") center/cover no-repeat;
  z-index: 0;
}
.st-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 47, 43, 0.92) 40%,
    rgba(14, 47, 43, 0.5) 100%
  );
}
.st-hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 0 60px 0;
}
.st-hero-label {
  display: inline-block;
  background: rgba(249, 199, 25, 0.15);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.st-hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.st-hero-content h1 span {
  color: var(--c-accent);
}
.st-hero-desc {
  font-size: 16px;
  color: #b8d4d2;
  margin-bottom: 28px;
  line-height: 1.7;
}
.st-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.st-hero-perks {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.st-hero-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #9bbbb8;
}
.st-hero-perk svg {
  color: var(--c-accent);
  flex-shrink: 0;
}

.st-section {
  padding: 64px 0;
}
.st-section-alt {
  background: rgba(19, 47, 44, 0.6);
}

.st-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.st-section-title span {
  color: var(--c-accent);
}

.st-section-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 36px;
}

#st-toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.st-toc-title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-toc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  counter-reset: toc-c;
}
.st-toc-grid li {
  counter-increment: toc-c;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 220px;
}
.st-toc-grid li::before {
  content: counter(toc-c) ".";
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 700;
  min-width: 20px;
}
.st-toc-grid li a {
  color: var(--c-text);
  font-size: 14px;
  transition: color 0.2s;
}
.st-toc-grid li a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

.st-mirrors-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.st-mirrors-meta strong {
  color: var(--c-accent);
}

.st-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}
.st-table thead th {
  background: rgba(2, 80, 75, 0.35);
  color: var(--c-accent);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}
.st-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--c-text);
  vertical-align: middle;
}
.st-table tbody tr:hover {
  background: rgba(249, 199, 25, 0.04);
}
.st-table .status-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2dbd6e;
  font-weight: 600;
  font-size: 13px;
}
.st-table .status-ok::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2dbd6e;
  border-radius: 50%;
  display: inline-block;
}

.st-tournaments-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.st-tourn-card {
  flex: 1 1 300px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.st-tourn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.st-tourn-card-head {
  background: linear-gradient(135deg, #02504b, #0a6b64);
  padding: 20px 22px 16px;
  position: relative;
}
.st-tourn-badge {
  display: inline-block;
  background: var(--c-accent);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.st-tourn-name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.st-tourn-prize {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--c-accent);
}
.st-tourn-body {
  padding: 18px 22px;
}
.st-tourn-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.st-tourn-timer-label {
  font-size: 12px;
  color: #7dc8c2;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.st-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.st-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 42px;
}
.st-timer-num {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.st-timer-lbl {
  font-size: 9px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.st-timer-sep {
  color: var(--c-accent);
  font-size: 18px;
  font-weight: 700;
}

.st-slot-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.st-slot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}
.st-reel {
  width: 80px;
  height: 90px;
  background: #0a1e1c;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  transition: transform 0.1s;
  overflow: hidden;
  position: relative;
}
.st-reel.spinning {
  animation: stReelSpin 0.08s linear infinite;
}
@keyframes stReelSpin {
  0% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-3px);
  }
}
.st-slot-spin-btn {
  background: linear-gradient(135deg, #f9c719, #e8a800);
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.st-slot-spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.35);
}
.st-slot-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.st-slot-result {
  margin-top: 20px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.st-slot-win {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: stFadeIn 0.4s ease;
}
.st-slot-win.is-show {
  display: flex;
}
.st-slot-win-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
}
.st-slot-lose {
  display: none;
  font-size: 15px;
  color: #e05c5c;
  animation: stFadeIn 0.4s ease;
}
.st-slot-lose.is-show {
  display: block;
}

#st-review-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
#st-review-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
#st-review-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 22px 0 10px;
}
#st-review-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-accent);
  margin: 18px 0 8px;
}
#st-review-content p {
  margin-bottom: 16px;
}
#st-review-content ul,
#st-review-content ol {
  margin: 12px 0 16px 20px;
}
#st-review-content li {
  margin-bottom: 6px;
}
#st-review-content a {
  color: var(--c-accent);
}
#st-review-content strong {
  color: #fff;
}
#st-review-content em {
  color: #b8d4d2;
}
#st-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
#st-review-content table th {
  background: rgba(2, 80, 75, 0.35);
  color: var(--c-accent);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 13px;
}
#st-review-content table td {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}
#st-review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 18px;
  background: rgba(249, 199, 25, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  color: #b8d4d2;
  font-style: italic;
}

.st-author-card {
  display: flex;
  gap: 28px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  align-items: flex-start;
}
.st-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
}
.st-author-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.st-author-role {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.st-author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.st-author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.st-author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(2, 80, 75, 0.3);
  border: 1px solid rgba(2, 80, 75, 0.6);
  color: #7dc8c2;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none !important;
}
.st-author-links a:hover {
  background: var(--c-btn-green);
  color: #fff;
}

#st-footer {
  background: var(--c-header);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 24px;
}
.st-footer-top {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: flex-start;
}
.st-footer-brand {
  flex: 0 0 auto;
}
.st-footer-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}
.st-footer-tagline {
  font-size: 13px;
  color: var(--c-text-muted);
  max-width: 200px;
  line-height: 1.5;
}

.st-footer-nav {
  flex: 1 1 160px;
}
.st-footer-nav h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.st-footer-nav ul {
  list-style: none;
}
.st-footer-nav li {
  margin-bottom: 8px;
}
.st-footer-nav a {
  color: #9bbbb8;
  font-size: 13px;
  transition: color 0.2s;
}
.st-footer-nav a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

.st-footer-payments {
  width: 100%;
  margin-bottom: 12px;
}
.st-footer-payments h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.st-pay-logos,
.st-prov-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.st-pay-chip,
.st-prov-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #c8dbd9;
  letter-spacing: 0.3px;
  font-family: "Montserrat", sans-serif;
}

.st-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 24px 0;
}
.st-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.st-copyright {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 700px;
}
.st-copyright a {
  color: var(--c-text-muted);
}
.st-age-badge {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c8dbd9;
}

#st-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0a2825, #102f2b);
  border-top: 2px solid var(--c-accent);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}
.st-widget-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.st-widget-text strong {
  color: var(--c-accent);
}
.st-widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.st-widget-close:hover {
  color: #fff;
}

.st-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.st-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.st-faq-q:hover {
  background: rgba(249, 199, 25, 0.05);
}
.st-faq-q svg {
  flex-shrink: 0;
  color: var(--c-accent);
  transition: transform 0.3s;
}
.st-faq-q.is-open svg {
  transform: rotate(180deg);
}
.st-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.st-faq-a.is-open {
  display: block;
  animation: stFadeIn 0.25s ease;
}

@keyframes stFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wp-block-qb47 {
  display: none;
}
.elementor-widget-rz91 {
  visibility: hidden;
}
.wpcf7-xm82 {
  opacity: 0;
}
.yoast-seo-lp33 {
  pointer-events: none;
}
.post-thumbnail-m57k {
  display: none;
}

@media (max-width: 991px) {
  .st-nav {
    display: none;
  }
  .st-burger {
    display: flex;
  }
  .st-hero-content {
    padding: 40px 0;
  }
  .st-tourn-card {
    flex: 1 1 100%;
  }
  .st-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .st-author-links {
    justify-content: center;
  }
  #st-review-content {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .st-hd-inner {
    flex-wrap: nowrap;
  }
  .st-hd-right {
    gap: 6px;
  }
  .st-hd-right .st-online-badge {
    display: none;
  }
  .btn-st {
    padding: 8px 14px;
    font-size: 12px;
  }
  #st-hero {
    min-height: 400px;
  }
  .st-hero-content h1 {
    font-size: 24px;
  }
  .st-section {
    padding: 44px 0;
  }
  #st-toc {
    padding: 20px 16px;
  }
  .st-toc-grid li {
    min-width: 100%;
  }
  .st-slot-wrap {
    padding: 24px 16px;
  }
  .st-reel {
    width: 68px;
    height: 78px;
    font-size: 34px;
  }
  .st-footer-top {
    gap: 24px;
  }
  #st-widget {
    gap: 8px;
  }
  .st-widget-text {
    font-size: 12px;
  }
}

body {
  padding-bottom: 68px;
}
