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

body {
    font-family: 'Arial', sans-serif;
    background: #181a20;
    color: #ffffff;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #23252e;
}

.logo h1 {
    font-size: 2.5em;
    color: #2777ff;
    margin-bottom: 5px;
}

.logo span {
    color: #8c8c8c;
    font-size: 0.9em;
}

.main-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2777ff;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #23252e;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: #2777ff;
    color: white;
}

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

.intro-gif {
    width: 300px;
    height: 300px;
    border: 2px solid #23252e;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2em;
    color: #2777ff;
    font-weight: bold;
    max-width: 600px;
    margin: 0 auto;
}

.links-section {
    background: #23252e;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.links-section h2 {
    color: #2777ff;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.market-link {
    background: #2777ff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease;
    word-break: break-all;
}

.market-link:hover {
    background: #1a5fd0;
}

.security-warning {
    color: #ff4757;
    font-size: 0.9em;
    font-style: italic;
}

.content-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #23252e;
    border-radius: 10px;
}

.content-section h2 {
    color: #2777ff;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.content-section h3 {
    color: #2777ff;
    margin: 20px 0 10px 0;
    font-size: 1.3em;
}

.content-section p {
    margin-bottom: 15px;
    color: #cccccc;
}

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

.feature-card {
    background: #2c2e38;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.feature-card h3 {
    color: #2777ff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-card p {
    color: #8c8c8c;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #2c2e38;
    border-radius: 8px;
}

.faq-item h3 {
    color: #2777ff;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #23252e;
    color: #8c8c8c;
    font-size: 0.9em;
}

.footer-content p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .intro-gif {
        width: 250px;
        height: 250px;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .links-section {
        padding: 20px;
    }
}