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

body {
    font-family: 'Courier New', monospace;
    background-color: #303948;
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2a323d;
    border: 1px solid #3cbef2;
    box-shadow: 0 0 20px rgba(60, 190, 242, 0.3);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #3cbef2;
}

.logo-container {
    flex-shrink: 0;
}

.header-gif img {
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.main-nav {
    background-color: #252b35;
    padding: 10px 0;
    margin: 20px 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 10px;
}

.main-nav a {
    color: #3cbef2;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    border-color: #3cbef2;
    background-color: rgba(60, 190, 242, 0.1);
}

.status-panel {
    background-color: #252b35;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #3cbef2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-dot.online {
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.uptime-stats {
    color: #cccccc;
    font-size: 12px;
}

section {
    margin: 40px 0;
    padding: 20px;
    background-color: #252b35;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 10px;
    font-size: 24px;
}

.mirrors-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.mirror-link {
    display: flex;
    align-items: center;
    background-color: #1a1f28;
    padding: 15px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.link-icon {
    margin-right: 10px;
    font-size: 18px;
}

.onion-link {
    color: #3cbef2;
    text-decoration: none;
    flex-grow: 1;
    word-break: break-all;
}

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

.link-status {
    background-color: #00aa00;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 10px;
}

.security-warning {
    background-color: #ff4444;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
}

.pgp-verification {
    background-color: #1a1f28;
    padding: 15px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
    margin-top: 20px;
}

.pgp-verification code {
    color: #cccccc;
    font-family: monospace;
    display: block;
    margin-top: 10px;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #1a1f28;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.stat-item h3 {
    color: #3cbef2;
    font-size: 32px;
    margin-bottom: 10px;
}

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

.feature-card {
    background-color: #1a1f28;
    padding: 20px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

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

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

.preview-item {
    text-align: center;
    background-color: #1a1f28;
    padding: 10px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.preview-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #3cbef2;
    margin-bottom: 10px;
}

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

.tip {
    background-color: #1a1f28;
    padding: 15px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

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

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.payment-method {
    background-color: #1a1f28;
    padding: 20px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.payment-method h3 {
    color: #3cbef2;
    margin-bottom: 15px;
}

.payment-method ul {
    list-style: none;
    margin-top: 10px;
}

.payment-method li {
    padding: 5px 0;
    border-bottom: 1px dashed #3cbef2;
}

.faq-item {
    background-color: #1a1f28;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

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

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

.support-option {
    background-color: #1a1f28;
    padding: 20px;
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

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

footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #3cbef2;
}

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

.footer-section h3 {
    color: #3cbef2;
    margin-bottom: 15px;
}

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

.footer-section li {
    margin: 5px 0;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #3cbef2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3cbef2;
    color: #cccccc;
    font-size: 12px;
}

.disclaimer {
    margin-top: 10px;
    font-style: italic;
    color: #888888;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-gif {
        margin-top: 20px;
    }
    
    .status-panel {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 5px 0;
    }
    
    section {
        padding: 15px;
        margin: 20px 0;
    }
}