/* ===== extracted from index.php ===== */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: #333;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }
        
        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        header p {
            font-size: 1.1em;
            opacity: 0.9;
        }
        
        /* Logo image styling */
        .header-logo {
            max-width: 300px;
            height: auto;
            margin: 0 auto 20px auto;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
        }
        
        nav {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        nav a {
            color: #1e3c72;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 16px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        nav a:hover {
            background: #1e3c72;
            color: white;
        }
        
        nav a.active {
            background: #1e3c72;
            color: white;
        }
        
        .content {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background: #1e3c72;
            color: white;
            font-weight: bold;
        }
        
        tr:hover {
            background: #f5f5f5;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        
        .stat-card h3 {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .stat-card p {
            opacity: 0.9;
        }
        
        .podium {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 20px;
            margin: 30px 0;
        }
        
        .podium-place {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            color: white;
            min-width: 150px;
        }
        
        .first {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .second {
            background: linear-gradient(135deg, #C0C0C0, #808080);
            height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .third {
            background: linear-gradient(135deg, #CD7F32, #8B4513);
            height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .podium-place h2 {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .rank-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-weight: bold;
            font-size: 0.9em;
        }
        
        .rank-1 { background: #FFD700; color: #000; }
        .rank-2 { background: #C0C0C0; color: #000; }
        .rank-3 { background: #CD7F32; color: #fff; }
        
        footer {
            text-align: center;
            color: white;
            padding: 20px;
            margin-top: 30px;
        }
        
        .search-box {
            margin: 20px 0;
            text-align: center;
        }
        
        .search-box input {
            padding: 10px 20px;
            font-size: 1em;
            border: 2px solid #1e3c72;
            border-radius: 5px;
            width: 300px;
            max-width: 100%;
        }
        
        .search-box button {
            padding: 10px 30px;
            font-size: 1em;
            background: #1e3c72;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .search-box button:hover {
            background: #2a5298;
        }

        @media (max-width: 1400px){
            .container { max-width: 1200px; }
        }

        @media (max-width: 768px) {
            .container { 
                max-width: 100%; 
                padding: 15px; 
            }
            .header-logo {
                max-width: 200px;
            }
        }
