body {
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    word-break: break-all;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
}

.logo-container {
    flex: 1;
}

.logo {
    max-height: 80px;
}

.security-notice {
    background-color: #17191b;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    max-width: 300px;
}

.security-notice h3 {
    margin-top: 0;
    color: #ff6b6b;
}

main {
    margin-bottom: 40px;
}

.mirrors {
    background-color: #17191b;
    color: #fff;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.mirrors h2 {
    margin-top: 0;
    color: #4ecdc4;
}

.mirror-list {
    margin: 20px 0;
}

.mirror-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #25282c;
    margin-bottom: 10px;
    border-radius: 3px;
}

.mirror-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;

}

.mirror-link:hover {
    text-decoration: underline;
}

.status-indicator {
    font-size: 0.9em;
    padding: 3px 8px;
    border-radius: 3px;
}

.online {
    background-color: #2ecc71;
    color: white;
}

.offline {
    background-color: #e74c3c;
    color: white;
}

.pgp-verification {
    margin-top: 25px;
}

.pgp-verification h3 {
    color: #4ecdc4;
}

.pgp-key {
    width: 100%;
    height: 150px;
    background-color: #25282c;
    color: #ccc;
    border: none;
    padding: 10px;
    font-family: monospace;
    border-radius: 3px;
    resize: none;
}

.announcement {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.announcement h2 {
    margin-top: 0;
    color: #17191b;
}

.announcement-content {
    padding: 10px 0;
}

footer {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.disclaimer {
    margin-bottom: 15px;
    font-style: italic;
}

.last-update {
    font-size: 0.8em;
}

/* New styles for additional content */
h1, h2, h3 {
    color: #17191b;
}

.guides, .faq {
    margin: 40px 0;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.guide-cards, .faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.guide-card, .faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.guide-card h3, .faq-item h3 {
    color: #4ecdc4;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #17191b;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.verification-steps {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 10px;
}

article {
    margin-bottom: 25px;
}

/* Dark section styles */
.mirrors h1 {
    color: #fff;
    margin-top: 0;
}