
        .champ-hero {
            padding: 220px 0 140px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .official-badge {
            display: inline-block; padding: 5px 15px; background: rgba(255,255,255,0.2); 
            backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: #fff; margin-bottom: 10px;
            position: relative; z-index: 2;
        }

        /* =========================================
           NATIONAL BUTTON NAVIGATION
           ========================================= */
        .national-nav {
            background: white;
            padding: 30px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            z-index: 10;
        }
        .national-btn-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .n-btn {
            padding: 12px 25px;
            border-radius: 50px;
            background: #fff;
            border: 1px solid var(--glass-border);
            color: var(--text-main);
            font-family: var(--font-heading);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            text-decoration: none;
        }
        .n-btn:hover {
            background: var(--neon-cyan);
            color: white;
            transform: translateY(-2px);
            border-color: var(--neon-cyan);
            box-shadow: 0 5px 15px rgba(0, 124, 195, 0.2);
        }
        .n-btn.active {
            background: var(--text-main);
            color: white;
            border-color: var(--text-main);
        }

        /* =========================================
           CREATIVE RESULTS LIST STYLES
           ========================================= */
        .results-section { padding: 80px 0; background: var(--bg-deep); }

        .category-header {
            margin-bottom: 60px;
            display: flex; align-items: center; gap: 20px;
            margin-top: 60px;
        }
        .category-title {
            font-family: var(--font-display); font-size: 2rem; color: var(--text-main);
            position: relative; padding-left: 20px;
        }
        .category-title::before {
            content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
            width: 5px; height: 100%; background: var(--neon-cyan);
        }
        .category-line { flex-grow: 1; height: 1px; background: rgba(0,0,0,0.1); }

        .podium-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 30px;
            margin-bottom: 60px;
            height: 380px;
            padding-top: 20px;
        }

        .podium-spot {
            width: 280px;
            text-align: center;
            position: relative;
            transition: 0.4s var(--ease-out-expo);
        }
        .podium-spot:hover { transform: translateY(-10px); }

        .spot-1 { order: 2; z-index: 3; }
        .spot-2 { order: 3; z-index: 2; }
        .spot-3 { order: 1; z-index: 1; }

        .p-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .spot-1 .p-card { 
            height: 300px; 
            border-top: 6px solid var(--neon-gold); 
            background: linear-gradient(to bottom, #fffcf0, #fff);
            box-shadow: 0 20px 50px rgba(197, 160, 23, 0.15);
        }
        .spot-2 .p-card { height: 260px; border-top: 6px solid var(--neon-silver); }
        .spot-3 .p-card { height: 230px; border-top: 6px solid var(--neon-bronze); }

        .rank-badge-circle {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: white;
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: absolute; top: -30px;
            border: 4px solid;
        }
        .spot-1 .rank-badge-circle { border-color: var(--neon-gold); color: var(--neon-gold); width: 80px; height: 80px; top: -40px; font-size: 2rem;}
        .spot-2 .rank-badge-circle { border-color: var(--neon-silver); color: var(--neon-silver); }
        .spot-3 .rank-badge-circle { border-color: var(--neon-bronze); color: var(--neon-bronze); }

        .p-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
        .p-weight { font-size: 0.9rem; color: var(--neon-cyan); font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
        .p-state { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; justify-content: center; }

        .others-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin-bottom: 80px;
        }
        
        .mini-card {
            background: white; padding: 15px 25px; border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .mini-card::before {
            content: '🥇';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%) scale(0) rotate(-180deg);
            font-size: 2rem;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10;
        }
        .mini-card.type-gold::before { content: '🥇'; text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
        .mini-card.type-silver::before { content: '🥈'; text-shadow: 0 0 15px rgba(192, 192, 192, 0.8); }
        .mini-card.type-bronze::before { content: '🥉'; text-shadow: 0 0 15px rgba(205, 127, 50, 0.8); }

        .mini-card:hover { transform: translateX(5px); border-color: var(--neon-cyan); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .mini-card:hover::before { opacity: 1; transform: translateY(-50%) scale(1.5) rotate(0deg); right: 60px; }
        .mini-card:hover .medal-tag { opacity: 0; transform: translateX(20px); }
        
        .mini-rank { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-muted); width: 40px; }
        .mini-info h4 { font-size: 1.1rem; margin: 0; color: var(--text-main); font-weight: 700; }
        .mini-info span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }
        
        .medal-tag {
            margin-left: auto; font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
            padding: 4px 10px; border-radius: 4px; transition: all 0.3s ease; position: relative; z-index: 2;
        }
        .tag-gold { background: rgba(255, 215, 0, 0.1); color: #b8860b; }
        .tag-silver { background: rgba(192, 192, 192, 0.1); color: #7f8c8d; }
        .tag-bronze { background: rgba(205, 127, 50, 0.1); color: #a0522d; }

        [data-aos] { opacity: 0; transform: translateY(20px); transition: 0.6s var(--ease-out-expo); }
        [data-aos].active { opacity: 1; transform: translateY(0); }

        @media (max-width: 900px) {
            .podium-container { flex-direction: column; height: auto; align-items: center; gap: 60px; }
            .spot-1 { order: -1; }
            .spot-2 { order: 0; }
            .spot-3 { order: 1; }
            .podium-spot { width: 100%; max-width: 350px; }
            .p-card { height: auto !important; padding: 40px 20px 20px; }
            .others-grid { grid-template-columns: 1fr; }
        }

