/* Body styling */
body {
    font-family: "Comic Sans MS", "Arial", sans-serif; /* Comic Sans for a playful 90s touch */
    background-color: #f0f8ff; /* Light blue (classic Windows 95 vibes) */
    color: #000;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Headers */
h1, h2 {
    font-family: "Comic Sans MS", "Arial", sans-serif;
    color: #ff00ff; /* Neon pink for a more vibrant 90s feel */
    text-shadow: .1px .1px 0 #000; /* Add slight shadow for that early-internet text effect */
    border-bottom: 2px dotted #000; /* Dotted borders were common back then */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Links */
a {
    color: #0000ff; /* Bright, default blue link */
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    color: #ff00ff; /* Hover turns to neon pink, same as headers */
    text-decoration: none; /* Removing underline on hover for a simple interaction */
}

/* Classic button style */
button {
    background-color: #ffcc00; /* Bright yellow button */
    border: 2px outset #000; /* Outset border for that 90s button "depth" */
    padding: 8px 15px;
    font-family: "Tahoma", Geneva, sans-serif;
    font-size: 12px; /* Slightly smaller button font size */
    cursor: pointer;
    text-transform: uppercase;
}

button:hover {
    background-color: #ff9900; /* Darker yellow on hover */
    border: 2px inset #000; /* Inset on hover to mimic pressed button */
}

/* Retro box styling */
.phrase-box {
    background-color: #f5f5dc; /* Beige for an old-school website look */
    border: 3px double #000; /* Double border style for more retro vibe */
    padding: 10px;
    margin: 15px auto;
    width: 80%;
    max-width: 600px;
}

.phrase-box h2 {
    font-size: 20px;
    font-family: "Courier New", Courier, monospace; /* Classic monospace font */
    color: #ff00ff; /* Matches neon pink of the headers */
}

/* Retro progress bar */
progress {
    width: 100%;
    height: 25px; /* Slightly taller progress bar */
    appearance: none;
    border: 2px solid #000;
    background-color: #c0c0c0; /* Classic grey background */
}

progress::-webkit-progress-value {
    background-color: #00ff00; /* Bright green fill */
}

/* Input fields */
input[type="text"], textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #000;
    background-color: #f8f8ff; /* Soft blue background to mimic old input fields */
    font-family: "Courier New", Courier, monospace;
}

/* Footer */
footer {
    font-family: "Verdana", Geneva, sans-serif;
    font-size: 10px;
    color: #000;
    margin-top: 30px;
    border-top: 1px solid #000;
    padding-top: 10px;
    font-style: italic; /* Italicized text for an extra touch */
}

/* Vote banners and badges */
.vote-banner {
    background-color: #ff00ff; /* Neon 90s pink */
    color: white;
    font-size: 18px;
    padding: 15px;
    text-align: center;
    width: 80%;
    margin: 20px auto;
    text-transform: uppercase;
    font-family: "Arial", sans-serif;
    letter-spacing: 2px; /* Extra letter spacing for that old-school "spread-out" look */
}

.vote-badge {
    display: inline-block;
    background-color: #00ff00; /* Bright green, matching other elements */
    color: #000;
    font-family: "Verdana", Geneva, sans-serif;
    padding: 5px 10px;
    border: 2px solid #000;
    margin-top: 10px;
    font-size: 14px;
    box-shadow: 2px 2px 0 #000; /* Box shadow for that "pop-out" feel */
}

/* List styling */
ul {
    list-style-position: outside; /* Bullets outside for that classic feel */
    text-align: left;
    margin-left: 20px; /* Added margin for indentation */
}

li {
    font-family: "Comic Sans MS", "Arial", sans-serif; /* Playful font for list items */
    font-size: 14px;
    line-height: 1.5;
}
