body {
    font-family: 'Poppins', sans-serif;
    background-color: #ff93db;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    background: rgba(71, 2, 40, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(71, 2, 40, 0.3);
    padding: 20px;
    text-align: center;
    width: 80%;
    max-width: 800px;
}

h1 {
    font-family: 'Luckiest Guy', cursive;
    color: #000000;
    font-size: 3rem;
    margin-bottom: 20px;
}

.players {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(71, 2, 40, 0.3);
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.player h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #000000;
    font-size: 2rem;
}

.card-display {
    font-size: 24px;
    margin: 10px 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(71, 2, 40, 0.08);
}

@media (max-width: 600px) {
    .card-display {
        font-size: 16px;
    }
    .players {
        flex-direction: column;
        gap: 20px;
    }
}

.score {
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
}

.game-log {
    background-color: #ff71ff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(71, 2, 40, 0.3);
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: left;
    max-height: 150px;
    overflow-y: auto;
}

.log-content {
    font-size: 14px;
    color: #000000;
}

#draw-button, #replay-button, #return-home {
    background-color: #000000;
    color: rgb(245, 245, 245);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(71, 2, 40, 0.08);
}

#draw-button:disabled, #replay-button:disabled {
    background-color: #383838;
    cursor: not-allowed;
    color: #bdbdbd;
}

#draw-button:hover:not(:disabled), #replay-button:hover:not(:disabled), #return-home:hover {
    background-color: #ff71ff;
    color: #000;
}

#return-home a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

#return-home:hover a {
    color: #000;
}

a {
    color: #fff;
    text-decoration: none;
}

.turn-glow {
    box-shadow: 0 0 24px 6px #ff71ff, 0 0 8px 2px #fff;
    transition: box-shadow 0.3s;
    z-index: 1;
}