* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, sans-serif;
}

.support-section {
    min-height: 49vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, rgb(1, 1, 9), rgb(22, 21, 21));
    color: #fff;
}

.support-container {
    text-align: center;
    max-width: 460px;
    width: 100%;
}

.support-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
}

#animated-text {
    display: inline-block;
    position: relative;
}

#animated-text::after {
    content: "24/7";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #e9f00f;
    animation: underline 3s infinite ease-in-out;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.btn {
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: #deb901;
    color: #020617;
    font-size: 1.25rem;
}

.btn.secondary {
    border: 2px solid #f8df38;
    color: #ffea00;
    font-size: 1.25rem;
    background-color: rgb(5, 5, 49);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #f2f4f5f6;
}

/* Desktop */
@media (min-width: 768px) {
    .support-title {
        font-size: 2.8rem;
    }

    .support-links {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        min-width: 200px;
    }
}

@keyframes underline {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}