* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #303948;
    color: #FFFFFF;
    font-family: monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 900px;
    padding: 2rem 0;
}
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}
.logo {
    width: 165px;
    height: 60px;
}
.main-content {
    text-align: center;
}
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #3cbef2;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.status-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.links-container {
    margin-bottom: 3rem;
}
.link-item {
    margin: 1.5rem 0;
}
.mirror-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.mirror-link:hover {
    color: #3cbef2;
    border-bottom-color: #3cbef2;
}

a {
    color: #3cbef2;
    text-decoration: none;
    border-bottom: 1px solid rgba(60, 190, 242, 0.4);
    transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
a:hover,
a:focus {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    opacity: 0.9;
}
a:active {
    opacity: 0.7;
}
/* Anchor behavior inside content */
.content-block a {
    font-size: 0.85rem;
    word-break: break-word;
}
/* External / reference links stay subdued */
.content-block a[rel~="nofollow"] {
    opacity: 0.85;
}
/* Ensure mirror links remain visually distinct */
.mirror-link {
    border-bottom: 1px solid transparent;
    color: #FFFFFF;
}
.mirror-link:hover {
    color: #3cbef2;
    border-bottom-color: #3cbef2;
}
.content-section {
    text-align: left;
    margin-bottom: 3rem;
}
.content-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.content-block:last-child {
    border-bottom: none;
}
.content-block h1 {
    color: #3cbef2;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}
.content-block h2 {
    color: #3cbef2;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.content-block p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.notice-line {
    flex: 1;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0.3;
}
.security-notice p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.7;
    text-align: center;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    .content-block {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    .content-block h1 {
        font-size: 1rem;
    }
    .content-block h2 {
        font-size: 0.85rem;
    }
    .security-notice {
        flex-direction: column;
        gap: 0.5rem;
    }
    .notice-line {
        width: 100%;
    }
}