/* style.css - XP NetHub - Your Gateway to The Internet */
body {
    background: #000000;
    color: #00FF00;
    font-family: "Arial", "Helvetica", sans-serif;
    margin: 0;
    padding: 0;
}

a:link {
    color: #00FFFF;
    text-decoration: underline;
}

a:visited {
    color: #FF00FF;
    text-decoration: underline;
}

a:hover {
    color: #FFFF00;
    background: #003300;
    text-decoration: none;
}

h1 {
    font-size: 32px;
    color: #00FF00;
    font-family: "Arial Black", sans-serif;
    text-align: center;
}

h2 {
    font-size: 18px;
    color: #00FFFF;
    font-family: "Arial", sans-serif;
    text-align: center;
}

.menu-cell {
    background: #000033;
    border: 2px outset #0066CC;
    padding: 8px;
}

.menu-cell a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 4px;
}

.menu-cell a:hover {
    background: #0066CC;
    color: #FFFF00;
}

.content-cell {
    background: #000011;
    border: 2px inset #0066CC;
    padding: 15px;
    vertical-align: top;
}

.blink {
    animation: blink 1s infinite;
}

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

.marquee-dark {
    background: #000066;
    color: #FFFF00;
    padding: 8px;
    border: 2px dotted #00FFFF;
    font-weight: bold;
}

.footer {
    background: #000044;
    color: #00FF00;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.badges img {
    border: 1px solid #00FF00;
    margin: 2px;
}

.download-list {
    background: #000033;
    padding: 10px;
    border: 2px groove #0066CC;
}

.music-list {
    background: #000033;
    padding: 10px;
    border: 2px groove #0066CC;
}

.forum-post {
    background: #000044;
    padding: 8px;
    margin: 5px 0;
    border-left: 4px solid #00FF00;
}

.video-container {
    background: #000033;
    padding: 10px;
    margin: 10px;
    border: 2px ridge #00FFFF;
    text-align: center;
}

.video-poster {
    border: 3px outset #0066CC;
    cursor: pointer;
}

.now-playing {
    background: #000066;
    color: #FFFF00;
    padding: 8px;
    border: 2px dashed #00FF00;
}

.music-controls button {
    background: #006600;
    color: #FFFFFF;
    border: 2px outset #00FF00;
    padding: 5px 10px;
    cursor: pointer;
    margin: 2px;
}

.music-controls button:hover {
    background: #00AA00;
    border: 2px inset #00FF00;
}

#clippy-gif {
    border: 2px ridge #FF00FF;
}

#loading-box {
    background: #000066;
    color: #FFFF00;
    padding: 15px;
    border: 3px double #00FFFF;
    text-align: center;
    display: none;
}

.guestbook-info, .chat-info {
    background: #000033;
    padding: 10px;
    border: 2px groove #0066CC;
}

.contact-form {
    background: #000033;
    padding: 15px;
    border: 2px groove #0066CC;
}

.disabled-link {
    color: #666666 !important;
    text-decoration: line-through !important;
}

#intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#intro-logo {
    font-size: 48px;
    color: #00FF00;
    font-family: "Arial Black", sans-serif;
    text-shadow: 0 0 10px #00FF00;
}

#intro-text {
    font-size: 24px;
    color: #00FFFF;
    font-family: "Arial", sans-serif;
    margin-top: 20px;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 255, 255, 0.1) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
}

.tv-noise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.05) 0px,
        rgba(0, 255, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
}