:root {
    --bg: #121212;
    --surface: #292d39;
    --primary: #1e1e1e;
    --accent: #74b9ff;
    --accent-hover: #0984e3;
    --text: #dfe6e9;
    --text-muted: #b2bec3;
    --code-bg: #000000;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('./Aptos-Display.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('./Aptos-Display-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Aptos Display', 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    zoom: 1.1
}

header {
    background: none;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 30%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.banner-link:hover .banner-img {
    filter: brightness(1);
}

header h1 {
    margin: 0;
    font-size: 3rem;
    color: var(--accent);
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

h2 {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

#features, #constraints {
    font-size: 0.95rem;
}

#features ul, #constraints ul {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

#features h3, #constraints h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.bios {
    display: flex;
    flex-direction: column; 
    gap: 2.5rem; 
    margin-top: 2rem;
}

.bio-card {
    background: var(--surface);
    padding: 1.5rem 2rem 1.5rem 1.5rem; 
    border-radius: 12px;
    display: flex;
    flex-direction: row;    
    align-items: center;    
    gap: 2rem; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.bio-sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.img-wrapper {
    width: 150px;           
    height: 210px;          
    border-radius: 8px;     
    overflow: hidden;       
    margin: 0;
    flex-shrink: 0;         
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    display: block;
}

.quinn-wrapper {
    width: 170px;           
    height: 210px;  
}

.colin-wrapper {
    width: 170px;           
    height: 230px;  
}

.max-wrapper {
    width: 180px;           
    height: 230px;  
}

.bio-content {
    flex: 1;                
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--accent);
    font-family: 'Aptos Hosted', sans-serif;
    font-size: 1.4rem;
}

.bio-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bio-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .bio-sidebar {
        align-items: center;
        width: 100%;
    }

    .bio-content h3 {
        font-size: 1.25rem; 
    }

    .bio-content p {
        font-size: 1rem;
    }
}

.btn {
    display: inline-block;
    font-family: 'Aptos Display', 'Inter', -apple-system, sans-serif;
    background: var(--accent-hover);
    font-size: 0.9rem;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    border: none;
    transition: background 0.2s ease, transform 0.1s;
}

.btn:hover {
    background: var(--accent);
    background: #0056b3;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    background: var(--surface);
    color: var(--text-muted);
    border-top: 1px solid #333;
}

.code-editor {
    width: 100%;
    min-height: 180px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    line-height: 1.5;
    padding: 15px;
    background-color: var(--code-bg);
    color: #c3e0f6;
    border: 1px solid #444;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.code-editor:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(116, 185, 255, 0.2);
}

.run-btn {
    margin-bottom: 15px;
    cursor: pointer;
}

.output {
    background-color: var(--surface);
    color: #dfe6e9;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #00b894;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    box-sizing: border-box;
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.hidden {
    display: none !important;
}