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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #303948;
    min-height: 100vh;
}

.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: 1px solid #3cbef2;
    margin-bottom: 40px;
}

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

.tagline {
    font-size: 14px;
    color: #3cbef2;
    font-weight: 300;
}

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

.main-content {
    padding-bottom: 40px;
}

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

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

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.status-dot.online {
    background-color: #4CAF50;
    animation: pulse 2s infinite;
}

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

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

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

.warning {
    background-color: #ff6b6b;
    color: #FFFFFF;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.mirror-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(60, 190, 242, 0.1);
    border: 1px solid #3cbef2;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background-color: rgba(60, 190, 242, 0.2);
    transform: translateX(5px);
}

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

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

.link:hover {
    color: #3cbef2;
    text-decoration: underline;
}

.status-badge {
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.error {
    color: #ff6b6b;
    text-align: center;
    padding: 20px;
}

.about-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

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

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

.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.security-section {
    margin-bottom: 50px;
}

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

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

.feature-item {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

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

.payment-section {
    margin-bottom: 50px;
}

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

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

.payment-method {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

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

.transaction-info {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

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

.screenshots {
    margin-bottom: 50px;
}

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

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

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

.screenshot-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #3cbef2;
    transition: transform 0.3s ease;
}

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

.screenshot-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #3cbef2;
}

.guide-section {
    margin-bottom: 50px;
}

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

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

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

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

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #3cbef2;
}

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

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card li:last-child {
    border-bottom: none;
}

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

.footer-content {
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .mirror-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .security-features,
    .payment-methods,
    .guide-steps {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 20px;
    }
}