:root {
    --bg-color: #f5f5f7;
    /* Off-white for premium feel */
    --text-color: #1d1d1f;
    /* Dark text for contrast */
    --accent-gray: #86868b;
    --accent-red: #c22126;
    /* Logo Red */
    --accent-red-bright: #ed2024;
    /* Brighter Red */
    --glass-bg: rgba(255, 255, 255, 0.6);
    /* High opacity white glass */
    --glass-border: rgba(0, 0, 0, 0.05);
    /* Subtle dark border */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.6s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f0f0f2 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    /* Very subtle on light theme */
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, #c22126, transparent 70%);
    /* Red tint */
    top: -15%;
    left: -15%;
}

@media (max-width: 768px) {
    .orb-1 {
        width: 80vw;
        height: 80vw;
        top: -20%;
        left: -20%;
        opacity: 0.15;
        /* Slightly more visible on mobile to compensate for screen size */
    }
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #000, transparent 70%);
    /* Dark tint for depth */
    bottom: -15%;
    right: -15%;
    animation-delay: -10s;
}

@media (max-width: 768px) {
    .orb-2 {
        width: 85vw;
        height: 85vw;
        bottom: -20%;
        right: -20%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* Main Container */
.container {
    text-align: center;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
}

/* Typography & Layout */
.brand-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.brand-logo {
    max-width: 175px;
    width: 90%;
    height: auto;
    margin-bottom: 1rem;
    /* No drop shadow or subtle dark drop shadow for light theme */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    margin: 1rem auto 2.5rem;
}

.status {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.description {
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    /* Darker gray for readability on white */
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Email Link */
.email-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid rgba(194, 33, 38, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.email-link:hover {
    background: var(--accent-red);
    box-shadow: 0 5px 20px rgba(194, 33, 38, 0.25);
    transform: translateY(-2px);
    color: #fff;
    border-color: var(--accent-red);
}

.notify-text {
    color: var(--accent-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp var(--transition-speed) ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
        width: 95%;
        border-radius: 16px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .brand-logo {
        max-width: 140px;
        margin-bottom: 0.5rem;
    }

    .divider {
        margin: 1.5rem auto;
    }

    .status {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .email-link {
        font-size: 1rem;
        padding: 10px 20px;
        width: 100%;
        /* Full width button on very small screens */
        max-width: 300px;
    }

    footer {
        margin-top: 3rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 380px) {
    .brand-logo {
        max-width: 120px;
    }

    .container {
        padding: 1.5rem 1rem;
    }
}