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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in;
}

.logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.coming-soon {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    animation: slideUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    animation: slideUp 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
        letter-spacing: 0.3px;
    }
    
    .logo-image {
        max-width: 200px;
    }
}

