/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5091f3;
    --primary-dark: #3a6cc4;
    --bg-dark: #0a0414;
    --bg-card: #1a0f2e;
    --text-light: #ffffff;
    --text-muted: #a0a0b8;
    --gradient-start: #2c09c7;
    --gradient-end: #12023f;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0a2e 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    padding: 2rem 1rem;
}

/* Headings */
h1,
h2,
h3 {
    text-align: center;
    margin: 2rem 0 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Paragraphs */
p,
ul,
li {
    max-width: 900px;
    margin: 0.5rem auto 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    text-align: justify;
    line-height: 1.8;
}

ul {
    list-style-type: disc;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Footer style if needed */
footer {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p,
    ul,
    li {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}