body {
    font-family: 'Orbitron', sans-serif;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

.panel {
    background: #222;
    border: 4px solid #ffcc00;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 15px #ffcc00;
}

.title img {
    width: 400px;
    margin: 20px 0;
}

.gd-btn {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #ffcc00;
    border: 4px solid #000;
    border-radius: 6px;
    padding: 12px 25px;
    margin: 10px;
    box-shadow: 0 0 15px #ffcc00, inset 0 0 5px #000;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gd-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ffcc00, inset 0 0 5px #000;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: 3px solid #ffcc00;
    background: #333;
    color: #fff;
    font-size: 1em;
}

.leaderboard-row {
    background: #222;
    border: 3px solid #ffcc00;
    border-radius: 10px;
    padding: 10px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    box-shadow: 0 0 10px #ffcc00;
}
.leaderboard-row:hover {
    box-shadow: 0 0 20px #ffcc00;
}

.leaderboard-icon {
    width: 40px;
    margin-right: 10px;
}

footer {
    margin-top: 40px;
}
.site-logo {
    width: 150px;
    opacity: 0.85;
    filter: drop-shadow(0 0 10px #ffcc00) drop-shadow(0 0 20px #ff6600);
    transition: transform 0.2s, opacity 0.2s;
}
.site-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}
