* {
    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: 0 20px;
}

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

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

.logo {
    width: 165px;
    height: 60px;
    object-fit: contain;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(60, 190, 242, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.promo-gif .gif {
    width: 320px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.main-content {
    margin-bottom: 60px;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3cbef2, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #3cbef2;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.mirrors-section {
    margin-bottom: 60px;
}

.mirrors-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.mirror-description {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.security-alert {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.security-alert h3 {
    color: #ffc107;
    margin-bottom: 10px;
}

.security-alert p {
    color: #ffc107;
}

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

.mirror-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.3);
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3cbef2;
}

.mirror-number {
    background: #3cbef2;
    color: #303948;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

.link {
    color: #3cbef2;
    text-decoration: none;
    flex: 1;
    word-break: break-all;
    font-family: monospace;
}

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

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-badge.online {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.about-section, .guide-section, .payment-section, .faq-section, .security-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.about-section h2, .guide-section h2, .payment-section h2, .faq-section h2, .security-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #3cbef2;
}

.about-content h3, .security-content h3 {
    color: #3cbef2;
    margin: 20px 0 10px 0;
}

.about-content ul, .payment-method ul {
    list-style: none;
    padding-left: 20px;
}

.about-content li, .payment-method li {
    margin-bottom: 8px;
    position: relative;
}

.about-content li:before, .payment-method li:before {
    content: "✓";
    color: #3cbef2;
    position: absolute;
    left: -20px;
}

.features {
    margin-bottom: 60px;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #3cbef2;
}

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

.feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.feature p {
    color: #cccccc;
}

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

.step {
    text-align: center;
    padding: 25px;
    background: rgba(60, 190, 242, 0.1);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3cbef2;
    color: #303948;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 40px;
    margin-bottom: 15px;
}

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

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

.payment-method {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.crypto-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.payment-method ul {
    text-align: left;
    margin-top: 15px;
}

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

.preview-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #3cbef2;
}

.preview-description {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.preview-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.preview-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(60, 190, 242, 0.3);
    margin-bottom: 15px;
}

.preview-item span {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3cbef2;
}

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

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

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

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

.tip {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 10px;
}

.security-notice {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.security-notice p {
    color: #ffc107;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section, .guide-section, .payment-section, .faq-section, .security-section {
        padding: 20px;
    }
    
    .features-grid, .guide-steps, .payment-grid, .faq-grid, .security-tips {
        grid-template-columns: 1fr;
    }
}