/* =============================
   MULTITENANT SUBSCRIPTION EXPIRED PAGE
   ============================= */
.expired-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
}

.expired-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 520px;
    padding: 50px 30px;
    animation: expired-fadeIn 0.8s ease;
}

.expired-icon {
    font-size: 60px;
    margin-bottom: 16px;
    animation: expired-bounce 1.4s infinite ease-in-out;
}

.expired-title {
    font-size: 26px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 16px;
}

.expired-message {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 32px;
}

.expired-link {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.expired-link:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(2, 132, 199, 0.25);
}

/* === Animations === */
@keyframes expired-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expired-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === Mobile adjustments === */
@media (max-width: 600px) {
    .expired-card {
        padding: 36px 20px;
    }

    .expired-title {
        font-size: 22px;
    }

    .expired-message {
        font-size: 15px;
    }
}
