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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8bbd0 0%, #f5a8c4 25%, #e1bee7 50%, #d1c4e9 75%, #c5cae9 100%);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: relative;
}

.logo {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #5d4037;
}

.login-btn {
    background: #fff;
    color: #0a0a0a;
    border: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 800px;
    animation: fadeIn 0.6s ease-out;
}

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

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(244, 143, 177, 0.3);
    border: 1px solid rgba(244, 143, 177, 0.5);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c2185b;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 20px rgba(244, 143, 177, 0.2);
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #5d4037;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .login-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-badge {
        font-size: 0.6875rem;
        margin-bottom: 2rem;
    }
}
