body {
    background-color: #0a0a0a;
    color: #00ff41;
    font-family: 'VT323', monospace;
    font-size: 20px;
    margin: 0;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(10, 20, 10, 0.5);
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px #00ff41, 0 0 25px #00ff41 inset;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUN+lYIAAAAGnRSTlIAAAAAAAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHkixjRAAAABzSURBVBgZ7cEBAQAAAIIg/w80jAAAAAElFTuSuQmCC');
    opacity: 0.05;
    animation: staticFlicker 8s infinite alternate steps(10);
    pointer-events: none;
    z-index: 1;
}

@keyframes staticFlicker {
    0% { opacity: 0.05; }
    10% { opacity: 0.1; }
    20% { opacity: 0.07; }
    30% { opacity: 0.12; }
    40% { opacity: 0.06; }
    50% { opacity: 0.11; }
    60% { opacity: 0.08; }
    70% { opacity: 0.13; }
    80% { opacity: 0.09; }
    90% { opacity: 0.14; }
    100% { opacity: 0.05; }
}

header {
    text-align: center;
    border-bottom: 2px solid #00ff41;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #00ff41;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 1px solid #005a17;
    padding-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00ff41, 0 0 10px #00ff41;
    display: flex;
    align-items: center;
}

/* === NEW ICON STYLES === */
h2 i {
    margin-right: 15px;
    font-size: 0.8em;
    text-shadow: none; /* Remove glow from icon to make it crisp */
}

.connect-info-box {
    border: 2px dashed #ff0000;
    padding: 15px;
    margin-top: 20px;
    background-color: rgba(255, 0, 0, 0.1);
}

.ip-address {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff4848;
    text-shadow: 0 0 5px #ff0000;
}

.content-box {
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #005a17;
    background-color: #000;
}

.content-box.warning {
    border-color: #ff0000;
    color: #ff4848;
}

.content-box.warning h2 {
    color: #ff4848;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
    border-bottom-color: #8b0000;
}

.content-box.warning h2 i {
    color: #ff4848;
}

/* === NEW WEATHER BOX STYLE === */
.content-box.weather-box {
    border-color: #7df9ff;
    color: #7df9ff;
    box-shadow: 0 0 10px #7df9ff inset;
}

.content-box.weather-box h2 {
    color: #7df9ff;
    text-shadow: 0 0 5px #7df9ff, 0 0 10px #7df9ff;
    border-bottom-color: #00a2a8;
}

.content-box.weather-box h2 i {
    color: #7df9ff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mod-list {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #005a17;
    padding: 10px;
    background-color: #051105;
    word-break: break-all;
}

.mod-list::-webkit-scrollbar {
    width: 10px;
}
.mod-list::-webkit-scrollbar-track {
    background: #000;
    border-left: 1px solid #005a17;
}
.mod-list::-webkit-scrollbar-thumb {
    background: #00ff41;
}
.mod-list::-webkit-scrollbar-thumb:hover {
    background: #5eff8a;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    border: 2px solid #00ff41;
    max-width: 100%;
    height: auto;
    width: 400px;
    object-fit: cover;
}

footer {
    text-align: center;
    border-top: 2px solid #00ff41;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

.retro-font {
    color: #008f25;
}

.status-banner {
    display: block;
    margin: 15px auto;
    max-width: 100%;
}

.discord-widget-container {
    text-align: center;
}

.discord-widget-container iframe {
    max-width: 100%;
    border: 2px solid #005a17;
    border-radius: 4px;
}

.typing-cursor::after {
    content: '_';
    display: inline-block;
    margin-left: 5px;
    animation: blink 0.7s infinite;
    color: #00ff41;
}

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