/* ===== CYBERPUNK RETRO THEME ===== */

/* Neon colors to use:
   Cyan: #00f6ff
   Magenta: #ff0cf9
   Purple: #8c00ff
   Hot Pink: #ff4bdb
   Deep Black-Blue: #050014
*/

body {
    font-family: "Orbitron", "Courier New", monospace;
    background: radial-gradient(circle at center, #0b001d 0%, #050014 100%);
    color: #00f6ff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Add a glowing scanline effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.008) 2px,
        transparent 4px
    );
    mix-blend-mode: overlay;
    z-index: 5;
}

#wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 25px;
    background: rgba(10, 0, 30, 0.7);
    border: 2px solid #8c00ff;
    border-radius: 12px;
    box-shadow: 0 0 25px #8c00ff, inset 0 0 20px #2b006b;
    backdrop-filter: blur(4px);
}

/* Neon headers */
h2, h3 {
    margin: 0;
    padding-bottom: 10px;
    color: #ff4bdb;
    text-shadow: 0 0 10px #ff0cf9;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Cyberpunk button */
input[type="button"] {
    background: #050014;
    color: #00f6ff;
    padding: 12px 18px;
    border: 2px solid #00f6ff;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #00f6ff;
    transition: all 0.25s ease;
}

input[type="button"]:hover {
    background: #00f6ff;
    color: #050014;
    box-shadow: 0 0 25px #00f6ff, 0 0 15px #ff0cf9;
    transform: scale(1.04);
}

/* Table container */
#container {
    margin-top: 25px;
}

/* Glowing table frame */
table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #ff0cf9;
    background: rgba(15, 0, 40, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px #ff0cf9;
}

/* Header row with neon bars */
th {
    padding: 14px;
    background: linear-gradient(90deg, #8c00ff, #ff0cf9);
    color: black;
    font-weight: bold;
    text-shadow: none;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff4bdb;
}

/* Cyber rows */
td {
    padding: 12px;
    border-bottom: 1px solid #8c00ff;
    color: #d3b8ff;
}

/* Glowing alternating rows */
tr:nth-child(even) {
    background-color: rgba(140, 0, 255, 0.15);
}

tr:hover {
    background-color: rgba(255, 12, 249, 0.25);
    box-shadow: inset 0 0 15px #ff0cf9;
    transition: 0.2s ease;
}

/* Image style - neon frame */
img {
    max-width: 130px;
    border-radius: 6px;
    border: 2px solid #ff4bdb;
    box-shadow: 0 0 10px #ff0cf9;
}

/* Audio players */
audio {
    width: 170px;
    filter: drop-shadow(0 0 8px #00f6ff);
}

/* Make table scroll on small screens */
@media (max-width: 750px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
