@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.gradient-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.2);
}

.hero-pattern {
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.2), transparent 30%),
                radial-gradient(circle at bottom left, rgba(220, 38, 38, 0.15), transparent 30%);
}

.nav-transparent {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
}

.faq-item {
    border-bottom: 1px solid #404040;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.8); }
}

.glow-animation {
    animation: glow 3s ease-in-out infinite;
}

.typewriter h1 {
    overflow: hidden;
    border-right: .15em solid #dc2626;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #dc2626; }
}

.product-card {
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: perspective(1000px) rotateY(15deg) translateZ(20px);
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

        .stat-box {
    background: linear-gradient(145deg, #1a1a1a, #262626);
    border: 1px solid #404040;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-box {
        padding: 1.25rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .stat-value {
        font-size: 1.75rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #a1a1aa;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-option:hover {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.telegram {
    background-color: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.discord {
    background-color: rgba(88, 101, 242, 0.2);
    color: #5865f2;
}