@charset "utf-8";

/* ---------------------------------------------------------
   GLOBAL RESET / TRANSPARENCY
---------------------------------------------------------- */
.navbar,
.container,
.container-fluid,
.row,
body > div,
body > header,
body > nav {
    background: transparent !important;
}

/* ---------------------------------------------------------
   PAGE BACKGROUND — TRON LEGACY
---------------------------------------------------------- */
body {
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #dff6ff;

    background:
        radial-gradient(circle at center,
            #0a0f1f 0%,
            #05070d 40%,
            #000000 100%),
        linear-gradient(to right, rgba(0, 180, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 180, 255, 0.08) 1px, transparent 1px);
    background-size: auto, 60px 60px, 60px 60px;
    background-attachment: fixed;
}

/* ---------------------------------------------------------
   TITLES
---------------------------------------------------------- */
h2, h3 {
    color: #00eaff;
    border-bottom: 1px solid #007799;
    padding-bottom: 6px;
    text-shadow: 0 0 8px #00aaff;
    margin-top: 40px;
}

/* ---------------------------------------------------------
   TRON GLASS TABLES
---------------------------------------------------------- */
.table-grid-wrapper {
    position: relative;
    padding: 20px;
    min-height: 200px;
}

.table-grid-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 200, 255, 0.25) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 200, 255, 0.25) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 4px rgba(0, 200, 255, 0.3));
}

.table-grid-wrapper table {
    position: relative;
    z-index: 1;
}

/* Glass table panel */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;

    background: rgba(0, 40, 70, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(0, 200, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

/* ---------------------------------------------------------
   ENCOM PANEL HEADERS (with pulsing glow)
---------------------------------------------------------- */
@keyframes encomPulse {
    0% {
        box-shadow: inset 0 0 12px rgba(0, 200, 255, 0.35),
                    0 0 6px rgba(0, 200, 255, 0.25);
        border-bottom-color: rgba(0, 200, 255, 0.6);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(0, 200, 255, 0.55),
                    0 0 12px rgba(0, 200, 255, 0.45);
        border-bottom-color: rgba(0, 200, 255, 0.9);
    }
    100% {
        box-shadow: inset 0 0 12px rgba(0, 200, 255, 0.35),
                    0 0 6px rgba(0, 200, 255, 0.25);
        border-bottom-color: rgba(0, 200, 255, 0.6);
    }
}

th {
    background: linear-gradient(
        to bottom,
        rgba(0, 180, 255, 0.45) 0%,
        rgba(0, 120, 180, 0.35) 40%,
        rgba(0, 60, 100, 0.25) 100%
    );
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 12px 10px;
    border-bottom: 2px solid rgba(0, 200, 255, 0.6);
    text-shadow: 0 0 8px #00caff;
    animation: encomPulse 3.5s ease-in-out infinite;
}

table thead tr:first-child th {
    border-top: 2px solid rgba(0, 200, 255, 0.7);
}

/* ---------------------------------------------------------
   TABLE CELLS
---------------------------------------------------------- */
td {
    background: rgba(0, 30, 50, 0.25);
    padding: 10px;
    border-bottom: 1px solid rgba(0, 200, 255, 0.15);
    color: #dff6ff;
}

/* Row striping */
tr:nth-child(even) td {
    background: rgba(0, 180, 255, 0.05);
}

/* Hover glow */
tr:hover td {
    background: rgba(0, 80, 120, 0.35);
    box-shadow: inset 0 0 12px rgba(0, 200, 255, 0.25);
    transition: 0.2s;
}

/* ---------------------------------------------------------
   NAVIGATION
---------------------------------------------------------- */
.tron-nav {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    gap: 25px;
    align-items: center;

    background: rgba(0, 20, 40, 0.6);
    border-bottom: 1px solid #004466;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.25);
    backdrop-filter: blur(6px);

    position: sticky;
    top: 0;
    z-index: 999;
}

.tron-nav a {
    color: #00eaff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 6px #00aaff;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.2s ease;
}

.tron-nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00eaff;
    background: rgba(0, 180, 255, 0.15);
}

.tron-nav a.active {
    color: #ffffff;
    background: rgba(0, 180, 255, 0.25);
    text-shadow: 0 0 12px #00eaff;
    border-bottom: 2px solid #00eaff;
}

/* ---------------------------------------------------------
   BUTTONS / LINKS / FOOTER
---------------------------------------------------------- */
.tron-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #002a33;
    color: #00eaff;
    border: 1px solid #00aacc;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 6px #00aaff;
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
}

.tron-btn:hover {
    background: #004455;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(0, 180, 255, 0.6);
}

a {
    color: #00eaff;
    text-shadow: 0 0 6px #00aaff;
}

a:hover {
    color: #ffffff;
}

.tron-footer {
    text-align: center;
    margin-top: 40px;
    color: #007799;
    font-size: 0.9rem;
}
