/* Reset some basic elements */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
}

/* Body styling */
body {
    background-color: #120022; /* deep, nearly black purple */
    color: #e0e0e0;
    font-family: "Verdana", "Tahoma", sans-serif;
    line-height: 1.5;
}

/* Centered container */
.container {
    width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #1b002f; /* dark purple box */
    border: 2px solid #3a003f;
    box-shadow: 0 0 20px #330044; /* subtle purple glow */
    border-radius: 4px; /* slight rounding for retro style */
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #ff99ff;
    text-shadow: 0 0 5px #ff99ff, 0 0 10px #cc66ff; /* neon glow */
}

/* Navigation links */
nav a {
    color: #cc99ff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 3px #cc99ff;
}

nav a:hover {
    color: #ffccff;
    text-shadow: 0 0 6px #ffccff;
    text-decoration: underline;
}

/* Content boxes */
.content-box {
    background: #2a002f;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #4b004f;
    box-shadow: 0 0 10px #550077; /* faint purple glow */
    border-radius: 3px;
}

.content-box h2 {
    color: #ff99ff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #ff99ff; /* retro heading glow */
}

/* Lists inside content */
ul {
    list-style-type: square;
    padding-left: 20px;
}

ul li a {
    color: #cc99ff;
    text-decoration: none;
    text-shadow: 0 0 2px #cc99ff;
}

ul li a:hover {
    color: #ffccff;
    text-shadow: 0 0 5px #ffccff;
    text-decoration: underline;
}

/* Footer styling */
footer {
    text-align: center;
    font-size: 0.9em;
    color: #999;
    margin-top: 20px;
    border-top: 1px solid #3a003f;
    padding-top: 10px;
    text-shadow: 0 0 2px #330044;
}

/* Retro button style */
button {
    background: linear-gradient(#3a003f, #1b002f);
    color: #fff;
    border: 1px solid #5c0060;
    padding: 5px 10px;
    font-family: "Verdana", sans-serif;
    cursor: pointer;
    box-shadow: 0 0 8px #8800ff; /* subtle neon glow */
    border-radius: 3px;
}

button:hover {
    background: linear-gradient(#5c0060, #2a002f);
    box-shadow: 0 0 12px #ff66ff;
}