/* public */
.btn-style {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 72px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient(180deg, #7979FF -27.78%, #C859FF 50%);
    transition: transform .3s linear;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-style::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 20px);
    height: 25px;
    background: #FF9EE7;
    filter: blur(10px);
    border-radius: 100%;
}

.btn-style:hover {
    color: #fff;
    transform: scale(1.05);
    animation: main-btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
    .btn-style {
        width: 235px;
        height: 60px;
        font-size: 16px;
        font-weight: 700;
    }
}

/* main + title */
.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 85px 0px 0px 0px;
    position: relative;
}

.main>* {
    position: relative;
    z-index: 1;
}

.main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 466px;
    pointer-events: none;
    background: linear-gradient(-176.08deg, rgba(232, 173, 255, 0.9) -0.22%, rgba(255, 255, 255, 0) 70.24%);
}

.main .help-module {
    width: 100%;
    max-width: 1200px;
    padding: 0px;
}

.main .help-module .title-box {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
}

.main .help-module .title-box h1 {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
}

.main .help-module .title-box .h1-desc {
    color: #1A1A1A;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main {
        padding: 58px 0px 0px 0px;
    }

    .main .help-module {
        padding: 0px 15px;
    }

    .main .help-module .title-box {
        margin-bottom: 26px;
    }

    .main .help-module .title-box h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .main .help-module .title-box .h1-desc {
        font-size: 15px;
    }
}

/* main + title (end) */

/* search */
.search-box {
    height: 60px;
    max-width: 926px;
    width: 100%;
    padding: 0px;
    margin: 0 auto 122px;
    position: relative;
}

.search-box .search-input {
    height: 100%;
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #1A1A1A;
    box-sizing: border-box;
}

.search-box .search-input:focus {
    outline: none;
    border: 2px solid #D059FF;
}

.search-box .search-input::placeholder {
    color: #666666;
}

.search-box .search-icon {
    position: absolute;
    left: 19px;
    top: 20px;
    width: 22px;
    height: 22px;
    border: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .search-box {
        margin-bottom: 35px;
        padding: 0px;
    }

    .search-box .search-input {
        padding: 14px 20px 14px 44px;
    }

    .search-box .search-icon {
        left: 16px;
    }
}

/* search (end) */


/* help list box */
.help-list-box {
    display: flex;
    gap: 25px;
    max-width: 1200px;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

/* 左侧大卡片 */
.purple-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;

    border-radius: 17px;
    width: 50%;
    max-width: 542px;
    height: 406px;
    background-color: #E3C1FF;
    padding: 27px 27px 44px 27px;
}

.purple-card .img-cover {
    border-radius: 17px;
    width: 100%;
    height: 267px;
    object-fit: cover;
    margin-bottom: auto;
}

.purple-card .card-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.purple-card .card-footer .card-footer-title {
    display: flex;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #1A1A1A;
}

.purple-card .card-footer .img-arrow {
    display: flex;
    width: 32px;
    height: 32px;
}

/* 右侧两个小卡片容器 */
.right-cards {
    max-width: 542px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 50%;
}

.yellow-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    text-decoration: none;

    gap: 26px;
    border-radius: 16px;
    width: 100%;
    height: 179px;
    background-color: #FFF3A6;
    padding: 25px;
}

.green-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    text-decoration: none;

    gap: 26px;
    border-radius: 17px;
    width: 100%;
    height: 179px;
    background-color: #D7FFAE;
    padding: 25px;
}

.green-card .img-cover,
.yellow-card .img-cover {
    border-radius: 17px;
    width: 219px;
    height: 129px;
    object-fit: cover;
}

.green-card .card-footer,
.yellow-card .card-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent;
}

.green-card .card-footer .card-footer-title,
.yellow-card .card-footer .card-footer-title {
    display: flex;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #1A1A1A;
}

.green-card .card-footer .img-arrow,
.yellow-card .card-footer .img-arrow {
    position: absolute;
    right: 21px;
    top: 21px;
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .help-list-box {
        flex-direction: column;
        gap: 12px;
        padding: 0px 0px 0px 0px;
    }

    .purple-card,
    .right-cards {
        width: 100%;
        max-width: 100%;
    }


    .right-cards {
        width: 100%;
        flex-direction: column;
        align-items: self-start;
        gap: 12px;
    }

    .purple-card,
    .yellow-card,
    .green-card {
        padding: 0px;
        width: 100%;
        height: 58px;
        border-radius: 10px;
    }

    .purple-card .card-footer,
    .yellow-card .card-footer,
    .green-card .card-footer {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        background: transparent;
        flex-direction: row;
        padding: 22px 15px 22px 19px;
    }

    .img-cover,
    .img-icon {
        display: none;
        margin: 0;
    }

    .purple-card .card-footer .img-arrow,
    .yellow-card .card-footer .img-arrow,
    .green-card .card-footer .img-arrow {
        position: absolute;
        right: 15px;
        top: 17px;
        width: 25px !important;
        height: 25px !important;
    }

    .green-card .card-footer .card-footer-title,
    .yellow-card .card-footer .card-footer-title,
    .purple-card .card-footer .card-footer-title {
        font-size: 16px;
        font-weight: 600;
    }
}

/* help list box (end) */

/* faqs */
.faq-detail-section {
    width: 100%;
    max-width: 1400px;
    margin-top: 140px;
    transition: all 0.6s ease;
    display: block;
}

.faq-detail-section .section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #1A1A1A;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}

.faq-item {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 1400px;
    background: #F5F7F9;
    border-radius: 14px;
    padding: 26px 32px 26px 50px;
    margin-bottom: 20px;
    border: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 0;
}

.faq-item .info-titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    flex: 1;
    line-height: 1;
}

.faq-item.active h3 {
    color: #D15DFF;
}

.faq-item .faq-icon {
    width: 18px;
    height: 18px;
    color: #ADACAC;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    color: #CF60FF;
}

.faq-item .faq-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-item .info-content {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.4;
    margin-top: 19px;
    display: none;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .info-content {
    display: block;
    height: auto;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.faq-detail-section .see-more-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-detail-section .see-more-btn-container .see-more-btn {
    margin-top: 50px;
}

.faq-item,
.info-titles,
.info-titles h3,
.faq-icon {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.info-content {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

@media (max-width: 768px) {
    .faq-detail-section {
        margin-top: 60px;
        padding: 0px 15px;
    }

    .faq-detail-section .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .faq-detail-section .see-more-btn-container .see-more-btn {
        margin-top: 40px;
    }

    .faq-item {
        padding: 19px 17px 19px 17px;
        margin-bottom: 14px;
    }

    .faq-item h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .faq-item .info-content {
        font-size: 14px;
        font-weight: 400;
    }
}

/* faqs (end) */

/* Contact Our Customer Support */
.contact-section {
    width: 100%;
    margin-top: 150px;
    background-color: #F5F7F9;
    padding: 97px 15px 120px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.contact-section .contact-section-left {
    height: 100%;
    max-width: 400px;
    width: 40%;
    flex-shrink: 0;
    background: transparent;
    overflow: hidden;
}

.contact-section .contact-section-left img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.contact-section .contact-section-right {
    height: 100%;
    max-width: 800px;
    width: 60%;
    flex-shrink: 1;
    background: transparent;
}

.contact-section .contact-section-right .section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 35px;
    width: 100%;
    text-align: left;
}

.contact-section .contact-section-right .section-desc {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.2;
    margin-top: 20px;
    white-space: normal;
    font-family: Figtree;
}

.section-desc a {
    cursor: pointer;
    color: #D063FF;
    font-size: 13px;
    font-weight: 400 !important;
    font-family: Figtree;
}

.contact-section .contact-section-right .form-container {
    margin-top: 40px;
    gap: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: transparent;
}

.contact-section .contact-section-right .form-container .form-item {
    margin-top: 0px;
    gap: 10px;
    width: 100%;
    min-height: 79px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: transparent;
}

.contact-section .contact-section-right .form-container .form-item .form-item-title {
    color: #040304;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    line-height: 1;
}

.contact-section .contact-section-right .submit-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section .contact-section-right .submit-btn-container .submit-btn {
    margin-top: 50px;
}

.contact-section .contact-section-right .form-item input {
    height: 50px;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: Figtree;
    font-size: 16px;
    line-height: 1.4;
    color: #1A1A1A;
    background-color: #FEFEFE;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: none;
}

.contact-section .contact-section-right .form-item input:focus {
    outline: none;
    border: 2px solid #D059FF;
}

.contact-section .contact-section-right .form-item input::placeholder {
    color: #A4A7AA;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

/* textarea-box 上传描述框 */
.textarea-box {
    width: 100%;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
    height: 180px;
}

.textarea-box:focus {
    border: 2px solid #D059FF;
}

.textarea-box .issue-upload-box {
    width: 60px;
    height: 60px;
    background-color: #F5F7F9;
    border-radius: 6px;
}

.textarea-box textarea {
    height: 100%;
    width: 100%;
    padding: 0px;
    border: none;
    border-radius: 8px;
    font-family: Figtree;
    font-size: 16px;
    line-height: 1.4;
    color: #1A1A1A;
    background-color: #FEFEFE;
    box-sizing: border-box;
    resize: none;
}

.textarea-box textarea:focus {
    outline: none;
    border: none;
}

.textarea-box textarea::placeholder {
    color: #A4A7AA;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

/* 错误提示样式 */
.error-tips {
    display: none;
    color: #ff4d4f;
    font-size: 12px;
    font-family: Figtree;
    margin-top: 4px;
}

.error-tips.active {
    display: block;
}

/* 上传区域样式 */
.issue-upload-box {
    width: 80px;
    height: 80px;
    background-color: #F5F7F9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.issue-upload-box:hover {
    border-color: #C07DFF;
    background-color: #F8F0FF;
}

.issue-upload-box.uploading {
    border: 2px solid #4172FF !important;
    background-color: #F0F5FF !important;
}

/* 上传图标 */
.issue-upload-icon img {
    width: 19px;
    height: 19px;
}

/* 上传hover */
.upload-container {
    position: relative;
    display: inline-block;
}

.upload-hint {
    position: absolute;
    bottom: calc(100% + 8px);
    /* 在元素上方显示 */
    left: 60%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.upload-hint::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.upload-container:hover .upload-hint {
    opacity: 1;
    visibility: visible;
}

.upload-container {
    cursor: pointer;
}

/* 上传中动画 */
.upload-progress {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.upload-progress.active {
    display: flex;
}

.upload-progress img {
    width: 30px;
    height: 30px;
}

/* 上传预览 */
.upload-preview {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.upload-preview.active {
    display: block;
}

.upload-preview img,
.upload-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 预览遮罩层 */
.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-preview:hover .preview-overlay {
    opacity: 1;
}

/* 移除按钮 */
.preview-remove {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.preview-remove:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .issue-upload-box {
        width: 70px;
        height: 70px;
    }

    .textarea-box {
        height: 220px;
    }

    .upload-container {
        gap: 10px;
    }

    .upload-progress img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        width: 100%;
        margin-top: 60px;
        background-color: #F5F7F9;
        padding: 50px 15px 48px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
    }

    .contact-section .contact-section-left {
        border-radius: 15px;
        margin-top: 38px;
        height: 241px;
        width: 345px;
        flex-shrink: 0;
        background: transparent;
        order: 1;
        overflow: hidden;
        /* 使用背景图 */
        background-image: url('https://images.noviai.ai/noviaien/assets/common/support-contact-imgCover.png');
        background-size: 345px auto;
        background-position: center -40px;
        background-repeat: no-repeat;
    }

    .contact-section .contact-section-left img {
        display: none;
    }

    .contact-section .contact-section-right {
        margin-top: 0px;
        height: auto;
        max-width: 100%;
        width: 100%;
        background: transparent;
        order: 0;
    }

    .contact-section .contact-section-right .section-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 8px;
        width: 100%;
    }

    .contact-section .contact-section-right .section-desc {
        font-size: 14px;
        font-weight: 400;
        margin-top: 14px;
    }

    .contact-section .contact-section-right .form-container {
        margin-top: 29px;
        gap: 20px;
    }

    .contact-section .contact-section-right .form-container .form-item {
        margin-top: 0px;
        gap: 10px;
        width: 100%;
        min-height: 79px;
    }

    .contact-section .contact-section-right .form-container .form-item .form-item-title {
        font-size: 16px;
        font-weight: 600;
        width: 100%;
    }

    .contact-section .contact-section-right .submit-btn-container .submit-btn {
        margin-top: 30px;
    }

}

/* Contact Our Customer Support (end) */


/* more-support-section */
.more-support-section {
    width: 100%;
    margin-top: 96px;
    background-color: transparent;
    padding: 0px 15px 0px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.more-support-section .section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #1A1A1A;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}

.more-support-section .more-support-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.more-support-section .more-support-container .support-proceed-box .img-tip-icon {
    width: 60px;
    height: 60px;
}

.more-support-section .more-support-container .support-proceed-box .support-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #1A1A1A;
    margin-top: 36px;
    width: 100%;
    text-align: left;
}

.more-support-section .more-support-container .support-proceed-box .support-card-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
    margin-top: 18px;
    width: 100%;
    text-align: left;
}

.more-support-section .more-support-container .support-proceed-box .discord-card .text-bg-tip {
    font-size: 90px;
    font-weight: 800;
    color: #FFFFFF66;
    width: 521px;
    height: 82px;
    position: absolute;
    right: 12px;
    top: 15px;
    overflow: hidden;
    line-height: 1;
    background: url('https://images.noviai.ai/noviaien/assets/common/support-textImg-discord.png');
}

.more-support-section .more-support-container .support-proceed-box .refund-card .text-bg-tip {
    font-size: 90px;
    font-weight: 800;
    color: #FFFFFF66;
    width: 510px;
    height: 104px;
    position: absolute;
    right: 0px;
    top: 0px;
    overflow: hidden;
    line-height: 1;
    background: url('https://images.noviai.ai/noviaien/assets/common/support-textImg-refund.png');
}

.more-support-section .more-support-container .support-proceed-box {
    display: flex;
    background: transparent;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 0px;
    min-height: 275px;
    width: 100%;
    max-width: 1397px;
    margin: 0 auto;
}

.more-support-section .more-support-container .support-proceed-box .support-card {
    padding: 44px 35px 35px 35px;
    height: auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    gap: 0px;
    position: relative;
}

.more-support-section .more-support-container .support-proceed-box .refund-card {
    background-color: #FFF7C4;
    order: 0;
    width: calc(837 / (1397 - 30) * 100%);
}

.more-support-section .more-support-container .support-proceed-box .privacy-card {
    background-color: #E6FBD0;
    order: 1;
    width: calc(532 / (1397 - 30) * 100%);
}

.more-support-section .more-support-container .support-proceed-box .terms-card {
    background-color: #EEDBFF;
    order: 0;
    width: calc(532 / (1397 - 30) * 100%);
}

.more-support-section .more-support-container .support-proceed-box .discord-card {
    background-color: #E0E3FF;
    order: 1;
    width: calc(837 / (1397 - 30) * 100%);
    padding-right: 270px !important;
}

.more-support-section .more-support-container .support-proceed-box .btn-joinNow-container {
    width: 217px;
    height: 60px;
    position: absolute;
    right: 35px;
    bottom: 35px;
}

.more-support-section .more-support-container .support-proceed-box .btn-joinNow-container .btn-joinNow-icon {
    width: 24px;
    height: 19px;
}

.more-support-section .more-support-container .support-proceed-box .btn-joinNow-container .btn-joinNow {
    width: 217px;
    height: 60px;
    background: #4654FF;
    color: #FFFFFF;
    border: none;
    border-radius: 15px;
    padding: auto 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 768px) {
    .more-support-section {
        width: 100%;
        margin-top: 60px;
        padding: 0px 15px 0px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
    }

    .more-support-section .section-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 24px;
        width: 100%;
    }

    .more-support-section .more-support-container {
        gap: 20px;
    }

    .more-support-section .more-support-container .support-proceed-box .support-card-title {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .more-support-section .more-support-container .support-proceed-box .support-card-desc {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }

    .more-support-section .more-support-container .support-proceed-box {
        flex-direction: column;
        gap: 20px;
    }

    .more-support-section .more-support-container .support-proceed-box .support-card {
        width: 100% !important;
        align-items: center;
        padding: 22px 17px !important;
    }

    .more-support-section .more-support-container .support-proceed-box .discord-card .text-bg-tip {
        margin-top: 22px;
        font-size: 50px;
        font-weight: 800;
        color: #FFFFFF66;
        overflow: hidden;
        line-height: 1;
        position: static !important;
        text-align: center;
        width: 311px;
        height: 49px;
        margin: 16px auto 0px;
        background: url('https://images.noviai.ai/noviaien/assets/common/support-textImg-discord-app.png');
    }

    .more-support-section .more-support-container .support-proceed-box .refund-card .text-bg-tip {
        font-size: 50px;
        font-weight: 800;
        color: #FFFFFF66;
        overflow: hidden;
        line-height: 1;
        position: static !important;
        text-align: center;
        width: 320px;
        height: 66px;
        margin: 16px auto 0px;
        background: url('https://images.noviai.ai/noviaien/assets/common/support-textImg-refund-app.png');
    }

    .more-support-section .more-support-container .support-proceed-box .btn-joinNow-container {
        margin-top: 22px;
        position: static !important;
        width: 100%;
        height: 60px;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
}

/* more-support-section (end) */

/* address-section */
.address-section {
    width: 100%;
    height: 571px;
    max-height: 571px;
    margin-top: 150px;
    background-color: transparent;
    padding: 0px 15px 0px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 78px;
}

.address-section .address-section-left {
    height: 100%;
    max-width: 660px;
    width: 50%;
    flex-shrink: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 20px;
    flex-grow: 1;
}

.address-section .address-section-left img {
    border-radius: 20px;
    width: 100%;
    width: 100%;
}

.address-section .address-section-right {
    height: 100%;
    max-width: 659px;
    width: 50%;
    flex-shrink: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    flex-grow: 0;
}

.address-section .address-section-right .address-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    color: #1A1A1A;
    margin-bottom: 64px;
    width: 100%;
    text-align: left;
}

.address-section .address-section-right .address-desc-box {
    width: 100%;
    margin-bottom: 23px;
    background-color: transparent;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}

.address-section .address-section-right img {
    width: 20px;
    height: 20px;
    margin-top: 10px;
}

.address-section .address-section-right .address-line {
    background-color: #D4D8DC;
    height: 2px;
    width: 100%;
    margin: 17px 0px 38px 0px;
}

.address-section .address-section-right .address-desc-bolded {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 13px;
    line-height: 1.4;
    font-family: Figtree;
    text-align: left;
    white-space: nowrap;
}

.address-section .address-section-right .address-desc-normal {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    margin-top: 13px;
    line-height: 1.4;
    font-family: Figtree;
    text-align: left;
}

.address-section .address-section-right .address-desc-email {
    font-size: 16px;
    font-weight: 400;
    color: #CF60FF;
    margin-top: 13px;
    line-height: 1.4;
    font-family: Figtree;
    text-align: left;
}

@media (max-width: 768px) {
    .address-section {
        width: 100%;
        height: auto;
        max-height: 1000px;
        margin-top: 60px;
        padding: 0px 15px 0px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
    }

    .address-section .address-section-left {
        width: 100%;
        height: 100%;
        max-width: 343px;
        max-height: 297px;
        border-radius: 15px;
    }

    .address-section .address-section-left img {
        border-radius: 15px;
    }

    .address-section .address-section-right .address-title {
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 25px;
    }

    .address-section .address-section-right {
        height: auto;
        width: 100%;
        justify-content: center;
    }

    .address-section .address-section-right .address-desc-box {
        display: grid;
        grid-template-columns: 20px auto;
        grid-template-rows: auto auto;
        column-gap: 9px;
        row-gap: 5px;
        width: 100%;
        margin: 0px auto 23px;
    }

    .address-section .address-section-right .address-desc-box img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        align-self: flex-start;
        margin-top: 0;
    }

    .address-section .address-section-right .address-desc-box .address-desc-bolded {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        font-size: 16px;
        margin-top: 0;
        align-self: flex-start;
        white-space: nowrap;
    }

    .address-section .address-section-right .address-desc-box .address-desc-normal {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        font-size: 14px;
        margin-top: 0;
        text-align: left;
        padding-left: 0;
        width: 100%;
        margin-left: 30px;
    }

    .address-section .address-section-right .address-desc-box .address-desc-email {
        color: #CF60FF;
        grid-column: 3 / 3;
        grid-row: 1 / 1;
        font-size: 14px;
        margin-top: 0;
        text-align: left;
        padding-left: 0;
        width: 100%;
        margin-left: 4px;
    }

    .address-section .address-section-right .address-line {
        display: none;
    }
}

/* address-section (end) */

/* tip pop-up */
.content-submitForm-box .dmca-form .dmca-form-row .dmca-form-group .error-tips {
    display: block;
    height: 24px;
    font-size: 14px;
    color: #D83C03;
    font-family: Figtree;
    margin-top: 4px;
    min-height: 18px;
}

.submit-success-aside.pop-up {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

.submit-success-aside-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .6;
    cursor: pointer;
}

.pop-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    max-width: 594px;
    width: 90%;
    padding: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    margin: auto;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pop-cont .btn-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 28px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.pop-up .pop-cont .btn-close::before {
    position: absolute;
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    transform: rotate(45deg);
    background: #2e2e2e;
    top: 14px;
    left: 6px;
}

.pop-up .pop-cont .btn-close::after {
    position: absolute;
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    transform: rotate(135deg);
    background: #2e2e2e;
    top: 14px;
    left: 6px;
}

.icon-success {
    display: inline-block;
    margin-bottom: 20px;
}

.icon-success svg {
    width: 72px;
    height: 72px;
}

.pop-cont .txt-title {
    margin: 30px auto 40px;
    font-size: 24px;
    color: #000;
    text-align: center;
    font-family: Figtree;
    font-weight: 600;
    line-height: 1.4;
}

.ok-close {
    width: 200px;
    height: 50px;
    background: #D063FF;
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
    color: #FFF;
    font-weight: 600;
    cursor: pointer;
    font-family: Figtree;
    font-size: 16px;
    transition: all 0.2s ease;
}

.ok-close:hover {
    background: #D063FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-error-message,
.form-success-message {
    animation: fadeIn 0.3s ease;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-family: Figtree;
    font-size: 14px;
}

.form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* tip pop-up */