/* ===============================
   GLOBAL RESET
================================ */
* {
    box-sizing: border-box;
}

/* ===============================
   BACKGROUND (Gaming Neon)
================================ */
body {
    margin: 0;
    padding: 40px;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(0,255,255,0.15), transparent 40%),
        radial-gradient(circle at bottom, rgba(56,189,248,0.12), transparent 40%),
        linear-gradient(180deg, #020617, #020617);
    color: #e5e7eb;
}

/* ===============================
   PAGE TITLE
================================ */
h1 {
    color: #67e8f9;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(0,255,255,0.6);
}

/* ===============================
   TABLE CONTAINER
================================ */
table {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background: rgba(2, 6, 23, 0.85);
    border-radius: 14px;
    border-collapse: collapse;
    box-shadow:
        0 0 30px rgba(0,255,255,0.15),
        inset 0 0 40px rgba(0,0,0,0.6);
    overflow: hidden;
}

/* ===============================
   TABLE HEADER
================================ */
th {
    padding: 14px;
    background: linear-gradient(180deg, rgba(0,255,255,0.25), rgba(0,255,255,0.05));
    color: #67e8f9;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ===============================
   TABLE ROWS
================================ */
td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
}

tr:hover {
    background: linear-gradient(
        90deg,
        rgba(56,189,248,0.15),
        rgba(56,189,248,0.05)
    );
}

/* ===============================
   LINKS
================================ */
a {
    color: #38bdf8;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    color: #67e8f9;
    text-shadow: 0 0 8px rgba(0,255,255,0.9);
}

/* ===============================
   ICONS
================================ */
img {
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(0,255,255,0.5));
}

/* ===============================
   FOOTER (Apache signature)
================================ */
address {
    text-align: center;
    color: #64748b;
    margin-top: 20px;
    font-size: 12px;
}
