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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Bot Stats Section */
.bot-stats {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #00A8FF;
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(0, 168, 255, 0.3);
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00A8FF;
    margin-bottom: 30px;
}

.stats-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.stat-big {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 4rem;
    font-weight: 900;
    color: #00A8FF;
    line-height: 1;
    transition: transform 0.2s ease;
}

.stat-big:hover .stat-value {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background: #333;
}

.stats-update {
    font-size: 0.8rem;
    color: #555;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0 80px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 50px;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 20px;
}

input[type="email"] {
    flex: 1;
    padding: 20px 24px;
    font-size: 1.05rem;
    border: 2px solid #222;
    border-radius: 12px;
    background: #0a0a0a;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

input[type="email"]:focus {
    border-color: #00A8FF;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
    transform: translateY(-1px);
}

input[type="email"]::placeholder {
    color: #555;
}

button {
    padding: 20px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: #00A8FF;
    color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before {
    width: 300px;
    height: 300px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.5);
}

button:active {
    transform: translateY(0);
}

.under-cta {
    font-size: 0.9rem;
    color: #666;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.feature {
    background: #0a0a0a;
    border: 2px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00A8FF;
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.25);
    background: #0f0f0f;
}

.feature-number {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #00A8FF;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-number {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-title-multi {
    line-height: 1.3;
}

.feature-title-multi .plus {
    font-size: 1.2rem;
    color: #00A8FF;
    font-weight: 900;
}

.feature p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA */
.cta-final {
    text-align: center;
    padding: 60px 0;
}

.cta-final h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.1rem;
    color: #888;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #444;
    font-size: 0.85rem;
    border-top: 1px solid #111;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0a0a0a;
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00A8FF;
    box-shadow: 0 0 40px rgba(0, 168, 255, 0.3);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #00A8FF;
    color: #000;
    font-size: 3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    margin-bottom: 15px;
    color: #888;
    font-size: 1rem;
}

.modal-note {
    font-size: 0.85rem;
    color: #666;
}

.close-btn {
    margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .stats-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-separator {
        width: 60px;
        height: 1px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .bot-stats {
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 3rem;
    }
}
