body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at top, #3A405A, #1F2029);
    color: #EDEDED;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Aseguramos que el body cubre al menos todo el viewport */
    overflow-x: hidden; /* Prevenimos scroll horizontal */
}

.vip-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem; /* Reducimos el padding para dispositivos pequeños */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 50px #3498db;
    max-width: 800px;
    width: 95%; /* Aumentamos la anchura para ser más responsive */
    margin: 2rem auto; /* Centramos el contenedor y añadimos margen superior e inferior */
    animation: fadeInUp 1s ease-out;
    overflow-y: auto; /* Permite scroll vertical cuando el contenido excede la altura */
    text-align: center;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vip-title {
    font-size: 2.5em; /* Reducimos el tamaño de la fuente para dispositivos más pequeños */
    margin: 0;
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700;
}

.vip-subtitle {
    font-size: 1.2em; /* Ajustamos el tamaño de la fuente */
    margin-bottom: 1em; /* Reducimos el margen inferior */
    color: #8e44ad;
    text-shadow: 0 0 5px #8e44ad;
}

.vip-list {
    list-style-type: none;
    padding: 0;
}

.vip-list li {
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0; /* Reducimos el margen entre elementos */
    padding: 10px;
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vip-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #3498db;
}

.vip-description {
    margin: 10px 0; /* Reducimos el margen para ahorrar espacio */
    line-height: 1.6;
    font-size: 0.9em; /* Ajustamos el tamaño de la fuente */
}

.vip-tarifas {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.vip-tarifas li {
    background: rgba(236, 240, 241, 0.1);
    margin: 2px 0; /* Reducimos el margen para ahorrar espacio */
    padding: 8px; /* Reducimos el padding para dispositivos pequeños */
    border-left: 3px solid #3498db; /* Ajustamos el tamaño de la línea lateral */
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 0.85em; /* Ajustamos el tamaño de la fuente */
}

.vip-tarifas li:hover {
    background: rgba(236, 240, 241, 0.2);
    transform: translateX(5px);
}

.vip-button {
    background: linear-gradient(45deg, #8E44AD, #3498DB);
    border: none;
    padding: 10px 20px; /* Reducimos el padding para dispositivos pequeños */
    font-size: 1em;
    cursor: pointer;
    color: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%; /* Hacemos que el botón se extienda a lo ancho del contenedor */
    margin-top: 1rem; /* Añadimos margen superior */
}

.vip-button:hover {
    background: linear-gradient(45deg, #9B59B6, #2980B9);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 600px) {
    .vip-container {
        padding: 2rem;
    }
    .vip-title {
        font-size: 3em;
    }
    .vip-subtitle {
        font-size: 1.5em;
        margin-bottom: 2em;
    }
    .vip-list li {
        margin: 10px 0;
    }
    .vip-tarifas li {
        margin: 5px 0;
        padding: 10px;
        font-size: 1em;
    }
    .vip-description {
        margin: 20px 0;
        font-size: 1em;
    }
    .vip-button {
        padding: 15px 30px;
        width: auto;
    }
}