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

body {
    font-family: 'Courier New', monospace;
    background: #181a20;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-gif {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid #2777ff;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #2777ff, #6c8eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(39, 119, 255, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.main-nav {
    background: #23252e;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid #2c2e38;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.content-section {
    background: #23252e;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #2c2e38;
}

.content-section h2 {
    color: #2777ff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.content-section h3 {
    color: #6c8eff;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
}

.content-grid {
    display: grid;
    gap: 2rem;
}

.text-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.feature-card {
    background: #2c2e38;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2777ff;
}

.feature-card h3 {
    color: #2777ff;
    margin-bottom: 1rem;
}

.security-content ul {
    list-style: none;
    padding-left: 1rem;
}

.security-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.security-content li:before {
    content: "→";
    color: #2777ff;
    position: absolute;
    left: -1rem;
}

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

.guide-card {
    background: #2c2e38;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #3a3c46;
}

.guide-card h3 {
    color: #2777ff;
    margin-bottom: 1rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.market-link {
    background: linear-gradient(45deg, #2777ff, #3a5fc8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    word-break: break-all;
    font-family: monospace;
    font-size: 0.9rem;
}

.market-link:hover {
    background: linear-gradient(45deg, #3a5fc8, #2777ff);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(39, 119, 255, 0.4);
}

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

.faq-item {
    background: #2c2e38;
    padding: 1.5rem;
    border-radius: 12px;
}

.faq-item h3 {
    color: #2777ff;
    margin-bottom: 1rem;
}

.security-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.security-notice h3 {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #2c2e38;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .features-grid,
    .guides-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1rem;
    }
    
    .feature-card,
    .guide-card,
    .faq-item {
        padding: 1rem;
    }
    
    .market-link {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}


.highlight {
    color: #2777ff;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #23252e 0%, #1c1e26 100%);
    border-radius: 16px;
    border: 1px solid #2c2e38;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.big-button {
    background: linear-gradient(45deg, #2777ff, #3a5fc8);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(39, 119, 255, 0.3);
}

.big-button:hover {
    background: linear-gradient(45deg, #3a5fc8, #2777ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 119, 255, 0.5);
}

.security-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.primary-link {
    background: rgba(39, 119, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #2777ff;
    text-align: center;
}

.primary-link h3 {
    color: #2777ff;
    margin-bottom: 1rem;
}

.main-market-link {
    background: linear-gradient(45deg, #2777ff, #3a5fc8);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-family: monospace;
    font-size: 1.1rem;
    display: inline-block;
    margin: 1rem 0;
    word-break: break-all;
    box-shadow: 0 5px 15px rgba(39, 119, 255, 0.3);
}

.main-market-link:hover {
    background: linear-gradient(45deg, #3a5fc8, #2777ff);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(39, 119, 255, 0.5);
}

.link-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.verification-instructions {
    background: rgba(7, 255, 152, 0.1);
    border: 1px solid #07ff98;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.verification-instructions h3 {
    color: #07ff98;
    margin-bottom: 1rem;
}

.verification-instructions p {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.verification-instructions p:before {
    content: "•";
    color: #07ff98;
    position: absolute;
    left: 0;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, #23252e 0%, #1c1e26 100%);
    border-radius: 16px;
    border: 1px solid #2c2e38;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #2777ff, #3a5fc8);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background: linear-gradient(45deg, #3a5fc8, #2777ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 119, 255, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.structured-data {
    display: none;
}

.text-content strong {
    color: #2777ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .big-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .primary-link {
        padding: 1.5rem;
    }
    
    .main-market-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .big-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .verification-instructions {
        padding: 1rem;
    }
}