/* UniMatrix Designs - Placeholder Page */

:root {
    --color-primary: #337ab7;
    --color-dark: #1a1a2e;
    --color-light: #ffffff;
    --color-text: #4a5568;
    --color-text-muted: #718096;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeIn 0.6s ease-out;
}

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

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 500px;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(51, 122, 183, 0.15);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.status {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    padding: 0.75rem 1.5rem;
    background: var(--color-light);
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

footer {
    padding: 1.5rem;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .status {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}
