.steam-calculator {
    max-width: 600px;
    background: #fefefe;
    padding: 20px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 0 10px #ccc;
    font-family: Arial, sans-serif;
}
.steam-calculator h3 {
    text-align: center;
    margin-bottom: 20px;
}
.steam-calculator label {
    display: block;
    margin-bottom: 12px;
}
.steam-calculator input, .steam-calculator select {
    width: 100%;
    padding: 6px;
    margin-top: 5px;
}
.steam-calculator button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}
.steam-calculator button:hover {
    background: #005f8a;
}
#steam-result {
    margin-top: 15px;
    padding: 10px;
    background: #eef;
    border-radius: 6px;
}
