/* Simple Dark Theme for ProjectE */

:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --text-muted: #909090;
    --primary-color: #258cfb;
    --border-color: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.simple-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.simple-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.simple-container .subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.simple-section {
    margin-bottom: 3rem;
}

.simple-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.simple-section p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-container {
        padding: 1.5rem;
    }
    
    .simple-container h1 {
        font-size: 2rem;
    }
    
    .simple-section h2 {
        font-size: 1.5rem;
    }
}
