body {
    background-color: #121212;
    color: white;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.container {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 450px;
}
button {
    background-color: #1DB954;
    color: black;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 10px;
}
button:hover { background-color: #1ed760; }
button:disabled { background-color: #555; color: #888; cursor: not-allowed; }

.game-card { background: #2a2a2a; color: white; padding: 20px; margin-bottom: 15px; text-align: left; display: block; }
.game-card h3 { margin: 0 0 5px 0; color: #1DB954; }
.game-card p { margin: 0; font-size: 13px; color: #bbb; font-weight: normal; }
.game-card:hover { transform: translateY(-3px); background: #333; }

.back-btn { background: transparent; color: #888; text-align: left; padding: 0; margin-bottom: 10px; font-size: 14px; width: auto; }
.back-btn:hover { background: transparent; color: white; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.game-img { width: 250px; height: 250px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); object-fit: cover; }

.blurred-img { filter: blur(25px); transition: filter 1s ease; }
.clear-img { filter: blur(0px); }

/* --- STYLE RANKINGU --- */
input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    background: #333;
    color: white;
    font-size: 16px;
}
.small-btn { padding: 10px; width: auto; font-size: 14px; }
.table-container {
    max-height: 400px;
    overflow-y: auto;
    background: #2a2a2a;
    border-radius: 10px;
    margin-top: 20px;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid #444; text-align: center; font-size: 15px; }
th { background: #1DB954; color: black; position: sticky; top: 0; }