body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff4500; /* Athletic accent */
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 1.5rem;
}

.hero {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.btn {
    background-color: #ff4500;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.content {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    margin-top: 4rem;
}
