/* =====================
   RESET / BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at top, #4b247a 0%, #1a082f 60%, #12061f 100%);
  color: #f2eef8;
  line-height: 1.6;
}

/* УБИРАЕМ ТОЧКИ ВЕЗДЕ */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* УБИРАЕМ СИНИЕ ССЫЛКИ */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================
   HEADER
===================== */
.site-header {
  background: linear-gradient(180deg, #4b247a 0%, #3a1b63 100%);
  padding: 14px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
}

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

.btn-outline {
  padding: 8px 18px;
  border: 1px solid #d9cfff;
  border-radius: 999px;
  font-size: 14px;
}

.btn-primary {
  padding: 8px 20px;
  background: #ffd84d;
  color: #1a082f;
  border-radius: 999px;
  font-weight: 600;
}

/* =====================
   HERO
===================== */
.hero {
  text-align: center;
  padding: 48px 20px 32px; /* МЕНЬШЕ ОТСТУП ОТ ХЕДЕРА */
}

.hero h1 {
  margin: 0 0 20px;
  font-size: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffd84d;
  color: #1a082f;
  border-radius: 999px;
  font-weight: 700;
}

/* =====================
   SLOTS
===================== */
.slots {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

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

.slot-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.slot-card img {
  width: 100%;
  height: auto; /* КЛЮЧЕВО — НЕ ОБРЕЗАЕТ */
  border-radius: 12px;
}

.slot-card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

/* =====================
   SLOTS TEXT
===================== */
.slots-text {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  opacity: 0.9;
}

/* =====================
   TABLE OF CONTENTS
===================== */
.toc {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
}

.toc details {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px 20px;
}

.toc summary {
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

.toc-nav ul {
  display: grid;
  gap: 8px;
  text-align: center;
}

.toc-nav a {
  opacity: 0.9;
}

/* =====================
   CONTENT
===================== */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.content section {
  margin-bottom: 48px;
}

.content h2 {
  margin-bottom: 16px;
}

/* =====================
   FAQ
===================== */
.faq-section details {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-section p {
  margin-top: 10px;
  font-size: 14px;
}

/* =====================
   FOOTER
===================== */
.site-footer-minimal {
  background: linear-gradient(180deg, #1a082f 0%, #12061f 100%);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-start;
}

.footer-nav strong {
  display: block;
  margin-bottom: 12px;
}

.footer-nav ul {
  display: grid;
  gap: 8px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-trust img {
  width: 140px; /* КАРТИНКИ БОЛЬШЕ */
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  opacity: 0.6;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-trust {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}
/* =====================
   REMOVE SUMMARY TRIANGLES
===================== */

/* Chrome / Edge / Safari */
summary::-webkit-details-marker {
    display: none;
  }
  
  /* Firefox */
  summary {
    list-style: none;
  }
  
  /* На всякий случай */
  details > summary {
    list-style: none;
  }
  /* =========================
   TABLES (GLOBAL STYLE)
========================= */

.table-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .table-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
  }
  
  /* wrapper for mobile scroll */
  .table-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow-x: auto;
  }
  
  /* table base */
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    color: #f1f1f1;
    font-size: 15px;
  }
  
  /* rows */
  .styled-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .styled-table tr:last-child {
    border-bottom: none;
  }
  
  /* header cells */
  .styled-table th {
    text-align: left;
    font-weight: 600;
    padding: 16px 18px;
    width: 35%;
    color: #e6dbff;
    background: rgba(255, 255, 255, 0.03);
  }
  
  /* data cells */
  .styled-table td {
    padding: 16px 18px;
    line-height: 1.5;
    color: #ffffff;
  }
  
  /* hover effect */
  .styled-table tr:hover {
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease;
  }
  
  /* links inside table */
  .styled-table a {
    color: #ffd54f;
    text-decoration: none;
    font-weight: 500;
  }
  
  .styled-table a:hover {
    text-decoration: underline;
  }
  
  /* =========================
     MOBILE
  ========================= */
  
  @media (max-width: 768px) {
    .table-section {
      margin: 60px auto;
    }
  
    .table-section h2 {
      font-size: 22px;
    }
  
    .styled-table {
      font-size: 14px;
    }
  
    .styled-table th,
    .styled-table td {
      padding: 14px 14px;
    }
  }
  /* =========================
   TABLE → MOBILE CARDS
========================= */

@media (max-width: 768px) {

    .table-wrap {
      padding: 0;
      background: transparent;
      box-shadow: none;
    }
  
    .styled-table {
      min-width: 100%;
      border-collapse: separate;
      border-spacing: 0 12px;
    }
  
    .styled-table tr {
      display: block;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 14px 16px;
    }
  
    .styled-table th,
    .styled-table td {
      display: block;
      width: 100%;
      padding: 0;
      border: none;
      background: none;
    }
  
    /* label (left column) */
    .styled-table th {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 6px;
    }
  
    /* value (right column) */
    .styled-table td {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.4;
    }
  
    .styled-table tr:hover {
      background: rgba(255, 255, 255, 0.08);
    }
  }
  /* =====================
   REVIEWS (STARS)
===================== */

.reviews-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
  }
  
  .reviews-section h2 {
    text-align: center;
    margin-bottom: 36px;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  
  .review-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  
  .review-stars {
    color: #f5c451; /* мягкое золото */
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
  }
  
  .review-author {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .reviews-section {
      margin: 56px auto;
    }
  
    .review-card {
      padding: 20px;
    }
  }
  /* =====================
   BREADCRUMBS
===================== */

.breadcrumbs {
    max-width: 1200px;
    margin: 12px auto 0;
    padding: 0 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }
  
  .breadcrumbs a {
    color: inherit;
    text-decoration: none;
  }
  
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs span {
    margin: 0 6px;
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .breadcrumbs {
      font-size: 12px;
      margin-top: 10px;
    }
  }
  