.entries-closed-page
{
    min-height: calc(100vh - 160px);
    padding: 60px 20px;
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.entries-closed-wrap
{
    max-width: 900px;
    margin: 0 auto;
}

.entries-closed-card
{
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.entries-closed-icon
{
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
}

.entries-closed-card h1
{
    margin: 0 0 16px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
}

.entries-closed-message
{
    margin: 0 auto 14px;
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
}

.entries-closed-submessage
{
    margin: 0 auto 30px;
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.entries-closed-actions
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary
{
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: #0f766e;
    color: #ffffff;
    transition: 0.2s ease;
}

.btn-primary:hover
{
    background: #115e59;
}

.btn-secondary
{
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: #e2e8f0;
    color: #0f172a;
    transition: 0.2s ease;
}

.btn-secondary:hover
{
    background: #cbd5e1;
}

@media (max-width: 768px)
{
    .entries-closed-page
    {
        padding: 40px 16px;
    }

    .entries-closed-card
    {
        padding: 36px 22px;
        border-radius: 20px;
    }

    .entries-closed-card h1
    {
        font-size: 1.8rem;
    }

    .entries-closed-message
    {
        font-size: 1rem;
    }

    .entries-closed-submessage
    {
        font-size: 0.95rem;
    }

    .entries-closed-actions
    {
        flex-direction: column;
    }

    .btn-primary
    {
        width: 100%;
        max-width: 280px;
    }

    .btn-secondary
    {
        width: 100%;
        max-width: 280px;
    }
}

.entries-closed-timing
{
    margin: 0 auto 24px;
    max-width: 680px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
}