.dvd-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease-in-out;
}

.dvd-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 10% auto;
    padding: 30px;
    border: 2px solid #408BEA;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideIn 0.3s ease-out;
}

.dvd-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: color 0.3s ease;
}

.dvd-close:hover,
.dvd-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.dvd-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #408BEA 0%, #3478d3 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(64, 139, 234, 0.3);
}

.dvd-button:hover {
    background: linear-gradient(135deg, #3478d3 0%, #2c5aa0 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 139, 234, 0.4);
}

.dvd-modal-content p {
    font-size: 18px;
    margin: 20px 0;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
}

/* Estilos para enlaces restringidos */
.dvd-vip-restricted,
.vip-restricted-link {
    position: relative;
    cursor: pointer !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dvd-vip-restricted:hover,
.vip-restricted-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.dvd-vip-restricted::after,
.vip-restricted-link::after {
    content: "🔒";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* Animación de pulso para el ícono de candado */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .dvd-modal-content {
        margin: 20% auto;
        padding: 20px;
        width: 95%;
    }
    
    .dvd-modal-content p {
        font-size: 16px;
    }
    
    .dvd-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dvd-modal-content {
        margin: 30% auto;
        padding: 15px;
    }
    
    .dvd-modal-content p {
        font-size: 14px;
    }
    
    .dvd-button {
        padding: 8px 20px;
        font-size: 12px;
    }
}