

body {
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, #100020, #000000);
    color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
}


h1 {
    text-align: center;
    color: #7f5af0; 
    text-shadow: 0 0 10px #7f5af0, 0 0 25px #007bff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 2em;
    animation: glowTitle 3s infinite alternate;
}


@keyframes glowTitle {
    from {
        text-shadow: 0 0 10px #7f5af0, 0 0 25px #007bff;
    }
    to {
        text-shadow: 0 0 20px #b499ff, 0 0 40px #009dff;
    }
}


table {
    width: 90%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 90, 255, 0.4);
    background-color: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(4px);
}


td, th {
    border: 1px solid #2a2a4a;
    padding: 12px 16px;
    text-align: center;
    font-size: 1em;
}


thead td {
    background-color: #120033;
    color: #00aaff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 -2px 10px rgba(0, 102, 255, 0.5);
}


tbody tr:nth-child(even) {
    background-color: rgba(40, 40, 60, 0.7);
}

tbody tr:hover {
    background-color: rgba(0, 100, 255, 0.15);
    transition: background 0.3s ease;
    box-shadow: inset 0 0 10px #007bff;
}


a img {
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px transparent;
}


a img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px #007bff, 0 0 30px #9b59ff;
}


tfoot td {
    background-color: #0b0b15;
}


::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #007bff, #7f5af0);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a1a;
}
