:root {
    --primary: #ff3c3c;
    --premium: #ffcc00;
    --success-green: #009929;
    --card-bg: rgba(0, 0, 0, 0.55);
    --border: rgba(255, 255, 255, 0.08);
    --whatsapp: #25d366;
    
    --grad-gris-3d: linear-gradient(180deg, #d1d1d1 0%, #8a8a8a 50%, #5e5e5e 100%);
    --grad-amarillo-3d: linear-gradient(180deg, #ffe57e 0%, #e6ac00 50%, #997100 100%);
    --grad-rojo-3d: linear-gradient(180deg, #ff6b6b 0%, #ff3c3c 50%, #b30000 100%);
}

* {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    position: relative;
    background-color: #0a0f1a;
}

/* ========== CAPAS PARA FONDO DINÁMICO CON DEGRADADO CRUZADO ========== */
.fondo-capa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0a0f1a;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity 1.5s ease-in-out;
    z-index: -2;
}

#fondoCapa1 {
    opacity: 1;
    z-index: -2;
}

#fondoCapa2 {
    opacity: 0;
    z-index: -1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

#customAlert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.alert-box {
    background: rgba(0, 0, 0, 0.9);
    width: 85%;
    max-width: 340px;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid var(--primary);
    text-align: center;
    animation: fadeIn 0.4s;
}
.alert-logo {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.container {
    width: 85%;
    max-width: 420px;
    background: var(--card-bg);
    padding: 90px 30px 40px 30px;
    border-radius: 35px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
}

.perfil-icono {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 204, 0, 0.3);
    z-index: 15;
}

.perfil-icono:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--premium);
    transform: scale(1.05);
}

.oni-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.oni {
    width: 130px;
    filter: drop-shadow(0 0 15px var(--primary));
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h2, h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 12px;
    border: 1px solid #444;
    background: rgba(20, 20, 20, 0.7);
    color: white;
    text-align: center;
    font-weight: bold;
}

.marca-selector {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--premium);
    color: var(--premium);
}
.marca-selector option {
    background: #1a1a1a;
    color: white;
}
.marca-label {
    font-size: 12px;
    color: var(--premium);
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

.button-action {
    background: var(--primary);
    color: white;
    padding: 15px;
    width: 100%;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    border: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3);
}
.button-action:active {
    transform: scale(0.96);
}

.btn-3d-container {
    width: 100%;
    display: flex;
    height: 60px;
    margin: 15px 0;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 15px rgba(0,0,0,0.6), inset 0 2px 2px rgba(255,255,255,0.3);
    cursor: pointer;
    transition: transform 0.1s;
}
.btn-3d-delgado {
    height: 45px !important;
    margin: 10px 0 !important;
}
.btn-3d-container:active {
    transform: scale(0.98);
}
.btn-3d-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    text-align: center;
    letter-spacing: 1px;
}
.btn-3d-icon {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.1);
}
.btn-3d-delgado .btn-3d-icon {
    width: 50px;
}
.btn-3d-gris {
    background: var(--grad-gris-3d);
    color: #1a1a1a;
}
.btn-3d-amarillo {
    background: var(--grad-amarillo-3d);
    color: #221a00;
}
.btn-3d-rojo {
    background: var(--grad-rojo-3d);
    color: #fff;
}

.btn-ayuda-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 40px;
    padding: 8px 20px;
    margin: 20px auto 0 auto;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    min-width: 160px;
    backdrop-filter: blur(4px);
}

.btn-ayuda-container:hover {
    background: rgba(255, 204, 0, 0.15);
    border-color: var(--premium);
    transform: translateY(-2px);
}

.ayuda-texto {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--premium);
    text-transform: uppercase;
}

.advertencia-texto {
    display: none;
    color: var(--primary);
    font-size: 11px;
    text-align: center;
    font-weight: bold;
    margin: 5px 0;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes flash {
    0% { opacity: 0.5; box-shadow: 0 0 0px var(--premium); }
    100% { opacity: 1; box-shadow: 0 0 8px var(--premium); }
}
@keyframes pulseGlow {
    0% { text-shadow: 0 0 0px rgba(255,204,0,0.5); }
    50% { text-shadow: 0 0 12px rgba(255,204,0,0.9); }
    100% { text-shadow: 0 0 0px rgba(255,204,0,0.5); }
}

.view-section {
    display: none;
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.faq-float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 20px;
    left: 20px;
    background-color: var(--premium);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s;
}
.faq-float:hover {
    transform: scale(1.05);
}
.faq-float img {
    width: 28px;
    height: 28px;
}

.loader {
    display: none;
    color: var(--primary);
    font-size: 12px;
    margin: 15px 0;
    font-family: monospace;
}

.result-box-vip {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    border: 1px solid var(--premium);
    text-align: left;
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.result-box-vip::before {
    content: "✨ IA PREMIUM ✨";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--premium);
    color: #000;
    font-size: 8px;
    padding: 4px 10px;
    border-radius: 0 0 0 12px;
    font-weight: bold;
    letter-spacing: 1px;
}
.result-box {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    border-left: 4px solid var(--primary);
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
    animation: fadeIn 0.5s;
}
.res-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px solid #222;
    padding-bottom: 4px;
}
.res-label {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
}
.res-val {
    color: var(--premium);
    font-weight: bold;
    font-size: 14px;
}
.analisis-texto {
    font-size: 10px;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed #333;
    font-style: italic;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nequi-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 5px;
    color: #FFFFFF;
}
.nequi-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}
.cost-label {
    color: #FFFFFF;
}
.cost-value {
    color: var(--success-green);
    font-weight: bold;
}
.cost-separator {
    color: #888888;
    margin: 0 4px;
}

/* ========== BARRA DE ENERGÍA PREMIUM ========== */
.energia-premium-bar {
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--premium);
    border: 1px solid rgba(255,204,0,0.3);
}

/* ========== CONTADOR VIP PROFESIONAL ========== */
.vip-timer {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--premium);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    letter-spacing: 0.5px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    width: auto;
}

#vipTiempoRestante {
    font-family: 'Segoe UI', monospace;
}

/* ========== MODALES DEL FOOTER - CON IMÁGENES JPG ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.modal-contenido {
    background: url('img-fondo/footer.jpg') no-repeat center center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 85%;
    max-width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 35px;
    border: 1px solid var(--premium);
    padding: 25px;
    text-align: left;
    position: relative;
    animation: fadeIn 0.3s;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.modal-contenido .contenido-wrapper {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    padding: 15px;
}

.modal-contenido h2 {
    color: var(--premium);
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.modal-contenido h3 {
    color: var(--premium);
    margin-top: 15px;
    margin-bottom: 8px;
}

.modal-contenido p, 
.modal-contenido li {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

.modal-contenido a {
    color: var(--premium);
    text-decoration: none;
}

.modal-contenido a:hover {
    text-decoration: underline;
}

.cerrar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--premium);
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
    padding: 0;
    z-index: 10;
}

.cerrar-modal:hover {
    color: var(--primary);
}

.modal-contenido::-webkit-scrollbar {
    width: 5px;
}
.modal-contenido::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}
.modal-contenido::-webkit-scrollbar-thumb {
    background: var(--premium);
    border-radius: 10px;
}

/* ========== MODAL FAQ - CON IMAGEN JPG ========== */
.modal-faq {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.modal-faq-contenido {
    background: url('img-fondo/faq.jpg') no-repeat center center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 85%;
    max-width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 35px;
    border: 1px solid var(--premium);
    padding: 25px;
    text-align: left;
    position: relative;
    animation: fadeIn 0.3s;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.modal-faq-contenido h2 {
    color: var(--premium);
    text-align: center;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px;
    border-radius: 12px;
}

.modal-faq-contenido h3 {
    color: var(--premium);
    margin-top: 15px;
    margin-bottom: 8px;
}

.modal-faq-contenido p, 
.modal-faq-contenido li {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

.modal-faq-contenido a {
    color: var(--premium);
    text-decoration: none;
}

.modal-faq-contenido a:hover {
    text-decoration: underline;
}

.cerrar-modal-faq {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--premium);
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
    padding: 0;
    z-index: 10;
}

.cerrar-modal-faq:hover {
    color: var(--primary);
}

.modal-faq-contenido::-webkit-scrollbar {
    width: 5px;
}
.modal-faq-contenido::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}
.modal-faq-contenido::-webkit-scrollbar-thumb {
    background: var(--premium);
    border-radius: 10px;
}

.modal-faq-contenido .faq-item {
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.modal-faq-contenido .faq-question {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    color: var(--premium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.modal-faq-contenido .faq-question:hover {
    background: rgba(0, 0, 0, 0.45);
}

.modal-faq-contenido .faq-question::after {
    content: "▼";
    font-size: 10px;
    color: var(--premium);
    transition: transform 0.2s;
}

.modal-faq-contenido .faq-question.active::after {
    transform: rotate(180deg);
}

.modal-faq-contenido .faq-answer {
    display: none;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
}

.modal-faq-contenido .faq-answer.show {
    display: block;
}

/* ========== MODAL DE PERFIL - CON IMAGEN JPG ========== */
.modal-perfil {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.modal-perfil-contenido {
    background: url('img-fondo/perfil.jpg') no-repeat center center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 25px;
    border: 1px solid var(--premium);
    padding: 25px;
    position: relative;
    animation: fadeIn 0.3s;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.modal-perfil-contenido::-webkit-scrollbar {
    width: 5px;
}
.modal-perfil-contenido::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}
.modal-perfil-contenido::-webkit-scrollbar-thumb {
    background: var(--premium);
    border-radius: 10px;
}

.cerrar-modal-perfil {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: var(--premium);
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.cerrar-modal-perfil:hover {
    color: var(--primary);
}

/* ========== FOTO DE PERFIL CON ICONO CÁMARA PEGADO ========== */
.perfil-foto-container {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.perfil-foto {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 3px solid var(--premium);
    object-fit: cover;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.perfil-foto:hover {
    opacity: 0.85;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.perfil-foto-input {
    display: none;
}

.perfil-foto-edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--premium);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    border: 2px solid #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.perfil-foto-edit-icon:hover {
    transform: scale(1.1);
    background: #ffaa00;
}

.perfil-avatar-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -20px;
    top: -10px;
}

.perfil-rank-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.5));
}

.perfil-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.perfil-stat-card {
    background: transparent;
    border-radius: 25px 25px;
    padding: 2px 2px;
    text-align: center;
    margin-top: 60px;
    margin-left: 18px;
    margin-bottom: 20px;
    min-width: 60px;
}
.perfil-stat-card:last-child {
    margin-top: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.perfil-stat-card:last-child .stat-value {
    margin-bottom: 25px;
    margin-left: -10px;
    color: orange;
    font-weight: 900;
}

.perfil-stat-card .stat-value {
    font-size: 25px;
    font-weight: bold;
    color: var(--premium);
}

.perfil-stat-card .stat-label {
    font-size: 11px;
    font-weight: 1000;
    color: white;
}

.perfil-email {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: #ccc;
    word-break: break-all;
    background: rgba(0,0,0,0.3);
    padding: 8px;
    border-radius: 20px;
}

.modal-perfil-contenido h3 {
    color: var(--premium);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

/* ========== MULTIPLICADOR XP DENTRO DEL PERFIL ========== */
.xp-multiplier-container {
    margin-top: -50px;
    margin-left: -190px;
}
.xp-multiplier-img {
    width: 60px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-block;
}
.xp-multiplier-img:hover {
    transform: scale(1.05);
}
.xp-multiplier-status {
    display: none;
}
.xp-multiplier-count {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 6px;
    background: transparent;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    min-width: 30px;
    position: relative;
    left: -47px;
    top: 2px;
}

.multiplier-indicator {
    font-size: 10px;
    color: #ffaa00;
    text-align: center;
    margin-top: 6px;
    font-weight: bold;
    animation: pulseGlow 1s infinite;
    background: transparent;
    padding: 4px 8px;
    border-radius: 20px;
    width: fit-content;
    align-self: center;
}

.progress-container {
    margin: 15px 0;
}
.progress-bar {
    background: #333;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}
.progress-fill {
    background: var(--premium);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rachas-estrellas {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin: 5px 0 8px 0;
    flex-wrap: wrap;
}

.hito-card {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 4px 4px;
    text-align: center;
    flex: 1;
    min-width: 45px;
    border: 1px solid rgba(255,204,0,0.3);
    backdrop-filter: blur(5px);
}

.hito-card.alcanzado {
    border-color: var(--premium);
    background: rgba(255,204,0,0.15);
}

.estrella-icono {
    font-size: 18px;
}

.hito-numero {
    font-size: 9px;
    font-weight: bold;
}

.hito-label {
    font-size: 7px;
    color: #aaa;
}

.racha-record {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #aaa;
    background: rgba(0,0,0,0.3);
    padding: 5px;
    border-radius: 20px;
}

.logros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.logro-item {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.logro-item.obtenido {
    background: rgba(255,204,0,0.15);
    border: 1px solid var(--premium);
}

.logro-icono {
    font-size: 24px;
}

.logro-nombre {
    font-size: 10px;
    margin-top: 5px;
}

.sonido-control {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0;
    backdrop-filter: blur(5px);
}

.sonido-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sonido-icono {
    font-size: 24px;
    cursor: pointer;
}

.sonido-slider {
    width: 100%;
    cursor: pointer;
    accent-color: var(--premium);
}

.config-item {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 12px;
    margin: 8px 0;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
}

.config-item:hover {
    background: rgba(255,204,0,0.15);
}

.config-item.cerrar-sesion {
    background: none;
    border: none;
    padding: 8px 0;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    backdrop-filter: none;
}

.config-item.cerrar-sesion:hover {
    background: none;
    color: var(--primary);
}

/* ========== ENERGÍA Y OTROS ========== */
.level-wrapper {
    margin: 15px 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
.rank-icon-top {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 4px;
}
.progress-bar-thin {
    background: #333;
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
    width: 100%;
}
.progress-fill-thin {
    background: var(--premium);
    height: 100%;
    width: 0%;
    border-radius: 10px;
}
.xp-text-small {
    font-size: 9px;
    color: #aaa;
    margin-top: 4px;
    text-align: right;
}

.energia-basica-container {
    margin-bottom: 20px;
    text-align: left;
}
.energia-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.energia-icon {
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}
.energia-icon.low {
    color: #ff6666;
    text-shadow: 0 0 6px #ff0000;
}
.energia-icon.medium {
    color: var(--premium);
    text-shadow: 0 0 6px rgba(255,204,0,0.6);
}
.energia-icon.high {
    color: var(--premium);
    text-shadow: 0 0 10px rgba(255,204,0,0.9);
    animation: pulseGlow 1.5s infinite;
}
.energia-icon.full {
    color: #ffdd44;
    text-shadow: 0 0 14px #ffaa00;
    animation: pulseGlow 1s infinite;
}
.energia-label {
    font-size: 13px;
    font-weight: bold;
    color: #ddd;
}

.energy-segments {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}
.energy-segment {
    flex: 1;
    height: 12px;
    background-color: #2a2a2a;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.energy-segment.active {
    background: linear-gradient(180deg, #ffcc00, #ffaa00, #ff8800);
    box-shadow: 0 0 6px rgba(255,204,0,0.6);
}
.energy-segment.active.low {
    background: linear-gradient(180deg, #ff6666, #ff4444, #cc0000);
    box-shadow: 0 0 5px rgba(255,68,68,0.5);
}

.flash-animation {
    animation: flash 0.3s ease-out;
}
.pulse-animation {
    animation: pulseGlow 0.6s ease-out;
}

.energia-text {
    font-size: 12px;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* ========== BOTÓN VER ANUNCIO 3D COMPACTO ========== */
.anuncio-3d-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-amarillo-3d);
    color: #221a00;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 6px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.3);
    transition: transform 0.1s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-top: 8px;
    margin-left: auto;
    margin-right: 5px;
}

.anuncio-3d-btn:active {
    transform: scale(0.96);
}

.anuncio-3d-icon {
    font-size: 14px;
}

.anuncio-3d-text {
    font-size: 10px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.anuncio-espera {
    font-size: 10px;
    color: var(--premium);
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 20px;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.energia-basica-container::after {
    content: "";
    display: table;
    clear: both;
}

.faq-item {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}
.faq-question {
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    color: var(--premium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.faq-question:hover {
    background: rgba(0,0,0,0.7);
}
.faq-question::after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.2s;
}
.faq-question.active::after {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 10px 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 0 0 12px 12px;
    margin-top: -5px;
    font-size: 12px;
    line-height: 1.4;
}
.faq-answer.show {
    display: block;
}

/* ========== CONTADOR VIP PROFESIONAL ========== */
.vip-timer {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--premium);
    text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    text-align: center;
    background: rgba(0, 0, 0, 0.0);
    padding: 2px 2px;
    border-radius: 20px;
    display: inline-block;
    width: auto;
}

#vipTiempoRestante {
    font-family: 'Segoe UI', monospace;
}
/* ========== ANIMACIÓN DESBLOQUEO LEGENDARIO (VIP) ========== */
@keyframes legendaryUnlock {
    0% { 
        opacity: 0; 
        transform: scale(3) rotate(-5deg); 
        filter: brightness(2) drop-shadow(0 0 50px #ffcc00);
    }
    30% { 
        opacity: 1; 
        transform: scale(1.1) rotate(2deg); 
        filter: brightness(1.5) drop-shadow(0 0 30px #ffcc00);
    }
    50% {
        transform: scale(0.95) rotate(-1deg);
        filter: brightness(1.2) drop-shadow(0 0 20px #ffcc00);
    }
    70% {
        transform: scale(1.02) rotate(0.5deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
        filter: brightness(1) drop-shadow(0 0 15px #ffcc00);
    }
}

@keyframes goldenGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,204,0,0.4), inset 0 0 10px rgba(255,204,0,0.2); }
    50% { box-shadow: 0 0 50px rgba(255,204,0,0.8), inset 0 0 20px rgba(255,204,0,0.5); }
}

@keyframes floatParticles {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

@keyframes particleFade {
    0% { opacity: 0; }
    30% { opacity: 0.5; }
    100% { opacity: 0.15; }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.vip-legendary-animation {
    animation: legendaryUnlock 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.vip-card-glow {
    animation: goldenGlow 2s infinite ease-in-out;
}

.vip-particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ffcc00 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0;
    animation: floatParticles 8s linear infinite, particleFade 1.5s ease-out forwards;
    pointer-events: none;
    z-index: -1;
}

#vipActivatedAlert > div {
    animation: fadeInScale 0.3s ease-out;
}
/* ============================================================ */
/* TARJETA VIP - CADA ELEMENTO EDITABLE POR SEPARADO            */
/* ============================================================ */

/* Contenedor principal (fondo, borde, disposición general) */
.perfil-vip-card {
    background: linear-gradient(135deg, rgba(255,204,0,0.15), rgba(255,204,0,0.05));
    border-radius: 20px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid var(--premium);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* ===== ICONO VIP (EDITABLE INDIVIDUALMENTE) ===== */
.perfil-vip-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px #ffcc00);
    animation: vipPulse 2s infinite ease-in-out;
    position: relative;
    top: 0;
    left: 0;
}

/* ===== TÍTULO "VIP ACTIVO" (EDITABLE INDIVIDUALMENTE) ===== */
.perfil-vip-titulo {
    color: var(--premium);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.5);
    position: relative;
    top: 0;
    left: 25px;
    margin-bottom: 3px;
}

/* ===== CONTADOR DE TIEMPO (EDITABLE INDIVIDUALMENTE) ===== */
.perfil-vip-tiempo {
    color: #fff;
    font-size: 19px;
    opacity: 0.9;
    font-style: normal;
    position: relative;
    top: 0;
    left: 15px;
}

/* ===== CONTENEDOR DE TEXTOS (EDITABLE - afecta título + contador juntos) ===== */
.perfil-vip-texto {
    text-align: left;
    flex: 1;
    position: relative;
    top: 0;
    left: 0;
}

/* ===== BOTÓN "EXTENDER" (EDITABLE INDIVIDUALMENTE) ===== */
.perfil-vip-btn {
    background: var(--premium);
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 10px;
    white-space: nowrap;
    transition: 0.2s;
    position: relative;
    top: 0;
    left: 10px;
}

.perfil-vip-btn:hover {
    background: #ffaa00;
    transform: scale(1.02);
}

/* Animación de brillo para el icono */
@keyframes vipPulse {
    0%, 100% { filter: drop-shadow(0 0 8px #ffcc00); }
    50% { filter: drop-shadow(0 0 15px #ffcc00); }
}
/* ============================================================ */
/* SELECTOR PROFESIONAL CON BUSCADOR - VERSIÓN LIMPIA Y FUNCIONAL */
/* ============================================================ */

.custom-select-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.custom-select-trigger {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 20, 30, 0.95);
    border: 1.5px solid rgba(255, 204, 0, 0.4);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-trigger .arrow {
    color: var(--premium);
    font-size: 14px;
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    background: #1a1a2a;
    border: 2px solid var(--premium);
    border-radius: 12px;
    margin-top: 5px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
}

.custom-select-dropdown.show {
    display: block;
}

.custom-select-search {
    display: none !important;
}

.custom-select-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-select-option {
    padding: 12px 15px;
    color: #ddd;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-select-option:hover {
    background: rgba(255, 204, 0, 0.2);
    color: #fff;
}

.custom-select-trigger.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #555;
}
/* ========== CONTADOR VIP - CORRECCIÓN DE POSICIONAMIENTO ========== */

/* Elimina TODOS los left/top que fuerzan posiciones */
.vip-icon {
    color: var(--premium);
    font-size: 15px;
    margin-right: 5px;
    text-shadow: 0 0 5px #ffcc00;
}

.vip-label {
    color: var(--premium);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 5px;
    text-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
}

.vip-bracket-open {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-right: 3px;
}

.vip-bracket-close {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-left: 3px;
}

.vip-value {
    color: var(--premium);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.6px;
}

.vip-unit-d, .vip-unit-h, .vip-unit-a, .vip-unit-m {
    color: black;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 2px;
    margin-right: 2px;
}

/* Asegurar que el contenedor del temporizador centre el texto */
.vip-timer {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--premium);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    letter-spacing: 0.5px;
    text-align: center;
    background: rgba(0, 0, 0, 0.0);
    padding: 2px 2px;
    border-radius: 20px;
    display: inline-block;
    width: auto;
}

/* Para el contador dentro de la tarjeta VIP del perfil */
.perfil-vip-card .vip-timer {
    text-align: left;
}

/* ============================================================ */
/* MODAL EXTENDER VIP - CON FONDO COMPLETO SIN RECORTES         */
/* ============================================================ */

.modal-extender-vip-bg {
    background: url('img-fondo/fondo.jpg') no-repeat center center;
    background-size: cover;
    background-color: #0a0a1a;
    width: 85%;
    max-width: 350px;
    padding: 25px 20px;
    border-radius: 30px;
    border: 2px solid var(--premium);
    text-align: center;
    background-position: center 15%;
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
    position: relative;
}

.modal-extender-vip-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 30px;
    z-index: 0;
}

.modal-extender-vip-bg > * {
    position: relative;
    z-index: 1;
}
/* Estilo del círculo que se llena al seleccionar */
.custom-select-option {
    position: relative;
    padding-left: 35px !important;
}

.custom-select-option::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--premium);
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}

.custom-select-option.selected::before {
    background: var(--premium);
    box-shadow: 0 0 8px var(--premium);
    border-color: #fff;
}

.custom-select-option.selected::after {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

/* ============================================================ */
/* NUEVOS ESTILOS - RESULTADO BÁSICO MEJORADO                    */
/* ============================================================ */

.result-box-mejorado {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 60, 60, 0.3);
    margin-top: 15px;
    animation: fadeIn 0.5s ease;
}

.result-header-basico {
    padding: 12px 15px;
    background: rgba(255, 60, 60, 0.12);
    border-bottom: 1px solid rgba(255, 60, 60, 0.2);
    text-align: center;
}

.result-badge-basico {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 60, 60, 0.5);
}

.result-grid-basico {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
}

.result-card-basico {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 15px;
    padding: 14px 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-label-basico {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-value-basico {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(255, 60, 60, 0.6);
    line-height: 1.2;
}

.premium-teaser-section {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(255, 204, 0, 0.02));
    margin: 5px 15px 15px 15px;
    border-radius: 18px;
    padding: 15px;
    border: 1px solid rgba(255, 204, 0, 0.25);
}

.teaser-title {
    text-align: center;
    color: var(--premium);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

.teaser-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.teaser-benefit-item {
    color: #ddd;
    font-size: 12px;
    padding: 5px 0 5px 8px;
    border-left: 3px solid var(--premium);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 8px 8px 0;
}

.teaser-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--premium), #ffaa00);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.teaser-cta-btn:hover {
    transform: scale(0.98);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #ffdd33, #ffbb00);
}

.teaser-cta-btn:active {
    transform: scale(0.96);
}

.result-footer-basico {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #aaa;
    flex-wrap: wrap;
    gap: 8px;
}

.result-footer-basico span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================ */
/* NUEVOS ESTILOS - SECCIÓN VIP MEJORADA                         */
/* ============================================================ */

.vip-section-mejorada {
    background: transparent;
}

.vip-header-premium {
    text-align: center;
    margin-bottom: 15px;
}

.vip-titulo-principal {
    font-size: 22px;
    font-weight: 900;
    color: var(--premium);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    margin-bottom: 5px;
}

.vip-subtitulo {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vip-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium), transparent);
    margin: 10px 0 15px 0;
}

.vip-beneficios-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.vip-beneficios-titulo {
    color: var(--premium);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-beneficios-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
}

.vip-beneficio-icono {
    color: var(--premium);
    font-size: 16px;
    min-width: 24px;
    text-align: center;
}

.vip-precio-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.vip-precio-titulo {
    color: var(--premium);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vip-precio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.vip-precio-item {
    background: rgba(255, 204, 0, 0.08);
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.15);
}

.precio-moneda {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 5px;
}

.precio-valor {
    font-size: 22px;
    font-weight: 900;
    color: var(--success-green);
    margin-bottom: 3px;
}

.precio-metodo {
    font-size: 10px;
    color: #888;
}

.vip-codigo-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.vip-codigo-titulo {
    color: var(--premium);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.vip-codigo-input {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 14px;
    color: white;
    text-align: center;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.vip-codigo-input:focus {
    border-color: var(--premium);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
    outline: none;
}

.vip-codigo-input::placeholder {
    color: #666;
    letter-spacing: 2px;
}

.vip-codigo-nota {
    text-align: center;
    font-size: 10px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 12px;
}

.vip-footer-frase {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: var(--premium);
    font-style: italic;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

/* ========== CONTACTO VIP ========== */
.vip-contacto-email {
    text-align: center;
    font-size: 12px;
    color: #ccc;
    margin: 8px 0;
}

.vip-contacto-whatsapp {
    text-align: center;
    font-size: 12px;
    color: var(--whatsapp);
    cursor: pointer;
    margin: 5px 0;
    transition: all 0.2s;
}

.vip-contacto-whatsapp:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ========== BANNER ADSENSE ========== */
.adsense-banner-container {
    text-align: center;
    min-height: 100px;
    margin: 15px 0;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adsense-banner-container ins {
    border-radius: 8px;
    overflow: hidden;
}