:root {
    --brand-red: #B51A1A;
    --brand-white: #FFFFFF;
    --bg-black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #A0A0A0;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--brand-white);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle background glow */
body::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--brand-red) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
    animation: drift 15s infinite alternate;
}

@keyframes drift {
    from {
        transform: translate(-20%, -20%);
    }

    to {
        transform: translate(20%, 20%);
    }
}

.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    margin-bottom: 2.5rem;
}

.logo-wrapper img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(181, 26, 26, 0.3));
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.status {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: var(--brand-red);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 500;
}

.phone-link {
    color: var(--brand-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--brand-red);
}

@media (max-width: 480px) {
    .container {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .info-value {
        font-size: 1.1rem;
    }
}