    :root {
      --tos-gold: #D4AF37;
      --tos-silver: #C0C0C0;
      --tos-text: #FBFBF6;
      --tos-muted: #9fb0cc;
      --tos-panel: rgba(2, 8, 20, 0.85);
      --tos-border: rgba(159, 176, 204, 0.25);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle, rgba(23, 52, 86, 0.9) 10%, #001326 50%);
      color: var(--tos-text);
      margin: 0;
      padding: 20px 12px;
    }

    .tos-logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      background: radial-gradient(circle at 30% 30%, #f9e7a3, #D4AF37 45%, #020814 100%);
    }

    .tos-title {
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .tos-subtitle {
      font-size: 14px;
      color: var(--tos-muted);
    }

    .tos-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(2, 8, 20, 0.95), rgba(9, 30, 61, 0.9));
      border-radius: 24px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 20px 18px 28px;
      box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
    }

    @media (min-width: 992px) {
      .tos-wrapper {
        padding: 28px 30px 32px;
      }
    }

    .tos-btn-gold {
      background: radial-gradient(circle at 20% 0, #fef7cf, #D4AF37 55%, #b99328);
      border-radius: 999px;
      border: none;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 500;
      color: #020814;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.7);
      white-space: nowrap;
    }

    .tos-btn-gold:hover {
      text-decoration: none;
      color: #020814;
      filter: brightness(1.05);
    }

    .tos-pill {
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 999px;
      border: 1px solid rgba(159, 176, 204, 0.4);
      color: var(--tos-muted);
      background: rgba(2, 8, 20, 0.7);
      display: inline-flex;
      gap: 6px;
      align-items: center;
    }

    .tos-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--tos-gold);
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
    }

    .tos-search-input {
      background: rgba(2,8,20,0.9);
      border-radius: 999px;
      border: 1px solid var(--tos-border);
      color: var(--tos-text);
      font-size: 14px;
      padding: 10px 40px 10px 35px;
    }

    .tos-search-input::placeholder {
      color: #9fb0cc;
    }

    .tos-search-input:focus {
      border-color: var(--tos-gold);
      box-shadow: 0 0 0 .15rem rgba(212, 175, 55, 0.35);
      outline: none;
    }

    .tos-search-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--tos-muted);
    }

    .tos-clear-search {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: var(--tos-muted);
      background: none;
      border: none;
      cursor: pointer;
      display: none;
    }

    .tos-toc-card {
      background: var(--tos-panel);
      border-radius: 18px;
      border: 1px solid var(--tos-border);
      padding: 14px;
    }

    .tos-toc-title {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--tos-muted);
      margin-bottom: 8px;
    }

    .tos-toc-link {
      border: none;
      background: transparent;
      color: var(--tos-muted);
      font-size: 13px;
      text-align: left;
      padding: 6px 4px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      transition: 0.18s;
      cursor: pointer;
    }

    .tos-toc-link-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(159, 176, 204, 0.8);
    }

    .tos-toc-link.active,
    .tos-toc-link:hover {
      color: var(--tos-gold);
      background: rgba(9,30,61,0.8);
    }

    .tos-toc-link.active .tos-toc-link-dot {
      background: var(--tos-gold);
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
    }

    .tos-section-card {
      border-radius: 18px;
      border: 1px solid var(--tos-border);
      margin-bottom: 10px;
      overflow: hidden;
    }

    .tos-section-header {
      border: none;
      background: transparent;
      width: 100%;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      color: var(--tos-text);
    }

    .tos-section-title {
      font-size: 14px;
      font-weight: 500;
    }

    .tos-section-meta {
      font-size: 12px;
      color: var(--tos-muted);
    }

    .tos-section-chevron {
      font-size: 16px;
      color: var(--tos-muted);
      transition: transform 0.18s, color 0.18s;
    }

    .tos-section-card.open .tos-section-chevron {
      transform: rotate(180deg);
      color: var(--tos-gold);
    }

    .tos-section-body {
      max-height: 0;
      overflow: hidden;
      border-top: none !important;
      padding: 0 14px;
      transition: max-height 0.22s ease;
    }

    .tos-section-inner {
      padding: 10px 0 14px;
      font-size: 14px;
    }

    .tos-section-inner p {
      margin-bottom: 6px;
    }

    .tos-section-inner ul {
      padding-left: 1.25rem;
      margin-bottom: 6px;
    }

    .tos-muted {
      color: var(--tos-muted);
      font-size: 13px;
    }

    .tos-footer-note {
      font-size: 12px;
      color: var(--tos-muted);
      margin-top: 12px;
    }

    .tos-footer-note a {
      color: var(--tos-silver);
      text-decoration: none;
      border-bottom: 1px dotted rgba(192,192,192,0.7);
    }

    .tos-footer-note a:hover {
      color: var(--tos-gold);
      border-bottom-style: solid;
    }

    .tos-toc-sticky {
      position: sticky;
      top: 10px;
    }

    @media (max-width: 991.98px) {
      .tos-toc-sticky {
        position: static;
      }
    }

    .tos-back-top {
      position: fixed;
      right: 16px;
      bottom: 16px;
      background: radial-gradient(circle at 20% 0, #f7e7a3, #D4AF37);
      color: #020814;
      border-radius: 999px;
      border: none;
      padding: 7px 12px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 4px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.7);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: 0.2s;
      z-index: 50;
    }

    .tos-back-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    /* ======================================== */
/*       ALIGN ALL TERMS OF SERVICE SECTIONS */
/* ======================================== */

/* Force left alignment for section titles, subtitles, and content */
.tos-section-title,
.tos-section-meta,
.tos-section-inner p,
.tos-section-inner ul,
.tos-section-inner li {
    text-align: left !important;
}

/* Align the title/meta container inside the header */
.tos-section-header > div {
    text-align: left !important;
}

/* Ensure section card does not indent unevenly */
.tos-section-card {
    border: none !important;
    box-shadow: none !important;
}

/* ======================================== */
/*      EXPAND TOS CONTENT TO THE EDGES     */
/* ======================================== */

/* Expand inside wrapper for true full-width feel */
.tos-wrapper {
    padding-left: 22px !important;
    padding-right: 22px !important;
    border-radius: 28px !important;
}

/* Make row breathe horizontally */
.row.g-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* TOC column – give more width and reduce inner padding */
.tos-toc-card {
    padding: 18px 16px !important;
    border-radius: 20px !important;
}

/* CONTENT column – allow full stretch */
.col-12.col-lg-8 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Each accordion card fills full width cleanly */
.tos-section-card {
    width: 100% !important;
    border-radius: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Increase card body padding for open-space feel */
.tos-section-body {
    padding-left: 18px !important;
    padding-right: 18px !important;
}

/* Section inner spacing */
.tos-section-inner {
    padding: 20px 0 24px !important;
}

/* Make the WHOLE page look less boxed */
body {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Make wrapper closer to full-screen width without breaking mobile */
@media (min-width: 1200px) {
    .tos-wrapper {
        max-width: 1350px !important; /* Wider, cleaner, modern feel */
    }
}
/* ======================================== */
/* REMOVE CHEVRON + KEEP ALL SECTIONS OPEN  */
/* ======================================== */

/* Remove the chevron icon completely */
.tos-section-chevron {
    display: none !important;
}

/* Make all sections permanently expanded */
.tos-section-card {
    overflow: visible !important;
}

/* Force body to stay fully open */
.tos-section-body {
    max-height: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Disable pointer cursor */
.tos-section-header {
    cursor: default !important;
}

/* Prevent the header from collapsing behavior visually */
.tos-section-card .tos-section-header {
    pointer-events: none !important;
}
.tos-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background: linear-gradient(90deg, #f5D97a, #D4AF37, #FFD700);
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s;
}

.tos-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,175,55,0.4);
}

@media (max-width: 768px) {
    .tos-back-btn {
        top: 12px;
        left: 12px;
        padding: 6px 10px;
        font-size: 12px;
    }
}
.tos-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background: linear-gradient(90deg, #f5D97a, #D4AF37, #FFD700);
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s;
}

.tos-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,175,55,0.4);
}

@media (max-width: 768px) {
    .tos-back-btn {
        top: 12px;
        left: 12px;
        padding: 6px 10px;
        font-size: 12px;
    }
}