/* Web 1.0 Style CSS - Compatible with Windows XP and older browsers */

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    background-color: #C0C0C0;
    background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAALAAAAAAQABAAAAMhCLrc/jDKSatlQtScKdceCAjDII7HyFCCS6w+Q2dW1wAAOw==');
    margin: 0;
    padding: 10px;
    color: #000000;
}

h1 {
    color: #0000FF;
    text-align: center;
    font-size: 24px;
    text-decoration: underline;
    margin: 20px 0;
}

h2 {
    color: #800000;
    font-size: 18px;
    text-decoration: underline;
    margin: 15px 0 10px 0;
}

h3 {
    color: #008000;
    font-size: 14px;
    margin: 10px 0 5px 0;
}

p, li {
    line-height: 1.4;
    margin: 8px 0;
}

a:link { color: #0000EE; }
a:visited { color: #551A8B; }
a:hover { color: #FF0000; }

.center {
    text-align: center;
}

.blink {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.marquee {
    background-color: #FFFF00;
    border: 2px solid #000000;
    padding: 5px;
    margin: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.border-box {
    border: 3px outset #C0C0C0;
    background-color: #E0E0E0;
    padding: 15px;
    margin: 15px 0;
}

.status-box {
    border: 2px solid #800080;
    background-color: #F0F0F0;
    padding: 10px;
    margin: 10px 0;
}

.counter {
    background-color: #000080;
    color: #FFFFFF;
    font-family: "Courier New", monospace;
    padding: 3px 6px;
    border: 1px solid #000000;
}

.separator {
    height: 5px;
    background-image: repeating-linear-gradient(
        45deg,
        #FF0000 0px,
        #FF0000 10px,
        #FFFF00 10px,
        #FFFF00 20px,
        #00FF00 20px,
        #00FF00 30px,
        #00FFFF 30px,
        #00FFFF 40px
    );
    margin: 20px 0;
}

table {
    border-collapse: collapse;
    border: 2px solid #000000;
    background-color: #FFFFFF;
}

td, th {
    border: 1px solid #808080;
    padding: 5px;
    font-size: 11px;
}

th {
    background-color: #C0C0C0;
    font-weight: bold;
}

.footer {
    text-align: center;
    font-size: 10px;
    color: #808080;
    margin-top: 30px;
    border-top: 1px solid #808080;
    padding-top: 10px;
}

/* Web 1.0 button style */
.button {
    background-color: #C0C0C0;
    border: 2px outset #C0C0C0;
    padding: 3px 8px;
    font-size: 11px;
    cursor: pointer;
}

.button:hover {
    background-color: #E0E0E0;
}

.button:active {
    border: 2px inset #C0C0C0;
}

/* ASCII art styling */
.ascii {
    font-family: "Courier New", monospace;
    font-size: 10px;
    line-height: 1;
    white-space: pre;
    background-color: #000000;
    color: #00FF00;
    padding: 10px;
    border: 2px solid #808080;
    overflow-x: auto;
}

/* Removed CSS icon animations - now using authentic 90s animated GIFs */

/* Force nearest neighbor interpolation for all images - maintains crisp pixel art */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Immortal glow effect for legend status */
.immortal-glow {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    animation: immortal-pulse 2s ease-in-out infinite alternate;
}

@keyframes immortal-pulse {
    from { text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700; }
    to { text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px #FFD700; }
}