body {
    background-color: #151423;
    color: #a0a0a0;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

main {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    transform: translateX(-1rem);
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

.paragraph-title {
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.paragraph-title--center {
    text-align: center;
}

.paragraph-notice {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
}

a {
    color: #6b9bd1;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #8fb3e0;
    text-decoration: underline;
}

strong,
span[style*="font-weight: bold"] {
    color: #ffffff;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    overflow: hidden;
}

thead {
    background-color: rgba(255, 255, 255, 0.08);
}

thead th {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody th {
    color: #ffffff;
    font-weight: 600;
    padding: 1.25rem 1rem;
    text-align: left;
    vertical-align: top;
    width: 30%;
}

tbody td {
    padding: 0.75rem 1rem;
    color: #a0a0a0;
    vertical-align: top;
}

ul,
ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #a0a0a0;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

li::marker {
    color: #ffffff;
}

code,
pre {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
}

pre {
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    main {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    table {
        font-size: 0.9rem;
    }

    thead th,
    tbody th,
    tbody td {
        padding: 0.75rem;
    }

    tbody th {
        width: 35%;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .paragraph-title {
        font-size: 1rem;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tbody th {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.08);
        margin-top: 1rem;
        border-radius: 0.25rem 0.25rem 0 0;
    }

    tbody td {
        border: none;
        border-radius: 0 0 0.25rem 0.25rem;
        margin-bottom: 1rem;
    }

    tbody tr {
        border: none;
        margin-bottom: 1rem;
    }
}