body {
    background-color: #0000ff; /* Electric Blue background */
    color: #ffffff;
    font-family: Impact, sans-serif; /* Retro font */
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: url('textured_bg.gif'); /* Use a simple star or grid pattern GIF */
}

#container {
    width: 800px;
    margin: 20px auto;
    border: 3px solid #ff1493; /* Neon pink border */
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

#header {
    background: linear-gradient(to right, #ff1493, #00ff00); /* Neon gradient*/
    padding: 10px;
    font-size: 1.5em;
    margin-bottom: 10px;
    border: 1px dashed #ffffff;
}

#nav a {
    color: #ffff00; /* Bright yellow links */
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    /* Add text effects like outlines using CSS properties */
    text-shadow: 1px 1px 0 #ff1493;
}

#main-content {
    padding: 20px;
    background-color: #00ff00; /* Vivid green content area */
    color: #000000;
    margin-bottom: 10px;
}

h1 {
    color: #ff1493;
    /* Use a metallic or glow effect if possible with advanced CSS/images */
    text-transform: uppercase;
}

.glitter-text {
    /* For true Y2K style, this would be a sliced image/gif, but CSS can simulate */
    font-weight: bold;
    color: transparent;
    background: url('glitter_texture.gif') repeat; /* Requires a glitter GIF image */
    -webkit-background-clip: text;
    background-clip: text;
}

#footer {
    font-size: 0.8em;
    border-top: 2px dotted #ffff00;
    padding-top: 10px;
}
