@font-face {
    font-family: 'B52';
    src: url('/B52.woff2') format('woff2'),
         url('/B52.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TATU';
    src: url('/TATU.woff2') format('woff2'),
         url('/TATU.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Wrong Lane Regular';
    src: url('/WrongLane.woff2') format('woff2'),
         url('/WrongLane.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 170, 255, 0.4);
    }
}

body {
    font-family: 'B52', monospace;
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
    margin: 0;
    min-height: 100vh;
}

h1 {
    font-family: 'Wrong Lane Regular', sans-serif;
    text-align: center;
    font-size: 5rem;
    margin-bottom: 40px;
    color: #ff0000;
    letter-spacing: 1.5px;
    animation: fadeInUp 0.8s ease-out, titleGlow 4s ease-in-out infinite;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    animation: fadeInUp 1s ease-out;
}

th {
    font-family: 'Wrong Lane Regular', sans-serif;
    font-size: 1.2rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 10px;
    text-align: left;
}

td {
    font-size: 1.1rem;
    padding: 6px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

tr:not(:first-child):hover td {
    background-color: #0c0c0c;
    color: #ffffff;
}

tr:nth-child(2) td a {
    color: #888888;
    font-family: 'Wrong Lane Regular', sans-serif;
}

a {
    color: #ff0000;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 170, 255, 0.6);
}

td:last-child {
    text-align: right;
    font-size: 1rem;
    color: #666;
}

@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    h1 {
        font-size: 2rem;
    }
    th {
        font-size: 1.1rem;
    }
    td {
        font-size: 1rem;
        padding: 6px 8px;
    }
}