/* Bloquear todo tipo de scroll en la página */
html, body {
    overflow: hidden !important; /* nada de scroll horizontal ni vertical */
    max-width: 100vw;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    color: #fff;
    box-sizing: border-box;
}

/* El resto igual */

.profile_wrapper {
    padding: 20px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

.profile_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumb {
    margin-top: 25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.profile_head_bio {
    margin-top: 10px;
}
.profile_head_bio p {
    font-family: 'Roboto', sans-serif; /* tipografía más seria */
    font-size: 14px; /* tamaño reducido */
    line-height: 1.5; /* mejor legibilidad */
    color: #f0f0f0; /* tono blanco suave */
    margin: 0;
}


.profile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.SocialLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.asset-logo {
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    margin-right: 8px;
    border-radius: 50%;
}

.SocialLink_body h3 {
    margin: 0;
    font-size: 16px;
}

.footer {
    background: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.btn-black-inverted {
    background-color: #000;
    color: #fff;
}

.btn-reserva {
    background-color: #0bb1da;
    color: #fff;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-reserva i {
    margin-right: 10px;
}

.toast {
    position: fixed;
    top: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    text-align: center !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

@keyframes vibrar {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.vibrar {
    animation: vibrar 0.2s linear infinite;
}

nav {
    background-color: #000;
    padding: 0.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #333;
}

nav div.flex.items-center {
    justify-content: flex-start;
    padding-left: 1rem;
}

nav div.text-[#101518] {
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h1.text-white {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #f5f5f5;
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.6),
      0 0 10px #0bb1da;
    margin: 0;
    letter-spacing: 1px;
}
