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

body {
    font-family: 'Courier New', monospace;
    background: #0a0f1c;
    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;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(48, 57, 72, 0.3);
    border-radius: 10px;
    border: 1px solid #3cbef2;
}

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

.logo {
    width: 165px;
    height: 60px;
}

.secure-gif {
    width: 320px;
    height: 100px;
    border-radius: 5px;
}

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

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

.status-text {
    font-size: 14px;
    color: #3cbef2;
}

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

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

.neon-title {
    font-size: 3rem;
    color: #3cbef2;
    text-shadow: 0 0 10px #3cbef2, 0 0 20px #3cbef2;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #3cbef2, 0 0 20px #3cbef2; }
    to { text-shadow: 0 0 15px #3cbef2, 0 0 30px #3cbef2, 0 0 40px #3cbef2; }
}

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    padding: 15px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 24px;
}

.section-title {
    font-size: 2rem;
    color: #3cbef2;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #3cbef2;
    padding-bottom: 10px;
}

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

.mirror-card {
    background: rgba(48, 57, 72, 0.5);
    border: 1px solid #3cbef2;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mirror-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.3);
}

.mirror-number {
    background: #3cbef2;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.mirror-link {
    word-break: break-all;
    font-family: monospace;
    background: #000;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    border: 1px solid #444;
}

.copy-btn {
    background: linear-gradient(45deg, #3cbef2, #2a8db8);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(45deg, #2a8db8, #3cbef2);
}

.about-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(48, 57, 72, 0.2);
    border-radius: 10px;
}

.about-content h3 {
    color: #3cbef2;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

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

.feature-item {
    padding: 20px;
    background: rgba(60, 190, 242, 0.1);
    border-radius: 5px;
    border-left: 3px solid #3cbef2;
}

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

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

.guide-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(48, 57, 72, 0.2);
    border-radius: 10px;
}

.step-number {
    background: #3cbef2;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

.payment-method {
    padding: 25px;
    background: rgba(48, 57, 72, 0.3);
    border-radius: 10px;
    border: 1px solid #3cbef2;
}

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

.payment-method ul {
    margin-top: 15px;
    padding-left: 20px;
}

.payment-method li {
    margin-bottom: 8px;
}

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

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

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

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

.preview-item span {
    display: block;
    margin-top: 10px;
    color: #cccccc;
}

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

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(48, 57, 72, 0.2);
    border-radius: 10px;
    border-left: 3px solid #3cbef2;
}

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

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(60, 190, 242, 0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    color: #3cbef2;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
}

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

.info-card {
    background: rgba(48, 57, 72, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #3cbef2;
}

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

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

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
}

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

.footer {
    background: rgba(48, 57, 72, 0.5);
    padding: 40px 20px 20px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px solid #3cbef2;
}

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

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

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

.footer-section li {
    margin-bottom: 8px;
}

.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 rgba(60, 190, 242, 0.3);
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
    }
    
    .neon-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}