        .top-banner {
            max-width: 720px;
            width: 100%;
            border-radius: 16px;
            border: 1px solid #EDE9FE;
            background-color: #FFFFFF;
            padding: 12px 16px;
            box-shadow: 0px 20px 40px -24px #2E106529;
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 0;
            overflow: hidden;
            margin: auto;
            margin-top: 32px;
        }

        .top-banner .badge {
            padding: 2px 6px 2px 14px;
            border: 0.5px solid #DDDDF8;
            border-radius: 6px;
            font-size: 12px;
            line-height: 16px;
            color: #DDDDF8;
            margin-left: 8px;
            position: relative;
        }

        .top-banner .badge::before {
            content: "•";
            color: #DDDDF8;
            position: absolute;
            top: 50%;
            left: 7.5px;
            transform: translate(-50%, -50%);
        }

        .top-banner .gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .top-banner .close {
            cursor: pointer;
        }

        .top-banner .btn-white {
            border: 1px solid #EAEAEA;
            border-radius: 8px;
            background-color: #F9F9F9;
            padding: 8px 16px;
            font-size: 14px;
            line-height: 20px;
            font-weight: 400;
            color: #000000;
            transition: all 0.2s ease-in-out;
        }

        .top-banner .btn-white:hover {
            border-color: #000000;
        }

        .top-banner .non-btn {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .top-banner .text {
            display: flex;
            flex-direction: column;
        }

        .top-banner .text .bold {
            font-size: 18px;
            line-height: 28px;
            color: #FFFFFF;
            font-weight: 700;
        }

        .top-banner .text .normal,
        .top-banner .text .normal * {
            font-size: 14px;
            line-height: 20px;
            color: #EAEAEA;
        }

        .top-banner .left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            flex-grow: 1;
        }

        @media(max-width: 622px) {
            .top-banner .btn-white {
                width: 100%;
            }

            .top-banner {
                align-items: start;
            }

            .top-banner .close {
                position: absolute;
                top: 12px;
                right: 12px;
            }

        }

        @media (max-width: 320px) {
            .top-banner .text {
                padding-right: 20px;
            }
        }