.content {
    padding: 100px;
}

.floating-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(245, 245, 245, 0.7));
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease;
    padding: 5px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), inset 0 0 4px rgba(0, 0, 0, 0.03);
}

.floating-button::before, .floating-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-button::before {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.floating-button::after {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.floating-button:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(245, 245, 245, 0.85));
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07), inset 0 0 4px rgba(0, 0, 0, 0.03);
}

.floating-button:hover::before, .floating-button:hover::after {
    opacity: 1;
}