body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    background-size: cover;
    background-image: url('https://10iya777.com/custom/img/header/bod.jpg');
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-align: center;

}


.container {
    width: 90%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(to right, #b78a2c 0%, #c5b87c);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.auth-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-buttons a {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.auth-buttons a:hover {
    background-color: #f57c00;
}

.info-header {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.info-header p {
    margin: 5px 0;
    font-size: 0.9em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}

.top-winners {
    text-align: center;
}

.title img {
    width: 50px;
    margin-bottom: 10px;
}

.title h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
}

.winner-list {
    margin-top: 20px;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.winner-item:last-child {
    border-bottom: none;
}

.rank {
    width: 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.name {
    flex-grow: 1;
    text-align: left;
    margin-left: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.amount {
    width: 80px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Responsif */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .title h2 {
        font-size: 1.2em;
    }

    .winner-item {
        padding: 8px;
    }

    .name, .amount {
        font-size: 0.9em;
    }
}f