:root {
  --bg-base: #05070a;
  --bg-panel: #0c1016;
  --bg-panel-alt: #11161f;
  --bg-header: #000000;
  --line: #1e2733;
  --line-soft: #18202b;
  --text: #eef3f6;
  --text-muted: #a8b4c0;
  --accent: #3ef03e;
  --accent-strong: #2bd52b;
  --accent-soft: rgba(62, 240, 62, 0.14);
  --blue-deep: #0b1d3a;
  --blue-glow: #2f7cf6;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  --font: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg-header);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo-link:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(62, 240, 62, 0.45));
}

.header-logo-img {
  height: 46px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-login,
.btn-header-signup {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-header-login {
  background: var(--accent);
  color: #04120a;
  box-shadow: 0 0 0 rgba(62, 240, 62, 0);
}

.btn-header-signup {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-header-login::after,
.btn-header-signup::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn-header-login:hover::after,
.btn-header-signup:hover::after {
  left: 130%;
}

.btn-header-login:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(62, 240, 62, 0.35);
}

.btn-header-signup:hover {
  background: var(--accent);
  color: #04120a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(62, 240, 62, 0.3);
}

.btn-header-login:active,
.btn-header-signup:active {
  transform: translateY(0);
}

.hero-banner-section {
  padding: 30px 0 10px;
}

.hero-banner-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-banner-img-wrap {
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(3, 8, 20, 0.9) 0%, rgba(3, 8, 20, 0.72) 42%, rgba(3, 8, 20, 0.1) 72%, rgba(3, 8, 20, 0) 100%);
}

.hero-banner-content {
  max-width: 560px;
  padding: 0 clamp(20px, 4vw, 54px);
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-cta-headline {
  font-size: clamp(26px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-accent-text {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(62, 240, 62, 0.4);
}

.hero-cta-subtext {
  margin-top: 16px;
  max-width: 460px;
  color: var(--text-muted);
  font-size: clamp(14px, 1.5vw, 17px);
}

.hero-banner-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 46px;
  border-radius: 10px;
  background: var(--accent);
  color: #04120a;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation: pulse-glow 2.6s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-banner-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-3px) scale(1.03);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62, 240, 62, 0.5); }
  50% { box-shadow: 0 0 26px 6px rgba(62, 240, 62, 0.24); }
}

.slots-section {
  padding: 54px 0 10px;
}

.section-title-wrap {
  margin-bottom: 26px;
  text-align: center;
}

.section-title-tag {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.section-subtitle-tag {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slot-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.slot-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.6), 0 0 22px rgba(62, 240, 62, 0.18);
}

.slot-thumb-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.slot-card:hover .slot-image {
  transform: scale(1.09);
  filter: brightness(0.55) saturate(1.1);
}

.slot-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(4, 8, 12, 0.35);
  transition: opacity 0.35s ease;
}

.slot-card:hover .slot-hover-overlay {
  opacity: 1;
}

.slot-play-btn {
  padding: 12px 38px;
  border-radius: 9px;
  background: var(--accent);
  color: #04120a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(14px) scale(0.9);
  transition: transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.slot-card:hover .slot-play-btn {
  transform: translateY(0) scale(1);
}

.slot-play-btn:hover {
  background: var(--accent-strong);
  box-shadow: 0 10px 26px rgba(62, 240, 62, 0.4);
}

.slot-info-box {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line-soft);
}

.slot-name-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.slot-sub-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

.page-content-wrapper {
  padding: 54px 0 0;
}

.page-content-box {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-panel-alt);
  cursor: pointer;
  list-style: none;
  transition: background 0.25s ease;
}

.page-content-header::-webkit-details-marker {
  display: none;
}

.page-content-header:hover {
  background: #161d28;
}

.page-content-title-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.page-content-toggle-indicator {
  color: var(--accent);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.page-content-box[open] .page-content-toggle-indicator {
  transform: rotate(180deg);
}

.page-content-body {
  padding: 20px 22px 26px;
}

.page-content-list {
  list-style: none;
  columns: 2;
  column-gap: 34px;
}

.page-content-list li {
  break-inside: avoid;
  margin-bottom: 4px;
}

.page-content-sublist {
  list-style: none;
  margin: 4px 0 4px 18px;
}

.page-content-link {
  display: inline-block;
  padding: 5px 0;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}

.page-content-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-left: 6px;
}

.page-content-link.sub-item {
  color: var(--text-muted);
  font-size: 14px;
}

.article-section {
  padding: 40px 0 10px;
}

.article-body {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3.5vw, 44px);
}

.article-body h1 {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 22px;
}

.article-body h2 {
  position: relative;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  margin: 42px 0 16px;
  padding-left: 16px;
}

.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 3px;
  background: var(--accent);
}

.article-body h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--accent);
  margin: 30px 0 12px;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.article-body p strong,
.article-body li strong,
.article-body td strong {
  color: var(--text);
  font-weight: 700;
}

.article-body ol,
.article-body ul {
  margin: 0 0 18px 22px;
  color: var(--text-muted);
}

.article-body li {
  margin-bottom: 8px;
}

.article-divider {
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, var(--line) 0%, rgba(62, 240, 62, 0.35) 50%, var(--line) 100%);
  border: 0;
}

.table-scroll {
  overflow-x: auto;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}

.data-table th {
  background: var(--bg-panel-alt);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.data-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-soft);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:hover {
  background: var(--accent-soft);
}

.data-table td:first-child {
  color: var(--text);
  font-weight: 600;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  background: var(--bg-panel-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: var(--accent);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-summary:hover {
  color: var(--accent);
}

.faq-content {
  padding: 0 20px 18px;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 60px;
  background: var(--bg-header);
  border-top: 1px solid var(--line);
  padding: 44px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.footer-logo-link {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 42px;
  width: auto;
}

.footer-desc-text {
  margin-top: 14px;
  max-width: 460px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-column-title {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 9px;
}

.footer-nav-link {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-nav-link:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge-item {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-panel);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.footer-responsible-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0;
  padding: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.footer-age-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.footer-responsible-text {
  color: var(--text-muted);
  font-size: 13.5px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner-overlay {
    background: linear-gradient(90deg, rgba(3, 8, 20, 0.94) 0%, rgba(3, 8, 20, 0.75) 55%, rgba(3, 8, 20, 0.25) 100%);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .header-logo-img {
    height: 36px;
  }

  .btn-header-login,
  .btn-header-signup {
    min-width: auto;
    padding: 9px 14px;
    font-size: 13px;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .page-content-list {
    columns: 1;
  }

  .hero-banner-content {
    max-width: 100%;
  }

  .hero-banner-btn {
    margin-top: 16px;
    padding: 11px 30px;
    font-size: 15px;
  }

  .hero-cta-subtext {
    display: none;
  }

  .slot-hover-overlay {
    opacity: 1;
    background: transparent;
  }

  .slot-play-btn {
    transform: translateY(0) scale(1);
    padding: 9px 24px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
}
