:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.logo-container {
    position: relative;
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.description {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
    background: rgba(255,255,255,0.2);
}

.social-link i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.social-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

.countdown {
    margin: 2rem 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .social-links {
        flex-direction: row;
        gap: 1rem;
        padding: 0 1rem;
    }
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    .social-link i {
        font-size: 1.8rem;
    }
} 