* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background: #000;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.wrapper {
    padding-top: 100px;
    max-width: 768px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), #1a1a1a 90%), url("/static/img/taplink-image.webp") center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;
}

.logo {
    margin-bottom: 3rem;
    width: 180px;
    height: 60px;
    background: url("/static/vector/logo-font.svg") center / contain no-repeat;
    animation: lighthouse 3s infinite ease-in-out;
}

@keyframes lighthouse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 111, 171, 0.6));
    }
}

.buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 360px;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff5f8d, #ff9966);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 130%;
}

.btn-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon i {
    font-size: 1.2rem;
}

.btn-text {
    flex-grow: 1;
    text-align: left;
}

.btn-subtext {
    flex-grow: 1;
    text-align: left;
    font-size: 0.6rem;
    color: #eee;
}

.bnt-flex-text {
    display: flex;
    flex-direction: column;
}

.btn-glow {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
    border-radius: 25px;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }
    50% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}