@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #1e1e1e;
    --card-bg: #2b2b2b;
    --text-main: #e0e0e0;
    --text-muted: #aaaaaa;
    --accent: #ff7e5b;
    --accent-hover: #ff5555;
    --nav-bg: #303030;
    --font-stack: 'Outfit', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; cursor: pointer; }
a:hover { color: var(--accent-hover); }

.navbar {
    background-color: var(--nav-bg);
    height: 64px;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-center {
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    flex: 1;
}

.nav-logo { height: 32px; width: auto; }

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-socials { 
    display: flex; 
    gap: 1rem; 
    align-items: center; 
    flex: 1;
    justify-content: center; /* CENTER THEM HOPEFULLY */
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
} /* OK THIS ACTUALLY DOES IT */
.social-icon { width: 24px; height: 24px; opacity: 0.8; }
.social-icon:hover { opacity: 1; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
    display: block; 
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.page-title { font-size: 2.5rem; color: white; margin-bottom: 0.5rem; }
.page-subtitle { color: var(--text-muted); font-size: 1.1rem; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img {
    width: 96px;
    height: 96px;
    margin-bottom: 1rem;
    object-fit: cover;
    background-color: #444;
    border-radius: 50%;
}

.profile-name { font-size: 1.25rem; font-weight: bold; color: white; margin-bottom: 0.25rem; }
.profile-role { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; font-style: italic; }
.profile-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 0;
}

.download-info h3 { color: white; margin-bottom: 0.25rem; }

.btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--accent);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 0;
}

.btn:hover { background-color: var(--accent-hover); color: white; }

.hero { text-align: center; padding: 2rem 1rem 4rem 1rem; }

@media (max-width: 768px) {
    .navbar { height: auto; }
    .nav-center { flex-direction: column; padding: 1rem; gap: 1rem; }
    .nav-brand { justify-content: center; }
    .nav-links { gap: 1rem; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }
    .nav-socials { justify-content: center; }
    .download-item { flex-direction: column; text-align: center; align-items: stretch; }
    .btn { text-align: center; }
}