.buttonsContainer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.buttonsContainer .qrWrapper {
    width: 10.2rem;
    height: 10.2rem;
}

.buttonsContainer .qrCode {
    width: 10rem;
    height: 10rem;
    padding: 0.5rem;
    background: #000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttonsContainer .qrCode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.buttonsContainer .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.buttonsContainer .buttons .downloadButton {
    width: 12rem;
    height: 4.5rem;
    object-fit: cover;
    border-radius: 0.45rem;
    display: block;
}

.rotating-border {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    display: inline-block;
}

.rotating-border::before {
    content: "";
    position: absolute;
    width: 1000%;
    height: 1000%;
    left: -450%;
    top: -450%;
    background-image: conic-gradient(rgba(255, 215, 0, 0.7) 20deg, transparent 100deg);
    animation: rotateBorder 6s linear infinite;
}

.rotating-border>* {
    position: relative;
    z-index: 2;
    margin: 1px;
    border-radius: inherit;
    overflow: hidden;
}

.bannerButtonsContainer {
    gap: 0.5rem;
}

.bannerButtonsContainer .buttons {
    display: flex;
    gap: 0.5rem;
}

.bannerButtonsContainer .buttons .downloadButton {
    width: 12rem;
    height: 4.2rem;
    object-fit: cover;
    border-radius: 0.45rem;
    display: block;
}

.socialIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.socialIcons .iconWrapper {
    position: relative;
    display: inline-block;
}

.socialIcons .iconWrapper .icon,
.socialIcons .iconWrapper .hoverIcon {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease-in;
}

.socialIcons .iconWrapper .hoverIcon {
    display: none;
}

.socialIcons .iconWrapper:hover .icon {
    display: none;
}

.socialIcons .iconWrapper:hover .hoverIcon {
    display: block;
}

.unstyled-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(-360deg);
    }
}

@media screen and (max-width: 768px) {
    .buttonsContainer {
        flex-direction: column;
    }

    .buttonsContainer .buttons .downloadButton,
    .bannerButtonsContainer .buttons .downloadButton {
        width: 10rem;
        height: 3.8rem;
    }

    .buttonsContainer .qrWrapper {
        width: 8.5rem;
        height: 8.5rem;
    } 

    .buttonsContainer .qrCode {
        width: 8.3rem;
        height: 8.3rem;
    }

    .socialIcons {
        gap: 0.5rem;
    }

    .socialIcons .iconWrapper .icon,
    .socialIcons .iconWrapper .hoverIcon {
        width: 1.7rem;
        height: 1.7rem;
    }
}

@media screen and (max-width: 520px) {
    .downloadButton {
        width: 8rem !important;
        height: 3rem !important;
    }
}