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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 418px;
    height: 101px;
    object-fit: contain;
}

.gif-container {
    margin: 20px 0;
}

.gif {
    width: 320px;
    height: 100px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #87001d;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: linear-gradient(45deg, #87001d, #ff5050);
    transform: translateY(-2px);
}

.status-panel {
    background: linear-gradient(45deg, #87001d 0%, #ff5050 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.live {
    background: #00ff00;
}

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

.status-text, .security-text {
    font-weight: bold;
    font-size: 14px;
}

.announcement {
    background: rgba(135, 0, 29, 0.2);
    border: 1px solid #ff5050;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.announcement h3 {
    color: #ff5050;
    margin-bottom: 15px;
    font-size: 20px;
}

.announcement p {
    margin-bottom: 10px;
    line-height: 1.6;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #ff5050;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

h3 {
    color: #ff5050;
    margin-bottom: 15px;
    font-size: 20px;
}

h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
}

.section-description {
    text-align: center;
    margin-bottom: 25px;
    color: #cccccc;
}

.mirrors {
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.links-container {
    display: grid;
    gap: 15px;
}

.link-item {
    background: linear-gradient(45deg, rgba(135, 0, 29, 0.3), rgba(255, 80, 80, 0.3));
    border: 1px solid #ff5050;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.4);
}

.mirror-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    word-break: break-all;
    display: block;
    transition: color 0.3s ease;
}

.mirror-link:hover {
    color: #ff5050;
}

.no-links {
    text-align: center;
    padding: 40px;
    color: #87001d;
}

.about-section, .security-section, .faq-section, .support-section {
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid #87001d;
}

.about-content p, .security-content p, .support-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature {
    background: rgba(255, 80, 80, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #87001d;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(135, 0, 29, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ff5050;
}

.pgp-verification {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid #87001d;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.pgp-key {
    font-family: monospace;
    font-size: 12px;
    line-height: 1.8;
    color: #cccccc;
    margin-top: 15px;
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #87001d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #ff5050;
    margin-bottom: 10px;
}

.footer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #87001d;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        width: 300px;
        height: auto;
    }
    
    .gif {
        width: 250px;
        height: auto;
    }
    
    .status-panel {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav {
        gap: 10px;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}