/* Base styles */
body {
    background-color: #141414;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

header {
    background-color: #e50914;
    padding: 1rem 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.content {
    max-width: 960px;
    width: 100%;
    padding: 0 1rem;
}

section {
    margin-bottom: 2rem;
    width: 100%;
}

h2 {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

ul {
    padding-left: 1.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    background-color: #000;
    color: #888;
    font-weight: 300;
}

a {
    color: #e50914;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Responsive layout */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    ul {
        padding-left: 1rem;
    }
}

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

    header h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    footer {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
}
