/* Inherit variables from main style, but override for this page's specific look */
:root {
    --page-bg: #0d1117;
    --text-primary: #ffffff;
}

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #050810, #131a29);
    padding: 80px 20px 40px;
    text-align: center;
    border-bottom: 2px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    flex: 1;
    /* Center content vertically if it's just the hero */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
}