/* GLOBAL STYLES */
body {
    background-color: #000080; /* Navy Blue background */
    color: #FFFFFF; /* Bright white text */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

a {
    color: #00FFFF; /* Bright Cyan links */
    text-decoration: none;
    text-shadow: 1px 1px #000000;
}

a:hover {
    color: #FF00FF; /* Neon Magenta on hover */
    text-decoration: underline;
}

/* HEADER & NAVIGATION */
#header {
    background-color: #000000;
    padding: 10px;
    text-align: center;
    border-bottom: 5px double #FF00FF; /* Neon border */
}

h1.flicker {
    font-size: 3em;
    color: #FFFF00; /* Neon Yellow */
    text-shadow: 0 0 5px #FF0000, 0 0 10px #FF0000; /* Red glow */
    /* CSS Animation for flickering effect */
    animation: flicker-anim 1s infinite alternate;
}

@keyframes flicker-anim {
    0% { opacity: 1; }
    50% { opacity: 0.7; text-shadow: none; }
    100% { opacity: 1; }
}

.tagline {
    color: #FF00FF;
    font-style: italic;
    margin-top: -15px;
}

#navigation a {
    font-weight: bold;
    padding: 0 15px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 0, 255, 0), rgba(255, 0, 255, 0.75), rgba(255, 0, 255, 0));
    margin: 15px 0;
}

/* MAIN LAYOUT (The Classic <table>) */
#main-layout {
    width: 95%; /* Keep it slightly off the edges */
    margin: 20px auto;
    border-collapse: collapse; /* Essential for table design */
}

#sidebar {
    width: 250px;
    background-color: #333333; /* Dark Grey box */
    border: 3px solid #FF00FF; /* Magenta border */
    padding: 15px;
    vertical-align: top;
    box-shadow: 5px 5px 0 #000000; /* 3D effect */
}

#content {
    background-color: #000044; /* Darker Blue content area */
    padding: 20px;
    vertical-align: top;
    border: 3px solid #00FFFF; /* Cyan border */
    box-shadow: 5px 5px 0 #000000;
}

h2, h3 {
    border-bottom: 2px dashed #00FFFF; /* Dashed line headers */
    padding-bottom: 5px;
    color: #FFFF00;
}

/* Specific Content Styles */
#sidebar ul {
    list-style-type: square; /* Funky bullet points */
    padding-left: 20px;
}

.update-box {
    border: 1px solid #FF0000;
    background-color: #440000;
    padding: 10px;
    margin: 10px 0;
}

/* Hit Counter Style */
#counter-box {
    text-align: center;
    border: 2px solid #FFFFFF;
    padding: 5px;
    background-color: #000000;
    margin-top: 20px;
}

.counter-digits {
    font-size: 2em;
    color: #FF0000; /* Classic Red digits */
    font-weight: bold;
    font-family: 'Digital-7', sans-serif; /* (Assuming you'd use a retro font) */
    margin: 0;
    padding: 5px 0;
}

/* FOOTER */
#footer {
    text-align: center;
    font-size: 0.8em;
    color: #AAAAAA;
    padding: 10px;
    margin-top: 30px;
    border-top: 3px solid #FF00FF;
}