.tracklink-slider-wrapper {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 500px;
    overflow: visible;
}

.tracklink-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tracklink-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.tracklink-slide.active {
    opacity: 1;
    z-index: 2;
}

.tracklink-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.tracklink-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.tracklink-content-left {
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tracklink-slide-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tracklink-slide-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.tracklink-slide-highlight {
    display: inline-block;
    background-color: #4ECAFF;
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(78, 202, 255, 0.4);
}

.tracklink-download-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tracklink-download-btn {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracklink-download-btn img {
    height: 60px;
    width: auto;
    display: block;
}

.tracklink-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tracklink-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Botón de video */
.tracklink-video-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    outline: none;
}

.tracklink-video-btn:focus {
    outline: none;
}

.tracklink-video-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tracklink-center-image {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracklink-center-image.show {
    opacity: 1;
}

.tracklink-center-image.fade-out {
    opacity: 0;
}

.tracklink-center-image img {
    height: calc(82vh * 1.07) !important;
    max-height: 700px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.tracklink-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 15;
    pointer-events: none;
}

.tracklink-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    pointer-events: all;
}

.tracklink-nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.tracklink-nav-btn svg {
    display: block;
}

.tracklink-slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;

}

.tracklink-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tracklink-pagination-dot:hover {
    background-color: rgba(255,255,255,0.7);
    transform: scale(1.1);
}

.tracklink-pagination-dot.active {
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tracklink-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracklink-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.tracklink-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.tracklink-video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tracklink-video-close:hover {
    transform: rotate(90deg);
}

.tracklink-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.tracklink-video-container .plyr {
    width: 100%;
    height: 100%;
}

.tracklink-video-container .plyr--video {
    width: 100%;
    height: 100%;
}

.tracklink-video-container .plyr__video-embed {
    width: 100%;
    height: 100%;
}

.tracklink-video-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1300px) {
    .tracklink-center-image {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .tracklink-slider-wrapper {
        height: 65vh;
        min-height: 450px;
    }

    .tracklink-slide-content {
        padding: 0 50px;
    }

    .tracklink-slide-title {
        font-size: 42px;
    }

    .tracklink-slide-description {
        font-size: 20px;
    }

    .tracklink-center-image img {
        height: calc(65vh * 1.07) !important;
    }
}

@media (max-width: 992px) {
    .tracklink-slider-wrapper {
        height: 70vh;
        min-height: 500px;
    }

    .tracklink-slide {
        background-position: right center;
        background-size: cover;
    }

    .tracklink-slide-content {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        text-align: left;
    }

    .tracklink-content-left {
        max-width: 650px;
        width: 100%;
    }

    .tracklink-slide-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .tracklink-slide-description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .tracklink-slide-highlight {
        font-size: 18px;
        padding: 12px 28px;
        margin-bottom: 30px;
    }

    .tracklink-download-buttons {
        justify-content: flex-start;
        gap: 15px;
    }

    .tracklink-download-btn img {
        height: 45px;
    }

    .tracklink-center-image {
        display: none !important;
    }

    .tracklink-content-right {
        margin-top: 30px;
        align-self: flex-start;
    }

    .tracklink-video-btn svg {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .tracklink-slider-wrapper {
        height: 60vh;
        min-height: 450px;
    }

    .tracklink-slide {
        background-position: right center;
    }

    .tracklink-slide-content {
        padding: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .tracklink-content-left {
        max-width: 100%;
    }

    .tracklink-slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tracklink-slide-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tracklink-slide-highlight {
        font-size: 16px;
        padding: 10px 24px;
        margin-bottom: 25px;
    }

    .tracklink-download-buttons {
        gap: 12px;
        justify-content: flex-start;
    }

    .tracklink-download-btn img {
        height: 40px;
    }

    .tracklink-content-right {
        margin-top: 25px;
    }

    .tracklink-slider-nav {
        padding: 0 15px;
    }

    .tracklink-nav-btn svg {
        width: 40px;
        height: 40px;
    }

    .tracklink-video-btn svg {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .tracklink-slider-wrapper {
        height: 55vh;
        min-height: 450px;
    }

    .tracklink-slide {
        background-position: right center;
    }

    .tracklink-slide-content {
        padding: 25px 20px;
        align-items: flex-start;
        text-align: left;
    }

    .tracklink-slide-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .tracklink-slide-description {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .tracklink-slide-highlight {
        font-size: 12px;
        padding: 7px 16px;
        margin-bottom: 18px;
    }

    .tracklink-download-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .tracklink-download-btn img {
        height: 38px;
    }

    .tracklink-content-right {
        margin-top: 20px;
    }

    .tracklink-video-btn svg {
        width: 55px;
        height: 55px;
    }

    .tracklink-nav-btn svg {
        width: 35px;
        height: 35px;
    }

    .tracklink-pagination-dot {
        width: 9px;
        height: 9px;
    }

    .tracklink-pagination-dot.active {
        width: 9px;
        height: 9px;
    }

    .tracklink-slider-pagination {
        bottom: 20px;
        gap: 10px;
    }
	.tracklink-slider-nav {
    display: none;
}
}
