/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #0b0b0f;
    color: #e6e6eb;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Main Title (Nocturne) */
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Section Titles */
.title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #e1e1e1; /* soft purple accent */
}

.bold {
    font-weight: 700;
}

/* Subtitle */
.subtitle {
    text-align: center;
    color: #a1a1aa;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Paragraphs */
p {
    margin-bottom: 12px;
    color: #cfcfd6;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    color: #d6d6dd;
}

/* Card-style sections (optional wrapper) */
.section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    backdrop-filter: blur(6px);
}

/* Links */
a {
    color: #9f7aea;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Subtle divider */
hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .title {
        font-size: 1.3rem;
    }
}