/* Brillo para el texto resaltado */
    .text-shadow-glow {
    text-shadow: 0 0 20px rgba(132, 204, 22, 0.4);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

body {
    background-image: radial-gradient(circle at top right, #1a1d24, #0f1115);
    min-height: 100vh;
}

.glass-card {
    background: rgba(22, 24, 29, 0.7);
    backdrop-filter: blur(12px);
}

.glass-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilo para las opciones del desplegable */
select option {
    background-color: #1a1d24;
    color: white;
    padding: 12px;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeInScale 0.4s ease-out forwards;
}

#user-info {
    animation: slideInRight 0.5s ease-out forwards;
    display: flex;
}

#user-photo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}
#user-photo:hover {
    transform: scale(1.1) rotate(3deg);
    filter: brightness(1.2);
    border-color: #84cc16;
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.5);
}

nav {
    min-height: 75px;
    display: flex;
    align-items: center;
}
#user-name {
    letter-spacing: 0.15em;
    color: #9ca3af;
    font-weight: 700;
}
#btn-login {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
#btn-login:hover {
    background: #1f232b;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.15);
}
#btn-login::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transform: rotate(30deg);
}

#btn-login:hover::after {
    transition: all 0.6s ease;
    left: 150%;
}

.btn-whatsapp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d8d42 0%, #0a6f34 100%);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #11a250 0%, #0d8d42 100%);
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 35%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-whatsapp:hover::after {
    opacity: 1;
}

a[href*="t.me"] {
    position: relative;
    overflow: hidden;
}
a[href*="t.me"]:hover {
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

.comunidad-pulse {
    animation: pulse-blue 2s infinite;
}

.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 320px;
    background: rgba(15, 23, 42, 0.95);
    color: #f8fafc;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(132, 204, 22, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    font-size: 12px;
    line-height: 1.5;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification a {
    color: #84cc16;
    text-decoration: underline;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #84cc16;
}