* {
    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: center;
    padding: 20px 0;
    border-bottom: 2px solid #3cbef2;
    margin-bottom: 30px;
}

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

.beta-tag {
    background: #3cbef2;
    color: #303948;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.security-badge img {
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

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

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

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background-color: #4CAF50;
}

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

.status-text {
    font-weight: bold;
    color: #4CAF50;
}

.about-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    text-align: center;
}

.about-section p {
    margin-bottom: 20px;
    text-align: justify;
}

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

.stat-item {
    text-align: center;
    background: rgba(60, 190, 242, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

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

.mirrors-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #3cbef2;
}

.mirrors-section h2 {
    color: #3cbef2;
    margin-bottom: 15px;
    text-align: center;
}

.mirror-description {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.8;
}

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

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

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

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

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

.mirror-status {
    background: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.security-protocols {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

.security-protocols h3 {
    color: #3cbef2;
    margin-bottom: 20px;
    text-align: center;
}

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

.protocol {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.protocol h4 {
    color: #3cbef2;
    margin-bottom: 10px;
}

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

.features-section h2 {
    color: #3cbef2;
    text-align: center;
    margin-bottom: 40px;
}

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

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

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

.payment-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.payment-section h2 {
    color: #3cbef2;
    text-align: center;
    margin-bottom: 30px;
}

.payment-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

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

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

.payment-method li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.payment-method li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

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

.preview-section h2 {
    color: #3cbef2;
    text-align: center;
    margin-bottom: 25px;
}

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

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

.preview-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #3cbef2;
    transition: transform 0.3s;
}

.preview-img:hover {
    transform: scale(1.05);
}

.preview-caption {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.guide-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.guide-section h2 {
    color: #3cbef2;
    text-align: center;
    margin-bottom: 40px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

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

.faq-section h2 {
    color: #3cbef2;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
}

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

.footer {
    border-top: 2px solid #3cbef2;
    padding-top: 40px;
    margin-top: 60px;
}

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

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

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

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

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

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

.crypto-badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.crypto-badge {
    background: #3cbef2;
    color: #303948;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(60, 190, 242, 0.3);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mirror-link {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .onion-link {
        margin: 10px 0;
    }
    
    .features-grid,
    .payment-comparison,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}