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

body {
    font-family: "Times New Roman", Times, serif;
    background-color: #000033;
    color: #000;
    line-height: 1.6;
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 10px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: normal;
    letter-spacing: 2px;
}

header .subtitle {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.member {
    padding: 20px;
    border: 2px solid #000;
    background: #f0f0f0;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 70px;
    height: 70px;
    border: 2px solid #000;
    object-fit: cover;
}

.member-header h2 {
    font-size: 1.6em;
    font-weight: normal;
}

.bio {
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border: 1px dashed #999;
    font-size: 0.95em;
}

.sites {
    padding: 10px;
    background: #ffffcc;
    border-left: 3px solid #999;
}

.sites strong {
    text-decoration: underline;
}

.sites ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
}

.sites li {
    margin: 5px 0;
}

.sites a {
    color: #0000ff;
    text-decoration: none;
}

.sites a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    padding-top: 20px;
    border-top: 2px solid #000;
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2em;
    }
}