:root {
    --primary: #1a2a6c;
    --secondary: #fdbb2d;
    --accent: #b21f1f;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text: #333333;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--primary);
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 800px;
    width: 90%;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 300;
}

hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem auto;
    width: 60%;
}

.status {
    background: var(--secondary);
    color: var(--primary);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-info {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    filter: brightness(1.2);
}

@media (max-width: 600px) {
    .container {
        padding: 2rem;
    }
    .logo {
        font-size: 2rem;
    }
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}
