body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #1a1a1a;
    color: #fafafa;
}

header {
    background: #2d2243;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #f5b042;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: #fafafa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: #f5b042;
}

main {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

.about, .games, .contact, .team {
    background: #241a36;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.games .game {
    margin-bottom: 20px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.social-links li a {
    color: #f5b042;
    text-decoration: none;
    font-size: 1.1em;
    border-bottom: 1px dashed #f5b042;
    transition: color 0.2s, border-bottom 0.2s;
}

.social-links li a:hover {
    color: #fafafa;
    border-bottom: 1px solid #fafafa;
}

footer {
    background: #2d2243;
    color: #fafafa;
    text-align: center;
    padding: 15px 5;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}


.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}
        
.team-member {
    text-align: center;
    max-width: 300px;
}
        
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}
        
.profile-pic:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
        
.member-name {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fafafa;
}
        
.member-desc {
    margin-bottom: 20px;
    color: #666;
}
        
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}
        
.social-links a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s ease;
}
        
.social-links a:hover {
    color: #e74c3c;
}