.szilank-video-play {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    vertical-align: middle;
    position: relative;
}

.szilank-video-play.has-video {
    cursor: pointer;
}

.szilank-video-play.has-thumbnail {
    width: 100%;
    max-width: 466px;
}

.szilank-video-play.no-thumbnail {
    gap: 12px;
    width: auto;
    max-width: none;
}

.szilank-video-play__thumbnail {
    display: block;
    width: 100%;
    max-width: 466px;
    height: auto;
    object-fit: cover;
}

.szilank-video-play.has-thumbnail .szilank-video-play__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.szilank-video-play__play-btn {
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    background: rgba(56, 83, 164, 0.92);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.szilank-video-play.has-thumbnail:hover .szilank-video-play__play-btn {
    transform: translate(-50%, -50%) scale(0.95);
    background: #243875;
}

.szilank-video-play__play-btn--simple {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 0;
}

.szilank-video-play.no-thumbnail:hover .szilank-video-play__play-btn--simple {
    transform: scale(0.95);
}

.szilank-video-play__label {
    display: inline-block;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.szilank-video-play__play-btn svg {
    width: 43px;
    height: 43px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.szilank-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.szilank-video-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.szilank-video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.szilank-video-modal__container {
    position: relative;
    z-index: 1;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.szilank-video-modal__close {
    position: absolute;
    top: -40px;
    right: -5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.szilank-video-modal__close:hover {
    opacity: 0.7;
}

.szilank-video-modal__wrapper {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szilank-video-modal__video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
}

@media (min-width: 768px) {
    .szilank-video-play__play-btn {
        width: 82px;
        height: 82px;
    }

    .szilank-video-play__play-btn svg {
        width: 48px;
        height: 48px;
    }

    .szilank-video-play__play-btn--simple {
        width: 48px;
        height: 48px;
    }

    .szilank-video-play__label {
        font-size: 17px;
    }

    .szilank-video-modal__container {
        width: 92%;
    }

    .szilank-video-modal__close {
        right: 0;
    }

    .szilank-video-modal__video {
        max-height: 75vh;
    }
}

@media (min-width: 1025px) {
    .szilank-video-play__play-btn {
        width: 90px;
        height: 90px;
    }

    .szilank-video-play__play-btn svg {
        width: auto;
        height: auto;
    }

    .szilank-video-play__play-btn--simple {
        width: 56px;
        height: 56px;
    }

    .szilank-video-play__label {
        font-size: 18px;
    }

    .szilank-video-modal__container {
        width: 90%;
    }

    .szilank-video-modal__close {
        top: -50px;
    }

    .szilank-video-modal__video {
        max-height: 80vh;
    }
}
