/** @format */

/**
 * Leaderboard.css - Leaderboard Mode Specific Styles
 * 
 * CSS specific to Leaderboard mode only.
 * Includes header overlay for readability over background images.
 * 
 * Shared styles moved to: IP.css
 * Slide animations moved to: Slide.css
 * 
 * Load order: After IP.css and Slide.css, only in leaderboard.html
 */

/* ── Global Leaderboard Resets ─────────────────────────────────────────────── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    position: relative;
    font-size: 80%;
}

/* 50% transparent background image layer */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--leaderboard-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* ── Leaderboard Header ────────────────────────────────────────────────────── */
