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

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 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: 20px;
    padding: 20px;
    background: linear-gradient(90deg, #87001d 0%, #ff5050 50%, #87001d 100%);
    border-radius: 15px;
    border: 2px solid #ff5050;
}

.logo {
    width: 418px;
    height: 101px;
    margin-bottom: 20px;
}

.gif-banner {
    width: 320px;
    height: 100px;
    border: 3px solid #ff5050;
    border-radius: 10px;
}

.navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(135, 0, 29, 0.2);
    border-radius: 10px;
    border: 1px solid #ff5050;
}

.navigation a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

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

.status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(135, 0, 29, 0.2);
    border-radius: 10px;
    border: 1px solid #ff5050;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.status-text {
    font-weight: bold;
    margin-right: 20px;
}

.encryption-badge {
    background: linear-gradient(45deg, #87001d, #ff5050);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.info-panel {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #87001d;
    margin-bottom: 30px;
    text-align: center;
}

.info-panel h2 {
    color: #ff5050;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
}

.warning-text {
    color: #ff5050;
    margin-bottom: 25px;
    font-style: italic;
}

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

.mirror-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(135, 0, 29, 0.3);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ff5050;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(255, 80, 80, 0.3);
    transform: translateX(5px);
}

.link-text {
    word-break: break-all;
    color: #FFFFFF;
    font-family: monospace;
    font-size: 14px;
}

.copy-btn {
    background: linear-gradient(45deg, #87001d, #ff5050);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 80, 80, 0.5);
}

.content-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #87001d;
    margin-bottom: 30px;
}

.content-section h2 {
    color: #ff5050;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
}

.content-section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.3), rgba(255, 80, 80, 0.3));
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #87001d;
}

.feature-card h3 {
    color: #ff5050;
    margin-bottom: 15px;
}

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

.security-item {
    background: rgba(135, 0, 29, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ff5050;
}

.security-item h4 {
    color: #ff5050;
    margin-bottom: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.faq-item {
    background: rgba(135, 0, 29, 0.15);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #87001d;
}

.faq-item h4 {
    color: #ff5050;
    margin-bottom: 15px;
}

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

.security-notice h4 {
    color: #ff5050;
    margin-bottom: 15px;
    text-align: center;
}

.security-notice p {
    margin: 8px 0;
    font-size: 14px;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #87001d;
    font-size: 12px;
    border-top: 1px solid #ff5050;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .header {
        padding: 15px;
    }
    
    .logo {
        width: 300px;
        height: auto;
    }
    
    .gif-banner {
        width: 280px;
        height: auto;
    }
    
    .navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .mirror-link {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid,
    .security-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}