/* THE CRINGE PRESETS */
body {
    background-color: #000033;
    background-image: url('https://www.transparenttextures.com/patterns/circuit-board.png'); /* Tiled background */
    color: #00FF00; /* Neon Green */
    font-family: "Courier New", Courier, monospace;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="20" font-size="20">💀</text></svg>'), auto;
    margin: 0;
    padding: 20px;
    text-align: center;
    
    background: repeating-linear-gradient(
      45deg,
      #000033,
      #000033 10px,
      #000066 10px,
      #000066 20px
    );
    background-size: 28px 28px;
    animation: bgMove 10s linear infinite;
}

header {
    border: 5px ridge #00FF00;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.8);
}

/* RAINBOW GLITCH TEXT */
.rainbow-text {
    font-size: 3.5em;
    font-weight: 900;
    text-shadow: 4px 4px #000;
    animation: rainbow 2s linear infinite;
}

@keyframes rainbow {
    0% { color: #ff0000; filter: hue-rotate(0deg); }
    100% { color: #ff0000; filter: hue-rotate(360deg); }
}

h1 {
    color: #FF00FF; /* Neon Pink */
    text-shadow: 3px 3px #000;
    font-size: 3em;
    margin: 0;
    animation: blink 1s infinite;
}

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

.marquee-container {
    background: #FF0000;
    color: #FFF;
    font-weight: bold;
    padding: 5px;
    border: 2px solid #FFF;
    margin: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

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

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

/* QUEST CARDS */
.quest-board {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.quest-item {
    width: 300px;
    background: #c0c0c0; /* Classic Silver */
    color: #000;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-right: 3px solid #808080;
    border-bottom: 3px solid #808080;
    padding: 10px;
    text-align: left;
    box-shadow: 5px 5px 0px #000;
}

.quest-item h2 {
    background: linear-gradient(90deg, #000080, #0080ff); /* Win95 Header */
    color: white;
    margin: -10px -10px 10px -10px;
    padding: 5px;
    font-size: 1.1em;
}

.reward {
    color: #008000;
    font-weight: bold;
    font-size: 1.2em;
}

.construction {
    margin-top: 50px;
    border: 3px dashed yellow;
    padding: 20px;
    display: inline-block;
}

.visitor-counter {
    background: #000;
    color: #00FF00;
    font-family: 'Digital-7', monospace;
    padding: 5px 10px;
    border: 2px solid #444;
    display: inline-block;
    margin-top: 20px;
}

button {
    background: #c0c0c0;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    cursor: pointer;
    margin-top: 10px;
}

button:active {
    border: 2px inset #fff;
}

.fire-gif {
    height: 50px;
}

/* MOUSE TRAIL DOTS */
.trail-dot {
    position: absolute;
    pointer-events: none;
    color: #FF00FF;
    font-size: 20px;
    z-index: 9999;
}