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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: #181a20;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #2777ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #23252e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

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

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

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-gif {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.intro-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2777ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.links-section {
    margin-bottom: 4rem;
}

.links-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.links-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.link-card {
    background: #23252e;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.link-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #2777ff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.market-link {
    color: #2777ff;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
    word-break: break-all;
}

.market-link:hover {
    color: #00ff88;
}

.link-status {
    color: #00ff88;
    font-size: 0.9rem;
}

.about-section, .security-section, .monero-section, .guide-section, .faq-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #23252e;
    border-radius: 15px;
}

.about-section h3, .security-section h3, .monero-section h3, .guide-section h3, .faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2777ff;
}

.about-content p, .monero-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.security-features {
    display: grid;
    gap: 1.5rem;
}

.security-item {
    padding: 1.5rem;
    background: #181a20;
    border-radius: 10px;
    border-left: 4px solid #2777ff;
}

.security-item h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #23252e;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    padding: 1.5rem;
    background: #181a20;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.step h4 {
    color: #2777ff;
    margin-bottom: 0.5rem;
}

.faq-content {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: #181a20;
    border-radius: 10px;
}

.faq-item h4 {
    color: #2777ff;
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #23252e;
}

.security-notice {
    margin-top: 1rem;
    padding: 1rem;
    background: #2777ff20;
    border-radius: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .about-section, .security-section, .monero-section, .guide-section, .faq-section {
        padding: 1.5rem;
    }
}