.special-day-modal.modal.is-active {
    z-index: 10050;
    overflow-y: auto;
    padding: 1rem 0;
}

.special-day-modal .modal-background {
    background: rgba(0, 0, 0, 0.75);
}

.special-day-modal .modal-content {
    background: transparent;
    box-shadow: none;
    max-width: none;
    width: auto;
    max-height: 90vh;
    margin: auto;
    overflow: visible;
}

.special-day-modal__frame {
    position: relative;
    width: min(92vw, 960px, calc(90vh * 16 / 9));
    max-height: 90vh;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.special-day-modal__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-day-modal__actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 1rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

.special-day-modal__enter-btn {
    min-width: 220px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
    .special-day-modal.modal.is-active {
        padding: 0.75rem 0;
    }

    .special-day-modal .modal-content {
        max-height: 92vh;
    }

    .special-day-modal__frame {
        width: min(92vw, calc(92vh * 16 / 9));
        max-height: 92vh;
    }

    .special-day-modal__actions {
        padding: 0.75rem 1rem 1rem;
    }

    .special-day-modal__enter-btn {
        min-width: 180px;
        width: 100%;
        max-width: 280px;
    }
}
