:root {
    --primary-color: #721115;
    /* Logo Maroon */
    --secondary-color: #0c1e2b;
    /* Logo Navy */
    --bg-dark: #050a0f;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(114, 17, 21, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(12, 30, 43, 0.3) 0%, transparent 40%);
    z-index: -1;
}

.container {
    padding: 4rem 2rem;
    max-width: 700px;
    width: 90%;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

header {
    margin-bottom: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(114, 17, 21, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 17, 21, 0.4);
    opacity: 0.95;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
}

.social-icon:hover {
    color: var(--text-white);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .logo {
        max-width: 240px;
    }

    .social-icons {
        gap: 1.2rem;
    }
}