body {
            margin: 0;
            background: #111;
            color: #eee;
            font-family: Arial, sans-serif;
        }

        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 20px;
        }

        .card {
            background: #1b1b1b;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
        }

        h1 {
            margin-top: 0;
            color: #f0c040;
        }

        h2 {
            color: #eee;
            margin-top: 26px;
        }

        .status-online {
            color: #4cff4c;
            font-weight: bold;
        }

        .status-offline {
            color: #ff5555;
            font-weight: bold;
        }

        .row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #333;
            padding: 10px 0;
            gap: 16px;
        }

        .label {
            color: #aaa;
        }

        .value {
            font-weight: bold;
            text-align: right;
            word-break: break-all;
        }

        .connect {
            margin-top: 18px;
            padding: 16px;
            background: #222;
            border-radius: 8px;
            border: 1px solid #444;
            font-family: Consolas, monospace;
            font-size: 18px;
            color: #9fd3ff;
            word-break: break-all;
        }

        .players-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
        }

        .players-table th,
        .players-table td {
            border-bottom: 1px solid #333;
            padding: 10px 8px;
            text-align: left;
        }

        .players-table th {
            color: #aaa;
            font-weight: normal;
        }

        .players-table td.frags,
        .players-table td.ping {
            text-align: right;
            white-space: nowrap;
        }

        .empty {
            color: #888;
            padding: 10px 0;
        }

        .footer {
            margin-top: 24px;
            color: #777;
            font-size: 13px;
        }

        a {
            color: #9fd3ff;
        }

        @media (max-width: 600px) {
            .row {
                flex-direction: column;
                gap: 4px;
            }

            .value {
                text-align: left;
            }

            .players-table th:nth-child(3),
            .players-table td:nth-child(3) {
                display: none;
            }
        }


/* =========================
   Game background override - UT99
   ========================= */

html,
body {
    min-height: 100% !important;
}

body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.86)),
        url('/assets/img/ut99-bg.jpg') center center / cover fixed no-repeat !important;
}

.page,
.container,
main {
    position: relative;
    z-index: 1;
}
