.login-avatar {
    width: 40px;
    height: 40px;
    background-color: #FC54B0;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
}

.login-avatar-message {
    width: 40px;
    height: 40px;
    background-color: #FC54B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.login-avatar-message2 {
    width: 30px;
    height: 30px;
    background-color: #FC54B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.header1 {
    height: 8vh;
    border-bottom: 1px solid #150729;
    background-color: #150729;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.landing-container {
    padding-top: 8vh;
}

.chat-strategy-area {
    padding-top: 8vh;
}

.container {
    padding-top: 8vh;
}

.landing-area {
    padding-bottom: 40px;
}

.shortcuts-img {
    width: 30%;
    margin: 0px auto;
}

.header-button {
    position: relative;
    z-index: 1;
    margin-left: 0px;
    letter-spacing: 1px;
}

.header-special-button {
    border: 2px solid #FC54B0;
    padding: 2px 15px;
    margin-right: 30px;
    position: relative;
    border-radius: 50px;
    margin-left: 15px;
}

.header-special-button::before,
.header-special-button::after {
    content: '';
    position: absolute;
    border: 3px solid #FC54B0;
    border-radius: 50px;
    z-index: -1;
    animation: expand 2s infinite;
    opacity: 0;
}

.header-special-button::before {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    opacity: 0.5;
    animation-delay: 0s;
}

.header-special-button::after {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    opacity: 0.3;
    animation-delay: 1s;
}

.animate-container {
    width: 100%;
    min-height: 115vh;
    background: linear-gradient(180deg, #B23434 0%, #5A3798 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes expand {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.explanation-area {
    width: 100%;
    margin: 20px auto;
    color: #ffffff;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
}

.explanation-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    padding: 20px 10px;
}

.step img {
    width: 50%;
    height: auto;
    margin-bottom: 10px;
    margin-right: 15px;
}

.step p {
    width: 50%;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    padding: 0 10px;
}

.explanation-gap {
    margin-top: 40px;
}

.chat-now-button {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #FC54B0;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    outline: none;
    cursor: pointer;
    z-index: 10;
    margin-right: 5px;
}

.chat-now-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #FC54B0;
    border-radius: 50%;
    animation: ripple 1.5s infinite;
}

.chat-now-button::after {
    width: 45px;
    height: 45px;
    border: 4px solid #FC54B0;
    opacity: 0.5;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.mobile-menu {
    display: flex;
    cursor: pointer;
}

.header-icon>.more {
    width: 30px;
    height: 30px;
    display: flex;
}

.replace {
    width: 24px;
    cursor: pointer;
}

.replace img {
    width: 100%;
}

.padding-fix {
    padding: 2px 0 2px 5px;
}

.item-flex {
    display: flex; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-text {
    margin-left: 10px;
    width: 90px;
    display: none;
}

.margin-fix {
    margin-right: 30px;
}

/* RWD */
@media (max-width: 768px) {
    .explanation-text {
        font-size: 20px;
    }

    .step {
        flex-direction: column;
        padding: 10px 10px;
    }

    .step img {
        width: 100%;
    }

    .step p {
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .shortcuts-img {
        width: 50%;
        margin: 0px auto;
    }
}

@media (max-width: 480px) {
    .social-text {
        display: block;
    }

    .margin-fix {
        margin-right: 0;
    }
    
    .login-avatar {
        display: none;
    }

    /* .post-message-content-2>.login-avatar {
        display: flex;
    } */

    .comment-send-button {
        width: 80px;
    }

    .login-avatar2 {
        width: 60px;
        height: 60px;
        background-color: #FC54B0;
        border: 2px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        text-transform: uppercase;
        margin-top: 20px;
    }

    .shortcuts-img {
        width: 80%;
    }

    .header-button {
        width: 100%;
        text-align: center;
        color: #ffffff;
        letter-spacing: 2.5px;
        border: none;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-bottom: 0px;
    }

    .header-buttons {
        width: 60%;
        padding-top: 20px;
    }

    /* header 修改 */
    .login-user {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dropdown-user-name-right {
        margin-top: 5px;
    }

    .dropdown-user-time-right {
        margin-top: -15px;
    }

    .header-special-button {
        color: #FC54B0 !important;
        text-align: center;
        margin: 0px auto;
        text-shadow: 0 0 50px #DE0380, 0 0 150px #DE0380, 0 0 20px #DE0380;
        animation: neon 1.5s ease-in-out infinite alternate;
        cursor: pointer;
    }

    @keyframes neon {

        0%,
        100% {
            text-shadow: 0 0 20px #DE0380, 0 0 100px #DE0380, 0 0 20px #DE0380;
        }

        50% {
            text-shadow: 0 0 50px #DE0380, 0 0 150px #DE0380, 0 0 50px #DE0380;
        }
    }

    .header-special-button::before {
        display: none;
    }

    .header-special-button::after {
        display: none;
    }

    .dropdown-user-name-right {
        font-size: 20px;
    }

    .chat-now-button {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-link-2, .landing-link-3 {
        font-size: 16px;
        width: 80%;
        padding: 5px 0px;
    }

    .cookie-detail {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: auto;
    }

    .cookie-text {
        width: 100% !important;
        font-size: 12px;
    }

    .cookie-button-eara {
        margin: 0px auto !important;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .input-enter {
        width: 80%;
    }

    .strategy-text {
        font-size: 24px;
    }

    .explanation-text {
        font-size: 20px;
    }

    .step p {
        font-size: 16px;
    }

    .ai-virtua-card {
        height: 420px;
    }
}

/* landing 修改 */
.landing-container {
    background: linear-gradient(to bottom, #361B5D 30%, #B23434 60%, #5A3798 100%);
    z-index: 1;
}

.landing-main {
    justify-content: center;
}

.loading-area {
    margin-top: 60px;
}

.line-top {
    z-index: -1;
}

.line-top-MB {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.line-top-MB img {
    width: 100%;
    z-index: 0;
}

.landing-title {
    font-size: 40px;
}

.landing-sub {
    margin-top: 50px;
    margin-bottom: 0px;
}

.feature-text {
    font-size: 22px;
    margin-top: -20px;
    padding: 0px 40px;
}

.feature-card-area {
    padding-bottom: 30px;
}

.landing-title-white {
    color: #ffffff;
    /*font-size: 40px;*/
    font-size: 35px;
    /*margin-top: -20px;*/
    margin-top: -30px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0px 4px 4px #181818;
}

.landing-title-pink {
    font-size: 50px;
    color: #FC54B0;
    display: flex;
    justify-content: center;
    text-shadow: 0px 4px 4px #181818;
}

.landing-link-2 img {
    margin-top: 5px;
}

.landing-link-3 img {
    margin-top: 5px;
}

.message-title {
    font-size: 18px;
}

.message-detail, .message-btn {
    font-size: 14px;
}

.cookie-detail {
    height: auto;
}

.cookie-text {
    font-size: 14px;
    width: 75%;
}

.cookie-button {
    width: auto;
    padding: 0px 20px;
}

.cookie-button-eara {
    margin-left: 5px;
}

.main-title-black {
    font-size: 24px;
    padding: 0px 10px;
}


.main-description {
    font-size: 14px;
    line-height: 20px;
    padding: 0px 10px;
}

.input-enter {
    width: 50%;
    padding: 0px 10px;
    text-align: center;
}

.service-text {
    font-size: 16px;
}

.message-comment {
    font-size: 16px;
}

.announcement-button {
    font-size: 14px;
}

.post-title {
    font-size: 20px;
}

.post-subtitle {
    margin-top: 0px;
    font-size: 12px;
}

.action-button {
    font-size: 12px;
}

.comment-send-button {
    font-size: 12px;
    height: auto;
}

.message-nikcname, .comment-name {
    font-weight: 500;
}

.loading-match-button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 10px;
    color: #fff;
    background-color: #DE0380;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.basic-list {
    /*margin-bottom: 15px;*/
    margin-bottom: 5px;
}

.terms-text {
    text-align: left;
}

.feature-title-back {
    font-size: 14px;
}

@media (max-width: 480px) {
    .login-avatar2 {
        width: 60px;
        height: 60px;
        background-color: #FC54B0;
        border: 2px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        text-transform: uppercase;
        margin-top: 20px;
    }

    .loading-area {
        margin-top: 20px;
        width: 80%;
    }

    .landing-title-pink {
        font-size: 40px;
    }

    .landing-title-white {
        /*font-size: 30px;*/
        font-size: 28px;
        margin-top: -20px;
    }

    #loginForm {
        margin-top: -10px;
    }

    .captcha-container {
        margin-top: 0px;
    }

    .line-top {
        display: none;
    }

    .line-top-MB {
        display: block;
    }

    .check {
        margin-top: 20px;
    }

    .landing-title {
        font-size: 30px;
    }

    .feature-text {
        font-size: 14px;
        margin-top: -15px;
    }
}

.shortcuts-img {
    margin: 20px 0px;
}

.strategy-text {
    margin-top: 20px;
}

/* AI角色(不知道為什麼遺失) */

.match-wait {
    display: flex;
    gap: 20px;
}

.match-unsuccessful {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

.ai-container {
    position: relative;
    width: 100%;
    min-height: 120vh;
    overflow-x: hidden;
    overflow-y: hidden;
    background: linear-gradient(to bottom, #B23434, #5A3798);
    padding-top: 8vh;
}

.ai-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.ai-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.ai-virtual-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 0 10px;
    margin: 20px 0px;
}

.ai-virtua-card {
    width: 250px;
    height: 390px;
    background-color: #fff;
    padding: 5px 10px 5px 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 8px solid rgba(152, 182, 246, 0.2);
    box-shadow: 4px 10px 15px #621686;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ai-virtua-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 0px 5px rgba(152, 182, 246, 0.2), 0px 0px 0px 5px #FC54B0;
}

.ai-virtua-img {
    width: 180px;
}

.ai-virtua-img img {
    width: 100%;
    border-radius: 10px;
}

.ai-virtua-name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0px;
}

.ai-virtua-introduce {
    font-size: 14px;
    text-align: left;
    margin: 0px;
    height: 130px;
}


.virtual-button {
    color: #ff00bf;
    background-color: transparent;
    border: 1px solid #ff00bf;
    border-radius: 50px;
    padding: 5px 25px;
    text-align: center;
    cursor: pointer;
}

.virtual-button:hover {
    border: 1px solid #FC54B0;
    color: #FC54B0;
}

.virtual-button-area {
    display: flex;
    justify-content: space-around;
    margin: 10px 0px;
}

@media (min-width: 481px) and (max-width: 800px) {
    .ai-virtua-card {
        height: 400px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .match-wait {
        flex-direction: column;
        gap: 0px;
        display: block;
    }


    .ai-title {
        font-size: 28px;
    }

    .ai-virtual-marning {
        margin-top: 0px;
    }

    .ai-virtual-area {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .ai-virtua-card {
        width: 250px;
        height: 370px;
    }

    .ai-virtua-introduce {
        height: 130px;
    }

    .ai-virtua-img {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .match-wait {
        flex-direction: column;
        gap: 0px;
        display: block;
    }

    .ai-title {
        font-size: 28px;
    }

    .ai-virtual-marning {
        margin-top: 0px;
    }

    .ai-virtual-area {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .ai-virtua-card {
        width: 250px;
        height: 370px;
    }

    .ai-virtua-introduce {
        height: 130px;
    }

    .ai-virtua-img {
        width: 180px;
    }
}

/* AI角色(不知道為什麼遺失) */