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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    color: white;
}

.container {
    max-width: 600px;
    width: 100%;
}

.camera-icon {
    margin-bottom: 2rem;
    color: #e94560;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-style: italic;
}

.divider {
    width: 60px;
    height: 3px;
    background: #e94560;
    margin: 2rem auto;
}

.message {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #b0b0b0;
}

.feature-icon {
    color: #e94560;
    font-size: 0.8rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links p {
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #a0a0a0;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-link:hover {
    color: #e94560;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
}