/* Reset and Base Styles */
* {
    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;
    min-height: 100vh;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

/* Content */
.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f9a8d4 0%, #fbcfe8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 40px;
}

.coming-soon h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.tagline {
    font-size: 1.25rem;
    color: #db2777;
    font-weight: 500;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Pulse Indicator */
.pulse-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #ec4899;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.pulse::before,
.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ec4899;
    opacity: 0;
}

.pulse::before {
    animation: ripple 2s ease-in-out infinite;
}

.pulse::after {
    animation: ripple 2s ease-in-out infinite 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1.125rem;
    }
    
    .description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

/* Made with Bob */
