* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html, body {
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 0.7292vw;
    overflow: hidden;
}

.app-main {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.u-fc {
    display: flex;
    justify-content: center;
    align-items: center;
}

span, div:not(.app-main), img:not(.line_sp), svg, path, input {
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

body {
    width: 100vw;
    height: 100vh;
    background: #232323;
}

.icon,
.svg-icon {
    filter: brightness(0) invert(1);
}

.icon.icon-fill {
    filter: none !important;
}

img[src$="logo.gif"] {
    filter: none !important;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(35, 35, 35, 0.4);
    backdrop-filter: blur(1.042vw);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease-out, backdrop-filter 0.6s ease-out;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.521vw;
}

.intro-screen.hidden {
    opacity: 0;
    backdrop-filter: blur(0);
    pointer-events: none;
}

.intro-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 1.563vw;
    cursor: pointer;
    transition: transform 0.25s ease-out, filter 0.25s ease-out;
    filter: drop-shadow(0 0.26vw 0.521vw rgba(0, 0, 0, 0.3));
}

.intro-text {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.833vw;
    opacity: 0.5;
    margin: 0;
    pointer-events: none;
}

.intro-button:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0.417vw 0.833vw rgba(255, 255, 255, 0.4));
}

.intro-button:active {
    transform: scale(0.9);
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56.25vw;
    background-image: url('/assets/img/overlay.png');
    background-size: 100% 100%;
    z-index: -1;
    animation: overlayFade 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ===== Entry Animations ===== */
@keyframes nuiReveal {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(2vw);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(1.5vw);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFadeSmall {
    from {
        opacity: 0;
        transform: translateY(0.8vw);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineExpand {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 0.05;
        transform: scaleX(1);
    }
}

.nui {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 39.063vw;
    height: 42.135vw;
    padding: 1.302vw;
    background: url('/assets/img/bg.png') no-repeat center center;
    background-size: 100% 100%;
    /* backdrop-filter: blur(0.391vw); */
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 52.083vw;
    contain: layout style paint;
    animation: nuiReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.nui .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 1.146vw;
    opacity: 0;
    animation: slideUpFadeSmall 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}

.nui .title .left-side {
    /* empty */
}

.nui .title .left-side span {
    color: #BEA681;
    text-align: left;
    font-family: Inter-Regular;
    font-size: 0.938vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .title .left-side h1 {
    color: #FFF;
    text-align: left;
    font-family: Inter-Regular;
    font-size: 0.938vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .title .right-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.42vw;
}

.nui .title .right-side .box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.26vw;
}

.nui .title .right-side .box svg {
    width: 0.781vw;
    height: 0.781vw;
}

.nui .title .right-side .box .svg-icon {
    width: 0.781vw;
    height: 0.781vw;
}

.nui .title .right-side .box p {
    color: #FFF;
    text-align: right;
    font-family: Inter-Regular;
    font-size: 0.938vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .title .right-side .box .stroke {
    width: 0.104vw;
    height: 0.781vw;
    border-radius: 2.604vw;
    background: #BEA681;
}

.nui .title .right-side .line-separator {
    width: 0.104vw;
    height: 1.042vw;
}

.nui .line {
    width: 100%;
    height: 0.052vw;
    opacity: 0;
    background: radial-gradient(50% 50% at 50% 50%, #BEA681 0%, rgba(88, 77, 60, 0.25) 100%), #FFF;
    transform-origin: left;
    animation: lineExpand 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards;
}

.nui .banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 16.406vw;
    padding-top: 0.521vw;
    background: url('/assets/img/banner.png') no-repeat center center;
    background-size: 100% 100%;
    opacity: 0;
    animation: slideUpFade 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s forwards;
}

.nui .banner .header .user-banner {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36.458vw;
    height: 4.427vw;
    z-index: 0;
    margin-top: -7vw;
    opacity: 0;
    animation: slideUpFadeSmall 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.42s forwards;
}

.nui .banner .header .user-banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.nui .banner .header .user {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.469vw;
    height: 5.469vw;
    background: url('/assets/img/banner-use.png') no-repeat center center;
    background-size: 100% 100%;
    z-index: 1;
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

.nui .banner .header .user .avatar {
    width: 4.948vw;
    height: 4.948vw;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
}

.nui .banner .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.391vw;
}

.nui .banner .header h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter-Medium;
    font-size: 1.35vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0;
    animation: slideUpFadeSmall 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s forwards;
}

.nui .banner .header .badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.26vw;
    opacity: 0;
    animation: slideUpFadeSmall 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}

.nui .banner .header .badges svg {
    width: 0.95vw;
    height: 0.95vw;
    filter: brightness(0) invert(1) drop-shadow(0 0 0.3vw rgba(255, 255, 255, 0.8)) drop-shadow(0 0 0.6vw rgba(255, 255, 255, 0.5));
}

.nui .banner .header .badges .svg-icon {
    width: 0.80vw;
    height: 0.80vw;
    filter: brightness(0) invert(1) drop-shadow(0 0 0.3vw rgba(255, 255, 255, 0.8)) drop-shadow(0 0 0.6vw rgba(255, 255, 255, 0.5));
}

.nui .banner .header .badges .badge {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: help;
}

.nui .banner .header .badges .badge::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.365vw);
    transform: translateX(-50%) translateY(0.130vw);
    background: rgba(0, 0, 0, 0.88);
    color: #FFF;
    font-family: Inter-Regular;
    font-size: 0.573vw;
    line-height: 1;
    white-space: nowrap;
    padding: 0.313vw 0.469vw;
    border-radius: 0.260vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 40;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nui .banner .header .badges .badge::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.130vw);
    transform: translateX(-50%);
    border-left: 0.260vw solid transparent;
    border-right: 0.260vw solid transparent;
    border-top: 0.260vw solid rgba(0, 0, 0, 0.88);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 39;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}

.nui .banner .header .badges .badge:hover::after,
.nui .banner .header .badges .badge:hover::before {
    opacity: 1;
    visibility: visible;
}

.nui .banner .header .badges .badge:hover::after {
    transform: translateX(-50%) translateY(0);
}

.nui .banner .header p {
    width: 23.438vw;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.625vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0;
    animation: slideUpFadeSmall 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s forwards;
}

.nui .banner .btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 1.302vw;
    gap: 0.26vw;
}

.nui .banner .btns .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    padding: 0 1.094vw;
    border-radius: 1.302vw;
    background: #BEA681;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
}
.nui .banner .btns .btn:hover {
    transform: translateY(-0.130vw);
}
.nui .banner .btns .btn:active {
    opacity: 0.75;
}

.nui .banner .btns .btn p {
    color: #000;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.729vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .banner .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.604vw;
    gap: 0.26vw;
    background: url('/assets/img/banner-bottom.png') no-repeat center center;
    background-size: 100% 100%;
}

.nui .banner .bottom svg {
    width: 0.833vw;
    height: 0.833vw;
}

.nui .banner .bottom .svg-icon {
    width: 0.833vw;
    height: 0.833vw;
}

.nui .banner .bottom p {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-style: normal;
    font-weight: 400;
    font-size: 0.729vw;
    line-height: 0.885vw;
}

.nui .banner .bottom p span {
    color: #BEA681;
    text-align: center;
    font-family: Inter-Regular;
    font-style: normal;
    font-weight: 400;
    font-size: 0.729vw;
    line-height: 0.885vw;
}

.nui .socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    width: 100%;
    height: 17.604vw;
    gap: 0.781vw;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    animation: slideUpFade 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}
.nui .socials::-webkit-scrollbar {
    display: none;
}

.nui .socials .social {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 17.708vw;
    height: 6.979vw;
    gap: 0.521vw;
    padding-top: 0.521vw;
    background: url('/assets/img/socials-bg.png') no-repeat center center;
    background-size: 100% 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.nui .socials .social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/img/socials-bg-hover.png') no-repeat center center;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.nui .socials .social > * {
    position: relative;
    z-index: 1;
}
.nui .socials .social:nth-child(1) { animation-delay: 0.52s; }
.nui .socials .social:nth-child(2) { animation-delay: 0.58s; }
.nui .socials .social:nth-child(3) { animation-delay: 0.64s; }
.nui .socials .social:nth-child(4) { animation-delay: 0.7s; }
.nui .socials .social:nth-child(5) { animation-delay: 0.76s; }
.nui .socials .social:nth-child(6) { animation-delay: 0.82s; }
.nui .socials .social:hover::before {
    opacity: 1;
}
.nui .socials .social:active {
    opacity: 0.75;
}

.nui .socials .social .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.344vw;
    height: 2.344vw;
    border-radius: 50%;
    background: #BEA681;
}

.nui .socials .social .icon-box .icon {
    width: 1.25vw;
    height: 1.25vw;
    object-fit: contain;
    pointer-events: none;
}

.nui .socials .social .icon-box .icon.icon-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nui .socials .social .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.26vw;
}

.nui .socials .social .text h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.729vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .socials .social .text span {
    margin: -0.26vw;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.625vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.292vw;
    opacity: 0;
    animation: slideUpFadeSmall 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s forwards;
}

.nui .footer .line {
    width: 100%;
    height: 0.052vw;
    opacity: 0.05;
    background: radial-gradient(50% 50% at 50% 50%, #BEA681 0%, rgba(88, 77, 60, 0.25) 100%), #FFF;
}

.nui .footer .footer-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0.26vw;
}

.nui .footer .footer-text svg {
    width: 1.25vw;
    height: 1.25vw;
}

.nui .footer .footer-text .svg-icon {
    width: 1.25vw;
    height: 1.25vw;
}

.nui .footer .footer-text p {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.833vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nui .footer .footer-text span {
    color: #BEA681;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.833vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28.125vw;
    height: 13.542vw;
    gap: 0.938vw;
    background: url('/assets/img/modal-bg.png') no-repeat center center;
    background-size: 100% 100%;
    backdrop-filter: blur(0.391vw);
    z-index: 20;
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

.app-main.modal-open .nui,
.app-main.modal-open .music-player,
.app-main.modal-open .overlay,
.app-main.modal-open .bg-video {
    filter: blur(1.5vw);
}

.app-main.modal-open .nui,
.app-main.modal-open .music-player {
    pointer-events: none;
}

.modal .icon-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.167vw;
    height: 4.167vw;
    border-radius: 50%;
    background: #BEA681;
}

.modal .icon-box .icon {
    width: 1.563vw;
    height: 1.563vw;
    object-fit: contain;
    pointer-events: none;
}

.modal .icon-box .modal-alert-icon {
    width: 2.188vw;
    height: 2.188vw;
    object-fit: contain;
    pointer-events: none;
}

.modal .icon-box .icon.icon-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.modal .icon-box .alert-mark {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.188vw;
    height: 2.188vw;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #FFF;
    font-family: Inter-Medium;
    font-size: 1.563vw;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.modal .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.26vw;
}

.modal .text h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.938vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal .text span {
    margin-top: -0.26vw;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.729vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal .text .modal-url {
    max-width: 22.917vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal .btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 1.667vw;
    gap: 0.365vw;
}

.modal .btns .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.313vw;
    width: auto;
    height: 100%;
    padding: 0 1.406vw;
    border-radius: 1.667vw;
    background: #BEA681;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
}

.modal .btns .modal-confirm {
    background: #22C55E;
}

.modal .btns .modal-cancel {
    background: #EF4444;
}

.modal .btns .btn:hover {
    transform: translateY(-0.130vw);
}
.modal .btns .btn:active {
    opacity: 0.75;
}

.modal .btns .btn p {
    color: #FFF;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.833vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal .btns .btn .svg-icon {
    width: 0.833vw;
    height: 0.833vw;
    flex-shrink: 0;
    pointer-events: none;
}

.music-player {
    position: absolute;
    display: flex;
    align-items: center;
    top: 1.667vw;
    left: 2.604vw;
    opacity: 0;
    overflow: visible;
    animation: slideUpFadeSmall 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}

.music-player .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.188vw;
    height: 2.188vw;
    border-radius: 50%;
    background: #BEA681;
    flex-shrink: 0;
}

.music-player .music-icon {
    width: 1.042vw;
    height: 1.042vw;
    flex-shrink: 0;
}

.music-player .slider-wrap {
    position: relative;
    left: auto;
    top: auto;
    margin-left: 0.417vw;
    transform: scaleX(0.96);
    transform-origin: left center;
    display: flex;
    align-items: center;
    width: 7.188vw;
    height: 1.563vw;
    padding: 0 0.521vw;
    border-radius: 1.302vw;
    background: #BEA681;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.music-player:hover .slider-wrap,
.music-player:focus-within .slider-wrap,
.music-player .slider-wrap:hover {
    opacity: 1;
    pointer-events: auto;
    transform: scaleX(1);
}

.music-player .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.208vw;
    border-radius: 0.104vw;
    background: rgba(255, 255, 255, 0.4);
    outline: none;
}

.music-player .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0.781vw;
    height: 0.781vw;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 0.156vw rgba(0, 0, 0, 0.2);
}

.music-player .slider::-moz-range-thumb {
    width: 0.781vw;
    height: 0.781vw;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0.156vw rgba(0, 0, 0, 0.2);
}

@media (min-width: 2560px) {
}

/* Info Page Styles */
.info-description {
    width: auto;
    max-width: 26.042vw;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-family: Inter-Regular;
    font-size: 0.625vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 1.042vw auto 2.5vw;
    opacity: 0;
    animation: slideUpFadeSmall 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s forwards;
}

.info-top-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2vw;
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}

.info-top-icon img {
    width: 4vw;
    height: 4vw;
    object-fit: contain;
}

.info-content {
    width: 100%;
    max-width: 50vw;
    margin: 0 auto;
}

.info-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5vw;
    padding: 1.5vw 2vw 2.2vw 2vw;
    background: url('/assets/img/socials-bg.png') no-repeat center center;
    background-size: 100% 100%;
    min-height: 8vw;
    cursor: default;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.info-box:nth-child(1) { animation-delay: 0.52s; }
.info-box:nth-child(2) { animation-delay: 0.62s; }
.info-box:nth-child(3) { animation-delay: 0.72s; }

.info-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/img/socials-bg-hover.png') no-repeat center center;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-box:hover::before {
    opacity: 0.6;
}

.info-box > * {
    position: relative;
    z-index: 1;
}

.info-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: #BEA681;
}

.info-icon-box .svg-icon {
    width: 1.5vw;
    height: 1.5vw;
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.info-text h2 {
    color: #fff;
    font-size: 1.04vw;
    font-weight: 600;
    font-family: Inter-Medium;
    margin: 0;
    line-height: 1.3;
}

.info-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.73vw;
    font-family: Inter-Regular;
    line-height: 1.6;
    margin: 0;
}
