/* --- Base Styles & Variables --- */
:root {
    --primary-font: 'Roboto Condensed', sans-serif;
    --heading-font: 'Orbitron', sans-serif;
    --text-color: #e0e0e0;
    --background-color: #121212;
    --primary-accent-color: #00ff9d;
    --secondary-accent-color: #ff4d4d;
    --container-bg-color: #1e1e1e;
    --border-color: #333;
}

body {
    font-family: var(--primary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 18px;
}

h1, h2 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary-accent-color), 0 0 20px var(--primary-accent-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-accent-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-top: 40px;
}

p, li {
    text-align: justify;
}

strong {
    color: var(--primary-accent-color);
    font-weight: bold;
}

/* --- Layout & Sections --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)), url('https://images.pexels.com/photos/7915228/pexels-photo-7915228.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px;
}

.hero-text .subtitle {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -10px;
    text-shadow: 0 0 5px #000;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--container-bg-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.content-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

ul, ol {
    padding-left: 25px;
}

li {
    margin-bottom: 15px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background-color: #0a0a0a;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #888;
}

footer p {
    margin: 5px 0;
    text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section {
        min-height: 60vh;
    }
    main {
        margin: 20px 10px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
} 