/* --------------------------------------------------------
   RESET & BASE
-------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    background-color: #000;
    color: var(--alto, #dcdcdc);
    line-height: 1.6;
    font-size: var(--font-size-m, 1rem);
    font-style: normal;
    font-weight: 400;
}

/* --------------------------------------------------------
     CONTAINER
  -------------------------------------------------------- */
.policy-container {
    max-width: 900px;
    margin: 8rem auto 2rem auto;
    padding: 1rem;
    display: block;
}

/* --------------------------------------------------------
     TYPOGRAPHY
  -------------------------------------------------------- */

/* Page Title */
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    font-family: "Work Sans", sans-serif;
}

.policy-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.policy-header h1,
.policy-header .last-updated {
    margin: 0;
}

/* Section Headings */
h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* Sub-section Headings */
h3 {
color: var(--white, #ffffff);
    font-family: var(--font-family-work_sans);
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    margin: 0.5rem 0 0rem;
}


/* Paragraphs */
p {
    font-family: var(--font-family-work_sans);
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    font-size: 14px;
    color: #CACED7;
}

/* Emphasized/important body copy */
p.important {
    color: var(--white, #ffffff);
}

strong {
    color: var(--white, #ffffff);
}

.legal-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.legal-list li {
    margin-bottom: 0.6rem;
    font-size: var(--font-size-m, 1rem);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    color: var(--alto, #dcdcdc);
    line-height: 1.6;
}


.definition-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.definition-list li {
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    font-family: "Work Sans", sans-serif;
    margin: 0;
}

.definition-list li strong {
    color: var(--white, #ffffff);
    font-weight: 600;
}


strong.important {
    color: var(--white, #ffffff);
}





/* --------------------------------------------------------
     LINKS
  -------------------------------------------------------- */
a {
    color: #3CB4CC;
    text-decoration: none;
    font-weight: 500;
}

/*
a:hover {
    text-decoration: underline;
}*/

/* --------------------------------------------------------
     SECTIONS
  -------------------------------------------------------- */
section {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 16px
}

main.policy-container section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 2.5rem;
}

/* --------------------------------------------------------
     TABS
  -------------------------------------------------------- */
.policy-tabs {
    display: flex;
    justify-content: left;
    gap: 1rem;
    position: relative;
    top: 100px;
    max-width: 900px;
    margin: 0rem auto 2rem auto;
    padding: 1rem;
    flex-wrap: wrap;
}

.policy-tabs .tab {
    align-items: flex-start;
    background-color: var(--charade);
    border-radius: 18px;
    display: flex;
    height: 32px;
    justify-content: flex-end;
    min-width: 126px;
    padding: 5.5px 14px;
    color: var(--bombay);
    border: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.policy-tabs .tab:hover {
    background-color: #303238;
}

.policy-tabs .tab.active {
    border: 1px solid var(--white);
    border-radius: 18px;
    display: flex;
    height: 32px;
    justify-content: flex-end;
    min-width: 126px;
    padding: 4.5px 16px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
}


/* --------------------------------------------------------
     FOOTER
-------------------------------------------------------- */

.policy-wrapper {
    background-color: #1c1c24;
}

.platforms-page {
    min-height: 100vh;
    /* padding-top: 8rem; */
    background-color: #1c1c24;
}

.platforms-page .policy-container {
    margin-top: 0;
}

.platforms-panel {
    background-color: #1c1c24;
    padding-top: 6rem;
}

.platforms-page #footer-container {
    margin-top: 0;
    border-top: 16px solid #000;
}

.platform-entry-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.platform-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 10px;
    color: #cacdd7;
    font-size: 14px;
    line-height: 1.5;
}

.platform-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.platform-status-live {
    background: rgba(68, 181, 114, 0.16);
    color: #6ce39b;
    border: 1px solid rgba(108, 227, 155, 0.28);
}

.platform-status-dev {
    background: rgba(255, 179, 71, 0.14);
    color: #ffca73;
    border: 1px solid rgba(255, 202, 115, 0.28);
}

.platform-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(11, 12, 17, 0.45);
}

.platform-data-table {
    width: 100%;
    border-collapse: collapse;
}

.platform-data-table thead {
    background: rgba(255, 255, 255, 0.04);
}

.platform-data-table th,
.platform-data-table td {
    text-align: left;
    padding: 14px 18px;
    vertical-align: top;
}

.platform-data-table th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.platform-data-table td {
    color: #cacdd7;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-data-table tbody tr:first-child td {
    border-top: 0;
}

.platform-steps {
    padding-left: 1.25rem;
}

#footer-container {
    margin-top: 16px;
}

.footer-wrapper {
    padding: 0px 10px 40px 10px;
    background-color: transparent;
}

.footer-contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    text-align: left;
}

.footer-contact-group {
    margin-top: 24px;
}

.footer-contact h3 {
    color: var(--white, #ffffff);
    font-size: var(--font-size-xl, 1.875rem);
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--alto, #dcdcdc);
    font-size: var(--font-size-m, 1rem);
    font-weight: 400;
    font-style: normal;
    margin: 0 0 0.1rem;
}

.footer-contact a {
    color: #3CB4CC;
    text-decoration: none;
    font-weight: 400;
}

.footer-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .platform-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .platform-data-table th,
    .platform-data-table td {
        min-width: 240px;
    }
}
