 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
            background-color: #3a5393;
            color: white;
            padding: 25px 35px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        h3 {
            font-size: 2.2em;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            font-weight: 900;
            padding: 18px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            flex-shrink: 0;
        }

        .standings-container {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            min-height: 0;
            overflow: hidden;
        }

        .column {
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        thead tr {
            background: rgba(255, 255, 255, 0.2);
        }

        th, td {
            padding: 10px 8px;
            text-align: left;
            font-size: 1.2em;
            font-weight: 700;
            border: none;
        }

        thead th {
            font-size: 1.4em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        tbody tr {
            background: rgba(255, 255, 255, 0.03);
        }

        tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.08);
        }

        /* Hide ID column */
        td:nth-child(4), th:nth-child(4) {
            display: none;
        }

        td:first-child {
            font-weight: 900;
            color: #ffd700;
            text-align: center;
            width: 45px;
        }

        td:nth-child(2) {
            text-align: center;
            width: 65px;
        }

        td:nth-child(3) {
            font-weight: 900;
        }

        td:nth-child(5) {
            opacity: 0.9;
            font-weight: 600;
            width: 90px;
        }

        td:last-child {
            font-weight: 900;
            text-align: center;
            width: 50px;
        }

    
        a {
            color: white;
            text-decoration: none;
            pointer-events: none;
        }

        
        @media (max-height: 900px) {
            body { padding: 20px 25px; }
            h3 { font-size: 1.9em; margin-bottom: 15px; padding: 15px; }
            .standings-container { gap: 15px; }
        }

        @media (max-height: 700px) {
            body { padding: 15px 20px; }
            h3 { font-size: 1.5em; margin-bottom: 12px; padding: 12px; }
            .standings-container { gap: 12px; }
        }
   