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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.main-nav {
    background: linear-gradient(90deg, #87001d 0%, #ff5050 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 80, 80, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-gif {
    width: 320px;
    height: 100px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.version {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.status.online {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

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

.hero-section {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 80, 80, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-title {
    margin-bottom: 1.5rem;
}

.title-gradient {
    background: linear-gradient(45deg, #ff5050, #87001d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
}

.title-sub {
    font-size: 1.5rem;
    color: #FFFFFF;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 80, 80, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 80, 80, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: bold;
}

.links-container {
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.1) 0%, rgba(255, 80, 80, 0.1) 100%);
    border: 1px solid rgba(255, 80, 80, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.links-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(45deg, #ff5050, #87001d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.links-grid {
    display: grid;
    gap: 1.5rem;
}

.link-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 80, 80, 0.2);
    border-color: #ff5050;
}

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

.card-number {
    color: #ff5050;
    font-weight: bold;
}

.card-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-status.live {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.market-link {
    color: #ff5050;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.market-link:hover {
    color: #ffffff;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff5050, #87001d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section, .features-section, .guide-section, .faq-section, .stats-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.05) 0%, rgba(255, 80, 80, 0.05) 100%);
    border: 1px solid rgba(255, 80, 80, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.about-content h3, .guide-content h3 {
    color: #ff5050;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.feature-list, .security-tips, .guide-steps {
    margin: 1rem 0 1rem 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li, .security-tips li, .guide-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 80, 80, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 80, 80, 0.1);
}

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

.feature h3 {
    color: #ff5050;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #ff5050;
}

.faq-item h3 {
    color: #ff5050;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 80, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5050;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.main-footer {
    background: linear-gradient(90deg, #87001d 0%, #ff5050 100%);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.crypto-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.crypto-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-gradient {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}