/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000; /* Deep Black */
    color: #FFDD00; /* Vibrant Yellow */
    cursor: url('/cursors/Normal Select.cur'), default;
}

a, a:visited {
    color: #FFDD00;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #CCCCCC;
    cursor: url('/cursors/Link Select.png'), pointer !important;
}

/* Header Enhancements */
header {
    background-color: #1A1A1A;
    color: #FFDD00;
    padding: 30px 0;
    text-align: center;
    font-size: 28px;
    border-bottom: 4px solid #FFDD00;
    background-image: linear-gradient(45deg, #333, #1A1A1A); /* Gradient for depth */
}

/* Navigation Enhancements */
nav ul {
    list-style-type: none;
    padding: 20px;
    text-align: center;
    background-color: #222; /* Slight background for nav */
    margin-bottom: 30px; /* Space out from main content */
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #FFDD00;
    padding: 8px 12px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #FFDD00; /* Glow effect */
}

nav ul li a:hover {
    background-color: #FFDD00;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px #FFDD00; /* Enhanced glow effect on hover */
}

/* Main Content Enhancements */
.main-content {
    padding: 25px;
    background-color: #000;
    margin: 25px auto;
    width: 90%;
    max-width: 800px;
    border: 3px solid #FFDD00;
    box-shadow: 0 0 10px #FFDD00;
    animation: glow 5s infinite alternate; /* Animated glow for the main content */
}

/* Footer Enhancements */
footer {
    background-color: #1A1A1A;
    color: #FFDD00;
    text-align: center;
    padding: 15px 0;
    margin-top: 25px;
    border-top: 4px solid #FFDD00;
}


.retro-box {
    padding: 20px;
    margin-bottom: 25px;
    background: #111;
    border: 3px dashed #FFDD00;
    animation: pulse 2s infinite;
}

.neon-text {
    text-shadow: 0 0 8px #FFDD00, 0 0 16px #FFDD00, 0 0 24px #FFAA00;
    color: #FFF;
}

/* Keyframes for Animations */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px #FFDD00; }
    50% { box-shadow: 0 0 20px #FFDD00; }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px #FFDD00; }
    100% { box-shadow: 0 0 20px #FFAA00; }
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .main-content, nav ul {
        width: 95%;
    }
}
