.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background: #181a1b;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    color: #f3f3f3;
}

#developerName {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #ffb347;
}

#developerInfo {
    margin-bottom: 2em;
    font-size: 1.1em;
}

.developer-logo {
    max-width: 180px;
    max-height: 120px;
    display: block;
    margin-bottom: 1em;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
}

#developerGames h2 {
    margin-bottom: 0.5em;
    color: #ffd700;
}

#gamesList {
    list-style: none;
    padding: 0;
}

#gamesList li {
    margin-bottom: 0.7em;
    display: flex;
    align-items: center;
}

#gamesList a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#gamesList a:hover {
    text-decoration: underline;
}

.game-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    background: #222;
    border: 1px solid #333;
}

button {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1em;
}

button:hover {
    background: #444;
}
