* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0e1117, #1a1f27);
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
}

.coming-soon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.coming-soon-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
}

.footer {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.btn-hero-primary, .btn-cta-primary {
    background: linear-gradient(135deg, #7877c6 0%, #5a59a6 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(120, 119, 198, 0.3);
    text-decoration: none;
}
.btn-hero-primary::before, .btn-cta-primary::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: left 0.6s ease;
}
.btn-hero-primary:hover, .btn-cta-primary:hover {
    background: linear-gradient(135deg, #8988d4 0%, #6b6ab4 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.4);
}
.btn-hero-primary:hover::before, .btn-cta-primary:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .coming-soon-content h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
}
