/* General Body Styles */
body {
    background-color: #121212; /* Very dark background */
    color: #E0E0E0; /* Light grey text for contrast */
    font-family: 'Inter', sans-serif; /* Modern font */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Override Spectre.css elements for dark theme */
.navbar {
    background-color: #1F2833; /* Darker blue-grey for navbar */
    color: #E0E0E0;
    border-bottom: 1px solid #0B0C10; /* Very dark border */
}

.navbar a {
    color: #E0E0E0;
}

.navbar a:hover {
    color: #66FCF1; /* Bright cyan/aqua accent on hover */
}

.hero {
    background-color: #0B0C10; /* Deep dark blue for hero */
    color: #E0E0E0;
    padding: 4rem 0;
    text-align: center;
}

.hero.hero-lg .hero-body {
    max-width: 960px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    justify-content: center;
    width: 40rem;
    margin-bottom: 4em;
}

.btn.btn-primary {
    background-color: #45A29E; /* Muted teal/blue for primary buttons - good for color vision */
    border-color: #45A29E;
    color: #121212; /* Dark text on button */
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #66FCF1; /* Brighter accent on hover for primary buttons */
    border-color: #66FCF1;
}

.container {
    padding: 2rem 1rem;
}

.card {
    background-color: #1F2833; /* Darker blue-grey for card background */
    color: #E0E0E0;
    border: 1px solid #0B0C10;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-bottom: 1px solid #0B0C10;
}

.card-title {
    color: #66FCF1; /* Bright cyan/aqua for card titles */
}

.footer {
    background-color: #1F2833;
    color: #B0B0B0;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #0B0C10;
}

.modal-container {
    background-color: #1F2833;
    color: #E0E0E0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        padding: 3rem 1rem;
    }
}