/* Inherit variables from main style, but override for this page's specific look */
:root {
    --page-bg: #0d1117;
    /* Very dark blue/black background */
    --card-surface: #1e2530;
    /* Dark blue/grey card */
    --text-primary: #ffffff;
    --text-blue: #3b82f6;
    --border-color: #30363d;
}

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.career-hero {
    background: linear-gradient(to bottom, #050810, #131a29);
    padding: 80px 20px 40px;
    /* Top padding to account for headerless, bottom for spacing */
    text-align: center;
    border-bottom: 2px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* Main Content Area */
.career-container {
    flex: 1;
    /* Pushes footer down */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #0f141e, #131822);
}

/* Message Card */
.message-card {
    background-color: #112240;
    /* Dark blue from screenshot */
    border-radius: 8px;
    padding: 40px 60px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.message-card p {
    margin: 5px 0;
    line-height: 1.6;
}

.message-primary {
    color: #64b5f6;
    /* Lighter blue for main text */
    font-size: 1.1rem;
    font-weight: 500;
}

.message-secondary {
    color: #8b949e;
    font-size: 0.8rem;
    margin-top: 10px;
}

.message-secondary a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.message-secondary a:hover {
    text-decoration: underline;
}

/* Footer (Simplified to stick to bottom) */
.footer {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.5rem;
    }

    .message-card {
        padding: 30px 20px;
    }

    .message-primary {
        font-size: 1rem;
    }
}