/* Page-specific overrides (optional).
   Kept intentionally small: most styling lives in styles.css. */

/* Utility fallback (was previously Tailwind's col-span-full) */
.col-span-full {
    grid-column: 1 / -1;
}

/* FIFA page: keep headings and grid flow consistent even without Tailwind */
body.fifa-page .section-heading {
    margin: 40px 0 20px;
}

/* TV/Series page: IMDb-style rating bubble */
.tv-visual {
    position: relative;
}

.imdb-bubble {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: purple;
    border: 3px solid gold;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.imdb-bubble__rating {
    font-size: 1.2rem;
    line-height: 1;
    text-shadow: 1px 1px 2px black;
}

.imdb-bubble__votes {
    font-size: 0.6rem;
    line-height: 1;
    text-shadow: 1px 1px 2px black;
}

/* Formats page: keep the info box actually white (some themes tint cards). */
body.formats-page .formats-info-box {
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.2);
}

body.formats-page .formats-info-box h2 {
    color: #0f172a;
}

body.formats-page .formats-info-box p {
    color: #1f2937;
}

body.formats-page .formats-note {
    font-size: 0.85rem;
    color: #374151;
    opacity: 0.9;
}

body.formats-page .pdf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    background: #6d28d9;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

body.formats-page .pdf-button:hover {
    filter: brightness(1.05);
}
