:root {
    --bg-color: #F7F5F1;
    --highlight-color: #ff5a1f;
    --text-color: #111;
}

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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.logo-wrapper {
    margin-bottom: 32px;
}

.logo {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 32px;
}

.highlight {
    color: var(--highlight-color);
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    text-decoration: none;

}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 90, 31, 0.08);
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 90, 31, 0.15);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--highlight-color);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 90, 31, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0);
    }
}

@media (max-width: 480px) {
    .card {
        padding: 32px 24px;
    }

    .content h1 {
        font-size: 1.75rem;
    }

    .content p {
        font-size: 1rem;
    }

    .logo {
        width: 140px;
    }
}