@import url('https://fonts.googleapis.com/css2?family=Impact&family=Arial:wght@700&display=swap');

body {
    background: #0a0a0a;
    color: #eee;
    font-family: Arial, sans-serif;
}

.text-poison {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255,69,0,0.6);
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
}

.btn-poison {
    background-color: #ff4500;
    border-color: #ff4500;
    font-weight: bold;
    transition: all .25s;
}

.btn-poison:hover {
    background-color: #ff7518;
    border-color: #ff7518;
    transform: scale(1.05);
}

.badge-votes {
    background-color: #ff4500;
    color: white;
    font-weight: bold;
    border-radius: 50px;
}

.card {
    background: #111;
    border: 1px solid #333;
    transition: all .3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255,69,0,0.25);
    border-color: #ff4500;
}

.card-img-top {
    height: 360px;
    object-fit: cover;
}

.leaderboard-title {
    color: #ff8c00;
    font-family: 'Impact', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255,140,0,0.5);
}

#dropdown .list-group-item {
    background: #1a1a1a;
    border-color: #333;
    color: #eee;
}

#dropdown .list-group-item:hover,
#dropdown .list-group-item:focus {
    background: #ff4500;
    color: white;
}

/* Vertical leaderboard - stack items one per row, smaller images */
.vertical-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 20px;               /* space between items */
    max-width: 500px;        /* keeps it centered/narrow */
    margin: 0 auto;          /* center on page */
}

.celeb-item {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s;
}

.celeb-item:hover {
    background: #1a1a1a;
    border-color: #ff4500;
}

.celeb-item img {
    width: 80px;             /* ~1/4 of original 300-360px height */
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 20px;
}

.celeb-item .info {
    flex: 1;
}

.celeb-item h5 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #eee;
}

.celeb-item .badge-votes {
    font-size: 1.1rem;
    padding: 6px 14px;
}