/* Full-page background */
    body {
        background: url("space.jpg") no-repeat center center;
        background-size: cover;
        color: #eee;
    }

.hosts-container {
    max-width: 1470px;
    margin: auto;
    padding: 0.5rem 0.5rem;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
}

.host-card {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 12px;
    padding: 0.5rem;
    text-align: center;
}

.host-card img.avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.2rem;
}

.name {
    font-size: 0.6rem;
    font-weight: bold;
}

.show {
    font-size: 0.6rem;
    color: #ffd800;
}

.schedule {
    font-size: 0.6rem;
    opacity: 0.9;
}

.links img {
    width: 23px;
    height: 23px;
}

/* Force center alignment ONLY for show titles */
.host-card .show {
    text-align: center;
    display: block;
    width: 100%;
}

/* Remove legacy box styling from show name only */
.host-card .show {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0.25rem 0;
    text-align: center;
}
