.coming-soon-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-section h1 {
    color: var(--accent-main);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--glow-color);
}

.intro-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.features-section {
    margin-bottom: 4rem;
}

.features-section h2 {
    color: var(--accent-main);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-main);
    box-shadow: 0 0 30px var(--glow-color);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-main);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.launch-info {
    text-align: center;
    margin-top: 4rem;
}

.launch-announcement, .website-info {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.launch-announcement i, .website-info i {
    font-size: 1.5rem;
    color: var(--accent-main);
}

.launch-announcement p, .website-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}