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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #303948;
    color: #FFFFFF;
    line-height: 1.6;
}

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

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 20px;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    display: block;
}

.security-banner {
    flex: 1;
    min-width: 300px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(60, 190, 242, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.gif-placeholder {
    margin-right: 15px;
}

.security-text {
    font-size: 0.9rem;
}

.security-alert {
    color: #3cbef2;
    font-weight: bold;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #3cbef2;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 255, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

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

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

.status-text {
    font-weight: bold;
}

.mirrors-section {
    margin-bottom: 40px;
}

.mirrors-section h2 {
    color: #3cbef2;
    margin-bottom: 15px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.mirror-description {
    margin-bottom: 20px;
    opacity: 0.9;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mirror-link-block {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #3cbef2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mirror-number {
    font-weight: bold;
    color: #3cbef2;
    min-width: 100px;
}

.onion-link {
    color: #FFFFFF;
    text-decoration: none;
    font-family: monospace;
    margin: 0 15px;
    flex: 1;
    word-break: break-all;
}

.onion-link:hover {
    color: #3cbef2;
    text-decoration: underline;
}

.mirror-status {
    color: #00ff00;
    font-size: 0.9rem;
}

.checkmark {
    font-weight: bold;
}

.pgp-verification {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.pgp-verification h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.pgp-key-block {
    width: 100%;
    height: 120px;
    background-color: #1a1f29;
    color: #cccccc;
    border: 1px solid #3cbef2;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    font-size: 0.8rem;
    resize: none;
    margin-bottom: 10px;
}

.preview-section {
    margin-bottom: 40px;
}

.preview-section h2 {
    color: #3cbef2;
    margin-bottom: 15px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.preview-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.preview-item {
    text-align: center;
}

.preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #3cbef2;
    margin-bottom: 10px;
}

.features-section {
    margin-bottom: 40px;
}

.features-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
}

.feature h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.guide-section {
    margin-bottom: 40px;
}

.guide-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.guide-steps {
    display: grid;
    gap: 20px;
}

.step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #3cbef2;
}

.step h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.security-section {
    margin-bottom: 40px;
}

.security-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.security-tips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tip {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
}

.tip h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
}

.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3cbef2;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    
    .security-banner {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .gif-placeholder {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mirror-link-block {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .onion-link {
        margin: 10px 0;
    }
    
    .preview-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-tips {
        grid-template-columns: 1fr;
    }
}