/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Silkscreen';
    src: url('../fonts/silkscreen.ttf') format('truetype');
}

body {
    background-color: #000000;
    color: aliceblue;
    font-family: 'Silkscreen', cursive;
    font-size: 12px;
    line-height: 1.7;
    min-height: 100vh;
}


/* ===== Page Container ===== */
.page-container {
    width: 60%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ===== Heading ===== */
.heading {
    font-size: 2rem;
    color: aliceblue;
    text-align: center;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 1rem;
    color: rgba(240, 248, 255, 0.5);
    text-align: center;
    margin-bottom: 32px;
}


/* ===== Content ===== */
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
}


/* ===== Sections ===== */
.section {
    width: 100%;
}

.section h2 {
    font-size: 1.25rem;
    color: aliceblue;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(240, 248, 255, 0.3);
}

.section .intro {
    font-size: 1.083rem;
    color: rgba(240, 248, 255, 0.7);
    line-height: 1.8;
}

.section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section ul li {
    font-size: 1.083rem;
    color: rgba(240, 248, 255, 0.8);
    padding-left: 16px;
    position: relative;
    line-height: 1.7;
}

.section ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgba(240, 248, 255, 0.4);
}

.section ul li strong {
    color: aliceblue;
}


/* ===== Links ===== */
a {
    color: #70c5ff;
    text-decoration: none;
}

a:hover {
    color: aliceblue;
    text-decoration: underline;
}

code {
    background-color: rgba(240, 248, 255, 0.08);
    padding: 1px 5px;
    border-radius: 3px;
    font-family: 'Silkscreen', cursive;
    font-size: 0.95em;
    color: rgba(240, 248, 255, 0.6);
}


/* ===== Footer ===== */
.footer-note {
    margin-top: 48px;
    font-size: 0.917rem;
    text-align: center;
    color: rgba(240, 248, 255, 0.35);
    line-height: 1.7;
    max-width: 800px;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-container {
        width: 90%;
        padding: 24px 12px 40px 12px;
    }

    .heading {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.083rem;
    }
}
