/* Global reset-ish */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

/* Full-screen retro background */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fff;
    background: url('/images/background.png') center center no-repeat fixed;
    background-size: cover;
}

/* Content area to the right of the sidebar */
.page-wrap {
    margin-left: 260px; /* matches expanded sidebar width */
    padding: 40px 40px 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

/* Main content panel */
.page-panel {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 18px;
    padding: 30px 35px;
    box-shadow:
        0 0 25px rgba(0,0,0,0.8),
        0 0 40px rgba(0,0,0,0.9);
    max-width: 1100px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Page title */
.page-panel h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Page subtitle / intro */
.page-panel .intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f5f5f5;
}

/* Generic text */
.page-panel p {
    line-height: 1.6;
    margin-bottom: 12px;
}

/* For future: section headings */
.page-panel h2 {
    font-size: 1.6rem;
    margin: 25px 0 10px;
}

/* Adjust for smaller screens */
@media (max-width: 900px) {
    .page-wrap {
        margin-left: 0;
        padding: 90px 15px 20px;
    }

    .page-panel {
        padding: 20px;
    }
}
