body {
    margin: 0;
    padding: 0;
    background: url("../assets/background.png") no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.steam-icon {
    max-width: 50px;
    display: inline-block;
    padding: 10px 0px;
}
.logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 20px;
}

.description {
    max-width: 700px;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.buttons .wishlist-button {
    background-color: #2681da;
    color: white;
    padding: 12px 24px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.buttons .wishlist-button:hover {
    background-color: #0c549b;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.email-form input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border-radius: 6px;
    border: none;
}

.email-form button {
    padding: 10px;
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
}

.email-form button:hover {
    background-color: #218838;
}

.notice {
    font-size: 0.9em;
    margin-top: 10px;
    color: #ccc;
}
