*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

/* Glassmorphism background effect if supported */
@supports (backdrop-filter: blur(10px)) {
    body {
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
    }
}

div {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 300;
    font-size: 2rem;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: #1d1d1f15;
    transition: all 0.4s ease;
}

a:last-child::after {
    display: none;
}

a:hover {
    background: rgba(0, 0, 0, 0.03);
    padding-left: 40px;
    color: #000;
}

a:hover::after {
    left: 0;
    right: 0;
    background: transparent;
}

a svg {
    height: 0.8em;
    width: 0.8em;
    opacity: 0.3;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

a:hover svg {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 480px) {
    a {
        font-size: 1.5rem;
        padding: 15px 25px;
    }
}