.ku-album-modal {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.ku-album-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255,255,255,.09),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            transparent 0%,
            transparent 58%,
            rgba(255,255,255,.025) 58%,
            rgba(255,255,255,.025) 59%,
            transparent 59%
        );

    z-index: 0;
}

.ku-modal-content {
    position: relative;
    z-index: 1;
    padding: 48px 46px 38px;
}

.ku-modal-year {
    position: absolute;
    right: 30px;
    top: 25px;

    font-size: 82px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -5px;

    color: rgba(255,255,255,.055);

    pointer-events: none;
    user-select: none;
}

.ku-modal-kicker {
    display: block;
    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .28em;

    color: rgba(255,255,255,.68);
}

.ku-modal-line {
    width: 54px;
    height: 4px;
    margin-bottom: 26px;

    background: #fff;
}

.ku-modal-title {
    margin: 0 0 22px;

    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.2;

    font-weight: 900;
    letter-spacing: -.045em;

    text-transform: uppercase;
    color: #fff;
}

.ku-modal-text {
    max-width: 390px;
    margin-bottom: 30px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,.68);
}

.ku-modal-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;

    padding: 18px 22px;

    border: 1px solid #fff;

    background: #fff;
    color: #111;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;

    text-decoration: none;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.ku-modal-button span {
    font-size: 23px;
    line-height: 1;
    transition: transform .25s ease;
}

.ku-modal-button:hover {
    background: transparent;
    color: #fff;
}

.ku-modal-button:hover span {
    transform: translateX(5px);
}

.ku-modal-footer {
    margin-top: 24px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .3em;
    color: rgba(255,255,255,.35);
}

.ku-modal-close {
    position: absolute;
    right: 18px;
    top: 18px;

    z-index: 10;

    width: 12px;
    height: 12px;

    padding: 8px;
    opacity: .7;
}

.ku-modal-close:hover {
    opacity: 1;
}

.modal-backdrop.show {
    opacity: .78;
}

#konyaUltraAlbumModal .modal-dialog {
    transform: translateY(25px) scale(.97);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

#konyaUltraAlbumModal.show .modal-dialog {
    transform: translateY(0) scale(1);
}


/* MOBILE */
@media (max-width: 575.98px) {

    #konyaUltraAlbumModal .modal-dialog {
        margin: 18px;
    }

    .ku-modal-content {
        padding: 42px 28px 30px;
    }

    .ku-modal-year {
        right: 20px;
        top: 26px;
        font-size: 62px;
    }

    .ku-modal-title {
        font-size: 42px;
    }

    .ku-modal-text {
        font-size: 14px;
    }

    .ku-modal-button {
        padding: 17px 18px;
        font-size: 12px;
    }
}