@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000033;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff15'/%3E%3C/svg%3E");
    color: #00ff00;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    font-size: 14px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Ccircle cx='8' cy='8' r='6' fill='%2300ff00' opacity='0.7'/%3E%3C/svg%3E"), auto;
}

a {
    color: #00ccff;
    text-decoration: none;
}

a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

a:visited {
    color: #cc99ff;
}

.top-banner {
    background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #0000ff, #8b00ff);
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    padding: 6px 0;
    text-shadow: 2px 2px 2px #000000;
}

.main-layout {
    width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
}

.header-cell {
    background: linear-gradient(180deg, #000066, #000033);
    text-align: center;
    padding: 20px;
    border: 2px ridge #3333ff;
}

.site-title {
    font-size: 42px;
    color: #ffff00;
    text-shadow:
        0 0 10px #ffff00,
        0 0 20px #ff8800,
        0 0 30px #ff0000,
        3px 3px 0 #000000;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ffff00, 0 0 20px #ff8800, 3px 3px 0 #000; }
    to { text-shadow: 0 0 20px #ffff00, 0 0 40px #ff8800, 0 0 60px #ff0000, 3px 3px 0 #000; }
}

.subtitle {
    color: #aaaaff;
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: 5px;
}

.under-construction {
    margin-top: 10px;
    color: #ff0000;
    font-size: 18px;
    font-weight: bold;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.nav-cell {
    width: 170px;
    vertical-align: top;
    padding: 8px;
    background-color: #000044;
    border-right: 2px ridge #3333ff;
}

.content-cell {
    vertical-align: top;
    padding: 10px;
    background-color: #000022;
    width: 530px;
}

.sidebar-cell {
    width: 170px;
    vertical-align: top;
    padding: 8px;
    background-color: #000044;
    border-left: 2px ridge #3333ff;
}

.nav-box {
    border: 2px ridge #3333ff;
    margin-bottom: 10px;
    background-color: #000055;
}

.nav-title {
    background: linear-gradient(180deg, #0000aa, #000066);
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 8px;
    text-align: center;
    border-bottom: 1px solid #3333ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    padding: 8px;
}

.nav-links li {
    margin-bottom: 4px;
}

.nav-links a {
    display: block;
    padding: 4px 8px;
    color: #00ff00;
    font-size: 13px;
    border: 1px solid transparent;
    transition: none;
}

.nav-links a:hover {
    background-color: #0000aa;
    border: 1px inset #3333ff;
    color: #ffff00;
    text-decoration: none;
}

.webring {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    color: #aaaaaa;
}

.webring a {
    color: #00ccff;
    font-size: 11px;
}

.stats {
    padding: 8px;
    font-size: 11px;
    color: #aaaaaa;
}

.stats p {
    margin-bottom: 6px;
}

.awards {
    padding: 8px;
    text-align: center;
}

.award-badge {
    background: linear-gradient(180deg, #ffcc00, #ff8800);
    color: #000000;
    font-size: 10px;
    font-weight: bold;
    padding: 4px;
    margin-bottom: 4px;
    border: 2px outset #ffcc00;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.page-title {
    color: #ffff00;
    font-size: 22px;
    text-align: center;
    padding: 8px;
    border-bottom: 2px ridge #3333ff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 #000000;
    background: linear-gradient(180deg, #000066, transparent);
}

.content-box {
    padding: 12px;
    border: 1px ridge #3333ff;
    background-color: #000044;
    line-height: 1.6;
}

.content-box p {
    margin-bottom: 8px;
}

.rainbow-hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #0000ff, #8b00ff);
    margin: 12px 0;
}

.updates-list {
    list-style: disc;
    margin-left: 20px;
    color: #cccccc;
}

.updates-list li {
    margin-bottom: 4px;
}

.updates-list b {
    color: #00ff00;
}

.blink {
    color: #ff0000;
    font-weight: bold;
    animation: blinker 1.5s linear infinite;
}

.about-table {
    width: 100%;
}

.about-photo {
    width: 120px;
    vertical-align: top;
    padding-right: 12px;
}

.photo-placeholder {
    width: 110px;
    height: 130px;
    border: 2px ridge #3333ff;
    background-color: #000033;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #aaaaaa;
    text-align: center;
}

.about-info p {
    margin-bottom: 4px;
    color: #cccccc;
}

.about-info b {
    color: #00ff00;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    padding: 4px 0;
    border-bottom: 1px dotted #333366;
    color: #cccccc;
}

.form-table {
    width: 100%;
}

.form-table td {
    padding: 4px;
    color: #00ff00;
}

.retro-input {
    background-color: #ffffff;
    color: #000000;
    border: 2px inset #999999;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    font-size: 13px;
    padding: 3px 5px;
    width: 250px;
}

.retro-textarea {
    width: 250px;
    height: 80px;
    resize: none;
}

.retro-button {
    background-color: #cccccc;
    color: #000000;
    border: 2px outset #ffffff;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 16px;
    cursor: pointer;
}

.retro-button:hover {
    background-color: #aaaaaa;
}

.retro-button:active {
    border-style: inset;
}

.gb-entry {
    border: 1px ridge #3333ff;
    background-color: #000033;
    padding: 8px;
    margin-bottom: 8px;
}

.gb-header {
    color: #aaaaaa;
    font-size: 12px;
    margin-bottom: 4px;
    border-bottom: 1px dotted #333366;
    padding-bottom: 4px;
}

.gb-header b {
    color: #ffff00;
}

.gb-entry p {
    color: #cccccc;
}

.poll {
    padding: 8px;
    font-size: 12px;
}

.poll p {
    margin-bottom: 6px;
    color: #ffff00;
}

.poll label {
    color: #cccccc;
    font-size: 11px;
    display: block;
    margin-bottom: 3px;
}

.poll .retro-button {
    margin-top: 6px;
    font-size: 11px;
    padding: 2px 10px;
}

.clock {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 8px #00ff00;
}

.mood {
    padding: 10px;
    text-align: center;
}

.mood-emoji {
    font-size: 36px;
    display: block;
}

.mood p {
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 4px;
}

.buttons-88x31 {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.mini-button {
    width: 88px;
    height: 31px;
    border: 1px solid #666666;
    background: linear-gradient(180deg, #999999, #666666);
    color: #000000;
    font-size: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-cell {
    background: linear-gradient(180deg, #000033, #000066);
    text-align: center;
    padding: 15px;
    border-top: 2px ridge #3333ff;
    color: #aaaaaa;
    font-size: 11px;
}

.footer-cell a {
    color: #00ccff;
    font-size: 11px;
}

.footer-cell p {
    margin-bottom: 4px;
}

.footer-marquee {
    color: #ffff00;
    font-size: 12px;
    margin-bottom: 8px;
}

.disclaimer {
    color: #666666;
    font-size: 9px;
    margin-top: 4px;
}

::selection {
    background-color: #0000ff;
    color: #ffffff;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: #00ff00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
    transition: opacity 0.5s;
}
