/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    min-height: 100vh;
    padding: 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Courier New", monospace;
    color: #fff7ed;

    background-color: #090603;
    background-image:
        linear-gradient(
            rgba(255, 145, 50, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 145, 50, 0.04) 1px,
            transparent 1px
        );

    background-size: 35px 35px;
}

/* Employee Card */
.employee-card {
    position: relative;
    isolation: isolate;

    width: 570px;
    padding: 42px;

    background: rgba(22, 11, 4, 0.97);

    border: 1px solid #9a4d12;
    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(255, 145, 50, 0.13);

    overflow: hidden;
}

/* Scan Lines */
.employee-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 3px,
        rgba(255, 145, 50, 0.025) 4px
    );

    pointer-events: none;
}

/* Top Neon Line */
.employee-card::after {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #ff7a00,
        #ffb347,
        #ff7a00
    );

    box-shadow:
        0 0 10px #ff7a00,
        0 0 22px rgba(255, 122, 0, 0.7);
}

/* Header */
.card-header {
    margin-bottom: 30px;
}

.system-text {
    display: block;
    margin-bottom: 10px;

    color: #a9673b;

    font-size: 10px;
    letter-spacing: 2px;
}

h1 {
    color: #ff9633;

    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;

    text-shadow:
        0 0 10px rgba(255, 150, 51, 0.55);
}

/* Cursor */
h1::after {
    content: "_";

    margin-left: 7px;
    color: #ff9633;

    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Table */
table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0 13px;
}

/* Table Cells */
th,
td {
    padding: 17px 18px;

    border-top: 1px solid #71380f;
    border-bottom: 1px solid #71380f;
}

/* Table Header */
th {
    width: 45%;

    color: #ffad66;
    background: #321606;

    border-left: 1px solid #71380f;
    border-radius: 8px 0 0 8px;

    text-align: left;
    text-transform: uppercase;

    font-size: 13px;
    letter-spacing: 0.7px;
}

/* Table Value */
td {
    color: #fff7ed;
    background: #1d0e05;

    border-right: 1px solid #71380f;
    border-radius: 0 8px 8px 0;

    font-size: 15px;
    font-weight: 700;
}

/* Row Hover */
tr {
    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

tr:hover {
    transform: translateX(6px);
    filter: drop-shadow(
        0 0 7px rgba(255, 145, 50, 0.25)
    );
}

tr:hover th,
tr:hover td {
    border-color: #ff9633;
}

/* Back Button */
.back-button {
    width: 100%;
    margin-top: 22px;
    padding: 15px;

    display: block;

    color: #ffad66;
    background: #321606;

    border: 1px solid #a65317;
    border-radius: 8px;

    text-align: center;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.back-button:hover {
    color: #ffffff;
    background: #5a2808;

    border-color: #ff9633;

    transform: translateY(-2px);

    box-shadow:
        0 0 18px rgba(255, 145, 50, 0.25);
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .employee-card {
        width: 100%;
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    th,
    td {
        padding: 14px 10px;
        font-size: 12px;
    }

    th {
        width: 48%;
    }
}