/* Base */
html, body {
    margin: 0;
    height: 100%;
    font-family: "Segoe UI", sans-serif;
    background: #f8fafc;
}

/* Layout */
.page {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0f172a;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /*font-weight: 600;
    font-size: 18px;*/
}

    .logo i {
        width: 22px;
        height: 22px;
    }

.version {
    font-size: 13px;
    opacity: 0.7;
}

/* Main */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}

    .main-content h1 {
        font-size: 32px;
        color: #0f172a;
        margin-bottom: 10px;
    }

.icon-highlight {
    color: #2563eb;
    vertical-align: middle;
    margin-right: 8px;
}

/* Text */
.main-content p {
    font-size: 16px;
    color: #475569;
    max-width: 600px;
    margin-bottom: 25px;
}

/* Button */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    text-decoration: none;
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 3px;
    transition: 0.3s;
}

    .cta-link:hover {
        color: #1d4ed8;
        border-color: #1d4ed8;
    }

/* Footer */
.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 20px;
    background: #f1f5f9;
    font-size: 14px;
}

.status-block {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Status indicator */
.status.success {
    color: green;
    font-weight: 600;
    position: relative;
}

    /* Green pulse dot */
    .status.success::before {
        content: "";
        width: 8px;
        height: 8px;
        background: green;
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
        animation: pulse 1.5s infinite;
    }

/* Title */
.title {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

/* Version badge (clean inline look) */
.version {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    opacity: 0.85;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}
