/* Общий стиль */
.slsc-section-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 12px;
}

/* Кнопки */
.slsc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.18s ease;
  font-family: inherit;
}
.slsc-btn--primary {
  background: linear-gradient(135deg, #42ff41 0%, #15a018 100%);
  color: #050505;
  box-shadow: 0 0 18px rgba(82,255,120,0.65);
}
.slsc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(82,255,120,0.95);
}
.slsc-btn--accent {
  background: linear-gradient(135deg, #ff3ab3 0%, #ff7a2b 100%);
  color: #050505;
  box-shadow: 0 0 18px rgba(255,122,178,0.65);
}
.slsc-btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255,122,178,0.95);
}
.slsc-btn--ghost {
  background: transparent;
  color: #f5f5ff;
  border-color: rgba(255,255,255,0.25);
}
.slsc-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* DEMO BLOCK */
.slsc-demo-wrapper {
  background: #020309;
  border-radius: 22px;
  padding: 14px 14px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.85);
  margin-bottom: 24px;
  position: relative;
}
.slsc-demo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.slsc-demo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top, #40369a 0, #151024 40%, #050207 100%);
}
.slsc-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(19,25,76,0.96), rgba(2,2,12,0.98));
  font-size: 0.95rem;
  color: #d3d6ff;
  z-index: 2;
}
.slsc-demo-iframe-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out;
  z-index: 1;
}
.slsc-demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.slsc-demo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  font-size: 0.9rem;
  color: #c0c3e0;
}

/* состояние активного демо */
.slsc-demo-wrapper.slsc-demo--active .slsc-demo-overlay {
  opacity: 0;
  pointer-events: none;
}
.slsc-demo-wrapper.slsc-demo--active .slsc-demo-iframe-wrap {
  opacity: 1;
  pointer-events: auto;
}

/* Fullscreen */
.slsc-fullscreen-active {
  position: fixed !important;
  inset: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 12px 12px 16px !important;
  z-index: 9999 !important;
}
.slsc-fullscreen-active .slsc-demo-frame {
  min-height: calc(100vh - 72px) !important;
}
body.slsc-body-no-scroll {
  overflow: hidden;
}

/* BONUSES */
.slsc-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.slsc-bonus {
  border-radius: 20px;
  padding: 18px 16px 14px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.9);
}
.slsc-bonus--1 {
  background: radial-gradient(circle at top left, #a63aff 0, #5b2bff 40%, #1e1038 86%);
}
.slsc-bonus--2 {
  background: radial-gradient(circle at top left, #ff9a3a 0, #ff5f2b 40%, #321411 86%);
}
.slsc-bonus--3 {
  background: radial-gradient(circle at top left, #22c3ff 0, #0072ff 40%, #07182c 86%);
}
.slsc-bonus--4 {
  background: radial-gradient(circle at top left, #2fffaf 0, #00cc6b 40%, #052219 86%);
}
.slsc-bonus-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.slsc-bonus-desc {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.slsc-bonus-code-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
}
.slsc-bonus-code {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* INFO TABLE */
.slsc-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.slsc-info-table th,
.slsc-info-table td {
  padding: 7px 10px;
}
.slsc-info-table th {
  width: 34%;
  text-align: left;
  color: #9ba0c0;
  font-weight: 500;
}
.slsc-info-table tr:nth-child(odd) {
  background: rgba(255,255,255,0.03);
}

/* PROS / CONS */
.slsc-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.slsc-pros-cons-col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
}
.slsc-section-title--pros {
  color: #4de38e;
}
.slsc-section-title--cons {
  color: #ff6262;
}

/* FAQ */
.slsc-faq-item {
  background: #090a12;
  border-radius: 14px;
  padding: 10px 12px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.slsc-faq-q {
  font-size: 0.95rem;
  font-weight: 600;
}
.slsc-faq-a {
  font-size: 0.9rem;
  color: #c0c3e0;
  margin-top: 4px;
}

/* CONTENT + ANCHOR MENU */
.slsc-content h2 {
  font-size: 1.12rem;
  margin-top: 1.8em;
}

/* Anchor menu */
.slsc-anchor-menu {
  background: #020309;
  border-radius: 22px;
  padding: 14px 14px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.85);
}
.slsc-anchor-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.slsc-anchor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 0.82rem;
}
.slsc-anchor-list li a {
  display: block;
  padding: 8px 8px;
  border-radius: 12px;
  background: radial-gradient(circle at top, #27293c 0, #151524 60%, #070811 100%);
  color: #ffffff;
  text-decoration: none;
}
.slsc-anchor-list li a:hover {
  background: radial-gradient(circle at top, #3a3e62 0, #1d1f33 60%, #090a18 100%);
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .slsc-bonuses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .slsc-bonuses-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .slsc-pros-cons {
    grid-template-columns: minmax(0, 1fr);
  }
}
