* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Cambiato da center a flex-start */
    padding-top: 5vh; /* Aggiunto padding superiore */
    min-height: 100vh;
    background-color: #1e1e2f;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: background-color 0.4s;
    width: 100vw;
    height: 100vh;
}

.content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.foot {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-button {
    padding: 12px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    animation: ripple-animation 1s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(25);
        opacity: 0;
    }
}

.routify-special:hover {
    background: rgba(195, 255, 104, 1);
    transform: scale(1.1);
}