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

body {
    font-family: 'Arial', sans-serif;
    background: #181a20;
    color: #fff;
    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 #2777ff;
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #2777ff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.8;
}

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

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

.intro-section h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #2777ff;
}

.intro-section p {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.market-link {
    display: block;
    padding: 15px 25px;
    background: #23252e;
    color: #2777ff;
    text-decoration: none;
    border: 1px solid #2777ff;
    border-radius: 8px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 500px;
    word-break: break-all;
}

.market-link:hover {
    background: #2777ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 119, 255, 0.3);
}

.no-links {
    text-align: center;
    padding: 30px;
    background: #23252e;
    border-radius: 8px;
    color: #ff4757;
    font-size: 1.1em;
}

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

.info-card {
    background: #23252e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2777ff33;
}

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

.info-card p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.content-section h3 {
    color: #2777ff;
    margin: 25px 0 15px;
    font-size: 1.4em;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-section ul {
    margin: 15px 0 15px 30px;
}

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

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2777ff33;
}

.faq-item h4 {
    color: #2777ff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #2777ff;
    margin-top: 30px;
}

footer p {
    opacity: 0.7;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        font-size: 2em;
    }
    
    .intro-gif {
        width: 250px;
        height: 250px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .market-link {
        font-size: 1em;
        padding: 12px 20px;
    }
    
    .content-section {
        padding: 20px;
    }
}