/* ====================
    *  AHOK.AS
   ==================== */

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

:root {
    --color-text: #2a2a2a;
    --color-text-muted: #666;
    --color-heading: #1a1a1a;
    --color-border: #d8d8d8;
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --font-heading: Georgia, serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg-alt);
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.offline-card {
    background: var(--color-bg);
    width: 100%;
    max-width: 540px;
    padding: 3rem 3rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    text-align: center;
    animation: fade-in 0.5s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.offline-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.offline-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
    .offline-card {
        padding: 2.2rem 1.5rem 1.5rem;
    }

    .offline-title {
        font-size: 1.8rem;
    }
}
