:root {
    --primary: #20c15a;
    --primary-dark: #18a04a;
    --accent: #ff5050;
    --text: #ffffff;
    --bg: #121212;
    --card-bg: #1e1e1e;
    --border: #2e2e2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary);
}

.version {
    font-size: 14px;
    color: #888;
}

.security-notice {
    background-color: rgba(32, 193, 90, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    border-left: 3px solid var(--primary);
}

.lock-icon {
    margin-right: 5px;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--card-bg);
    border-radius: 5px;
    margin-bottom: 30px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.last-updated {
    margin-left: auto;
    font-size: 14px;
    color: #888;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border);
}

.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mirror {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--card-bg);
    border-radius: 5px;
    gap: 15px;
}

.url {
    font-family: monospace;
    flex-grow: 1;
}

.status-badge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}

.status-badge.verified {
    background-color: rgba(32, 193, 90, 0.2);
    color: var(--primary);
}

.status-badge.unverified {
    background-color: rgba(255, 80, 80, 0.2);
    color: var(--accent);
}

.copy-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background-color: var(--primary-dark);
}

.pgp-block {
    position: relative;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.pgp-block pre {
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 15px;
}

.warning {
    color: var(--accent);
    font-weight: bold;
    font-size: 14px;
}

.announcement {
    background-color: var(--card-bg);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.date {
    color: #888;
}

.importance {
    font-weight: bold;
}

.importance.high {
    color: var(--accent);
}

.importance.medium {
    color: orange;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.disclaimer p {
    margin-bottom: 10px;
    color: #aaa;
}

.security-tips {
    margin-top: 20px;
}

.security-tips h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.security-tips ul {
    list-style-position: inside;
    color: #aaa;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .mirror {
        flex-wrap: wrap;
    }

    .status-badge {
        order: 1;
    }

    .copy-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* Previous styles remain the same, adding these new ones */

.section-description {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 15px;
}

.guide-step, .tip {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.guide-step h3, .tip h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.guide-step pre {
    background-color: #000;
    padding: 10px;
    border-radius: 3px;
    overflow-x: auto;
    margin: 10px 0;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 5px;
    overflow: hidden;
}

.faq-item h3 {
    padding: 15px;
    cursor: pointer;
    background-color: rgba(32, 193, 90, 0.1);
    margin: 0;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 20px;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 1000px;
}

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

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-step pre {
        font-size: 12px;
    }
}

/* Add this to your existing CSS */
.logo-image {
    height: 40px; /* Adjust based on your actual logo size */
    width: auto;
    vertical-align: middle;
}

/* Update the logo container to better handle the image */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Adjust header layout for the image logo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .logo-image {
        height: 30px;
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}