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

body {
    background-color: #111;
    color: #FFFFFF;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #222;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

header {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo-icon {
    font-size: 2.5rem;
}

h1 {
    color: #20c15a;
    font-size: 2rem;
}

.beta-tag {
    background-color: #ff5050;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.security-alert {
    background-color: #331010;
    border-left: 4px solid #ff5050;
    padding: 10px 15px;
    color: #ff9a9a;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-icon {
    font-size: 1.2rem;
}

h2 {
    color: #20c15a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.current-status {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.status-online {
    color: #20c15a;
    font-weight: bold;
}

.uptime-stats {
    margin-top: 10px;
}

.uptime-bar {
    height: 8px;
    background-color: #20c15a;
    border-radius: 4px;
    margin-bottom: 5px;
}

.official-links {
    margin-bottom: 30px;
}

.link-list {
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #333;
    background-color: #1a1a1a;
}

.link-item:last-child {
    border-bottom: none;
}

.link-number {
    background-color: #333;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
}

.link-url {
    color: #20c15a;
    text-decoration: none;
    flex-grow: 1;
    font-family: monospace;
}

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

.link-status {
    margin-right: 15px;
    font-size: 0.9rem;
}

.link-status.online {
    color: #20c15a;
}

.copy-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.copy-btn:hover {
    background-color: #444;
}

.pgp-verify {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.pgp-key {
    width: 100%;
    height: 150px;
    background-color: #111;
    color: #ccc;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    resize: none;
    margin-bottom: 10px;
}

.security-tips {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.security-tips ul {
    list-style-type: none;
}

.security-tips li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .link-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .link-url {
        width: 100%;
        order: 1;
        margin-top: 10px;
    }
}

/* Добавляем после существующих стилей */

.section-description {
    color: #ccc;
    margin-bottom: 20px;
}

.faq-section {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    color: #20c15a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #ddd;
    padding-left: 15px;
}

.opsec-tips {
    margin-top: 30px;
}

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

.tip-item {
    background-color: #252525;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #ff5050;
}

.tip-item h4 {
    color: #ff5050;
    margin-bottom: 10px;
}

.market-features {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.feature-item {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.feature-item h3 {
    color: #20c15a;
    margin-bottom: 10px;
}

.community-links {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.community-item {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.community-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.community-item h3 {
    color: #20c15a;
    margin-bottom: 10px;
}

.community-link {
    color: #ff5050;
    word-break: break-all;
    font-family: monospace;
}

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

.footer-section h3 {
    color: #20c15a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.key-info {
    background-color: #111;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-family: monospace;
    font-size: 0.9rem;
}

.verification-steps {
    margin: 15px 0 20px 20px;
}

.status-description {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.9rem;
}