/* ============================================
   STEELY PATE FAN PAGE - Geocities Style CSS
   "Best viewed at 800x600 in Netscape Navigator"
   ============================================ */

/* Star twinkling background */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes rainbow {
    0% { color: #ff0000; }
    16% { color: #ff8800; }
    33% { color: #ffff00; }
    50% { color: #00ff00; }
    66% { color: #0088ff; }
    83% { color: #8800ff; }
    100% { color: #ff0000; }
}

@keyframes rainbow-bg {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; }
    50% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff; }
}

@keyframes fire {
    0% { text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #ff0000, 0 0 80px #ff0000; }
    50% { text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #ff6600, 0 0 80px #ff6600; }
    100% { text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #ffcc00, 0 0 80px #ffcc00; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes scroll-stars {
    from { background-position: 0 0, 0 0, 0 0; }
    to { background-position: -1000px 500px, -400px 200px, -600px 350px; }
}

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

body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    background-color: #000033;
    color: #00ff00;
    background-image:
        radial-gradient(1px 1px at 50px 60px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 120px, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 250px 30px, #ffffaa 50%, transparent 50%),
        radial-gradient(1px 1px at 80px 180px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 300px 90px, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 400px 150px, #aaaaff 50%, transparent 50%),
        radial-gradient(1px 1px at 120px 240px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 350px 200px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 450px 50px, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 500px 250px, #ffffaa 50%, transparent 50%),
        radial-gradient(1px 1px at 180px 300px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 550px 180px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 600px 100px, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 30px 350px, #aaaaff 50%, transparent 50%),
        radial-gradient(1px 1px at 650px 280px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 700px 40px, #ffffff 50%, transparent 50%),
        radial-gradient(1px 1px at 200px 400px, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 750px 320px, #ffffaa 50%, transparent 50%);
    background-repeat: repeat;
    background-size: 800px 450px;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><text y="15" font-size="15">&#9876;</text></svg>'), auto;
}

.blink {
    animation: blink 1s step-end infinite;
}

/* Construction banner */
.construction-banner {
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        #ffff00 10px,
        #ffff00 20px
    );
    text-align: center;
    padding: 8px;
    font-size: 18px;
    color: #ff0000;
    font-weight: bold;
    border-bottom: 3px solid #ff0000;
    text-shadow: 1px 1px 0 #000;
}

/* Main table layout - because it's the 90s! */
.main-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 3px ridge #888888;
}

/* Sidebar */
.sidebar {
    width: 180px;
    background-color: #000066;
    border-right: 3px ridge #888888;
    padding: 10px;
}

.nav-box {
    border: 2px inset #888888;
    background-color: #000044;
    padding: 8px;
    text-align: center;
}

.nav-title {
    color: #ffff00;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    text-decoration: underline;
}

.nav-box a {
    color: #00ffff;
    text-decoration: none;
    font-size: 12px;
    line-height: 2;
}

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

.nav-box a:visited {
    color: #cc88ff;
}

/* Visitor counter */
.visitor-counter {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 5px 0;
}

.counter-digit {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 5px;
    border: 1px inset #444;
    min-width: 18px;
    text-align: center;
}

.counter-label {
    font-size: 10px;
    color: #aaaaaa;
    text-align: center;
}

/* Email me button */
.email-me {
    border: 2px outset #ff00ff;
    background-color: #330033;
    color: #ff00ff;
    font-size: 10px;
    padding: 8px;
    text-align: center;
    font-weight: bold;
}

/* Content area */
.content-area {
    background-color: #000033;
    padding: 15px;
}

/* Marquee */
.marquee-container {
    background-color: #330000;
    border: 2px inset #888;
    padding: 5px;
    margin-bottom: 15px;
}

.marquee-container marquee {
    color: #ffff00;
    font-size: 14px;
    font-weight: bold;
}

/* Title section */
.title-section {
    text-align: center;
    padding: 15px;
    border: 3px double #ffff00;
    background: linear-gradient(180deg, #000033 0%, #000066 50%, #000033 100%);
    margin-bottom: 15px;
}

.main-title {
    font-size: 42px;
    animation: fire 2s ease-in-out infinite;
    color: #ff6600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.title-star {
    animation: sparkle 1s ease-in-out infinite;
    display: inline-block;
    color: #ffff00;
}

.subtitle {
    color: #00ffff;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 5px;
    animation: glow 3s ease-in-out infinite;
}

.subtitle2 {
    color: #aaaaaa;
    font-size: 12px;
}

/* Rainbow HR */
.rainbow-hr {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #0088ff, #8800ff, #ff0000);
    background-size: 200% 100%;
    animation: rainbow-bg 3s linear infinite;
    margin: 15px 0;
}

/* Content boxes */
.welcome-box,
.content-box {
    border: 2px ridge #888888;
    background-color: rgba(0, 0, 50, 0.7);
    padding: 15px;
    margin-bottom: 15px;
}

.welcome-box p,
.content-box p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.section-header {
    color: #ffff00;
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(255, 0, 0, 0.5);
}

/* ASCII art */
.ascii-art-box {
    border: 2px inset #888;
    background-color: #000000;
    padding: 10px;
}

.ascii-art {
    color: #ff8800;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.2;
    text-align: left;
    white-space: pre;
}

/* Reasons list */
.reasons-list p {
    color: #00ff00 !important;
    font-size: 14px !important;
    padding: 5px 10px;
    border-bottom: 1px dashed #333;
}

.reasons-list p:hover {
    background-color: rgba(255, 255, 0, 0.1);
}

/* News items */
.news-item {
    color: #cccccc;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px dashed #333;
}

.news-new {
    color: #ff0000;
    font-weight: bold;
    font-size: 11px;
}

.news-date {
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

/* Poll */
.poll-box {
    border: 2px ridge #888888;
    background-color: rgba(50, 0, 50, 0.7);
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.poll-option {
    color: #00ff00;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    padding: 3px 0;
}

.vote-button {
    background-color: #333;
    color: #00ff00;
    border: 2px outset #888;
    padding: 5px 20px;
    font-family: 'Comic Sans MS', cursive;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}

.vote-button:hover {
    background-color: #555;
}

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

/* Webring */
.webring {
    border: 2px double #888888;
    background-color: #000044;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.webring-title {
    color: #00ffff;
    font-size: 14px;
    margin-bottom: 8px;
}

.webring-nav {
    margin: 0 auto;
}

.webring-link {
    color: #ffff00;
    text-decoration: none;
    font-size: 12px;
    padding: 0 15px;
}

.webring-link:hover {
    color: #ff00ff;
    text-decoration: underline;
}

/* Footer awards */
.footer-awards {
    text-align: center;
    margin: 15px 0;
}

.award-badge {
    display: inline-block;
    border: 2px outset #888;
    background-color: #333300;
    color: #ffff00;
    font-size: 10px;
    padding: 5px 10px;
    margin: 3px;
    animation: sparkle 2s ease-in-out infinite;
}

/* Disclaimer / Footer */
.disclaimer {
    text-align: center;
    border-top: 2px ridge #888;
    padding-top: 10px;
    margin-top: 15px;
}

.disclaimer p {
    color: #666666;
    font-size: 10px;
    margin-bottom: 5px;
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* Bio page */
.bio-section {
    border: 2px ridge #888;
    background-color: rgba(0, 0, 50, 0.7);
    padding: 15px;
    margin-bottom: 15px;
}

.bio-section h3 {
    color: #ff8800;
    font-size: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ff8800;
    padding-bottom: 5px;
}

.bio-section p, .bio-section li {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.7;
}

.bio-section ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.stat-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.stat-table td {
    border: 1px solid #444;
    padding: 5px 10px;
    font-size: 12px;
}

.stat-table td:first-child {
    color: #ffff00;
    font-weight: bold;
    width: 40%;
    background-color: rgba(0, 0, 100, 0.5);
}

.stat-table td:last-child {
    color: #00ff00;
}

/* Quotes page */
.quote-box {
    border: 2px ridge #888;
    background-color: rgba(50, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.quote-box blockquote {
    color: #ffcc00;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 3px solid #ff8800;
    line-height: 1.6;
}

.quote-box .quote-context {
    color: #999999;
    font-size: 12px;
    text-align: right;
}

/* Gallery page */
.gallery-item {
    border: 3px ridge #888;
    background-color: #000000;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-item pre {
    color: #ff8800;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.1;
    display: inline-block;
    text-align: left;
}

.gallery-item .caption {
    color: #00ffff;
    font-size: 12px;
    margin-top: 10px;
    font-style: italic;
}

/* Guestbook page */
.guestbook-entry {
    border: 1px solid #444;
    background-color: rgba(0, 0, 50, 0.5);
    padding: 10px;
    margin-bottom: 10px;
}

.guestbook-entry .gb-name {
    color: #ff00ff;
    font-weight: bold;
    font-size: 13px;
}

.guestbook-entry .gb-date {
    color: #888;
    font-size: 10px;
    float: right;
}

.guestbook-entry .gb-message {
    color: #dddddd;
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.5;
}

.guestbook-form {
    border: 2px ridge #888;
    background-color: rgba(0, 50, 0, 0.3);
    padding: 15px;
    margin-bottom: 15px;
}

.guestbook-form label {
    color: #ffff00;
    font-size: 12px;
    display: block;
    margin-top: 8px;
}

.guestbook-form input[type="text"],
.guestbook-form textarea {
    width: 100%;
    background-color: #000;
    color: #00ff00;
    border: 2px inset #888;
    padding: 5px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 12px;
    margin-top: 3px;
}

.guestbook-form textarea {
    height: 80px;
    resize: vertical;
}

.guestbook-form input[type="submit"] {
    background-color: #333;
    color: #00ff00;
    border: 2px outset #888;
    padding: 5px 25px;
    font-family: 'Comic Sans MS', cursive;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    font-size: 13px;
}

/* Links page */
.links-category {
    border: 2px ridge #888;
    background-color: rgba(0, 0, 50, 0.7);
    padding: 15px;
    margin-bottom: 15px;
}

.links-category h3 {
    color: #ff8800;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ff8800;
    padding-bottom: 5px;
}

.links-category a {
    color: #00ffff;
    font-size: 12px;
}

.links-category a:hover {
    color: #ff00ff;
}

.links-category p {
    color: #bbbbbb;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.link-new {
    color: #ff0000;
    font-weight: bold;
    font-size: 10px;
    animation: blink 1s step-end infinite;
}

/* Responsive-ish (but keeping it janky) */
@media (max-width: 700px) {
    .main-table {
        display: block;
    }

    .main-table tr {
        display: block;
    }

    .sidebar {
        display: block;
        width: 100%;
        border-right: none;
        border-bottom: 3px ridge #888;
    }

    .content-area {
        display: block;
        width: 100%;
    }

    .main-title {
        font-size: 28px;
    }

    .ascii-art {
        font-size: 8px;
    }
}
