/* Purple background with light neon text and orange bold */

body {
    background-color: #2d1b4e;
    color: #00ffcc;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

/* Links */
a {
    color: #ff69b4;
    text-decoration: none;
    text-shadow: 0 0 5px #ff69b4;
}

a:hover {
    color: #ff1493;
    text-shadow: 0 0 15px #ff1493;
}

/* Bold text - orange */
strong, b {
    color: #ff8c00;
    font-weight: bold;
    text-shadow: 0 0 8px #ff8c00;
}

/* Code blocks */
code {
    background-color: #1a0f2e;
    color: #00ff00;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

pre {
    background-color: #1a0f2e;
    color: #00ff00;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    border: 1px solid #00ffcc;
}

pre code {
    background-color: transparent;
    padding: 0;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #ff8c00;
    padding-left: 20px;
    margin-left: 0;
    color: #99ccff;
    font-style: italic;
}

/* Horizontal rules */
hr {
    border: none;
    border-top: 2px solid #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
    margin: 30px 0;
}

/* Lists */
ul, ol {
    color: #00ffcc;
}

li {
    margin: 5px 0;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}

th, td {
    border: 1px solid #00ffcc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #1a0f2e;
    color: #ff8c00;
    font-weight: bold;
}

/* Selection */
::selection {
    background-color: #ff8c00;
    color: #2d1b4e;
}

/* Images */
img {
    max-width: 100%;
    border: 2px solid #00ffcc;
    border-radius: 5px;
    box-shadow: 0 0 15px #00ffcc;
}
