body {
    background-color: #000000;
    text-align: center;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    padding: 20px;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                      linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.98; }
    50% { opacity: 1; }
    100% { opacity: 0.99; }
}

.glow {
    font-size: 60px;
    text-shadow: 0 0 10px #fff, 0 0 20px #8B008B;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

.main-layout {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
}

.central-theme {
    padding: 40px;
    flex-grow: 1;
    text-align: left;
}

.system-logs h2 {
    font-size: 18px;
    color: #ff00ff;
    border-left: 4px solid #8B008B;
    padding-left: 10px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
}

.system-logs p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.bottom-panels-wrapper {
    display: flex;
    border-top: 1px solid #ffffff;
    background: rgba(139, 0, 139, 0.1);
}

.side-panel {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.side-panel:first-child {
    border-right: 1px solid #ffffff;
}

.side-panel h3 {
    font-size: 14px;
    color: #ff00ff;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.side-panel a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    margin-right: 15px;
    margin-top: 10px;
    transition: 0.3s;
}

.side-panel a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    padding-left: 3px;
}

hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 30px 0;
}

.linkload {
    color: #ffff00;
    isplay: block;
    margin-bottom: 15px;
    text-decoration: none;
    padding: 10px;
}

.linkload:hover {
    color: #fff;
    text-shadow: 0 0 5px #0000FF;
}

.linkmail {
    font-size: 50;
}
