body {
    background-color: #000000;
    color: #ff0000;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    margin: 0;
    padding: 20px;
    animation: pulse-bg 2s infinite alternate;
    image-rendering: pixelated;
}

@keyframes pulse-bg {
    0% { background-color: #000000; }
    100% { background-color: #800000; }
}

.navbar {
    background-color: #800000;
    border-bottom: 4px solid #ff0000;
    padding: 10px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar li {
    display: inline;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #ff0000;
    background-color: #000000;
    transition: background-color 0.3s, transform 0.2s;
    image-rendering: pixelated;
}

.navbar a:hover {
    background-color: #ff0000;
    color: #000000;
    transform: scale(1.1);
}

h1 {
    font-size: 32px;
    text-shadow: 4px 4px 8px #ff0000, -4px -4px 8px #800000;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

p {
    font-size: 18px;
    margin: 20px 0;
    animation: color-shift 3s infinite;
}

@keyframes color-shift {
    0% { color: #ff0000; }
    50% { color: #ffffff; }
    100% { color: #ff0000; }
}

.ascii-art {
    font-family: monospace;
    font-size: 14px;
    white-space: pre;
    color: #ff0000;
    text-shadow: 2px 2px 4px #800000;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

.wild-button {
    background-color: #ff0000;
    color: #000000;
    border: 6px dashed #800000;
    padding: 20px;
    font-size: 20px;
    cursor: pointer;
    animation: rotate 2s infinite linear, scale 1s infinite alternate;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scale {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.wild-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    border: 4px solid #ff0000;
    padding: 10px;
    display: inline-block;
    margin: 20px;
    animation: bounce 0.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.pixel-box {
    width: 200px;
    height: 200px;
    background-color: #800000;
    margin: 20px auto;
    border: 10px dotted #ff0000;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}

footer p {
    font-size: 12px;
    color: #800000;
    animation: fade-in-out 4s infinite;
}

@keyframes fade-in-out {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}