/* 弹窗遮罩 */
.modal-overlay-two {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
}
.LaungeActive{
    visibility:visible;
}
.language-modal {
    background-color: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: modal-appear 0.3s ease-out;
    position: relative;
}
.fasItemClose {
    font-size: 30px;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header-two {
    background-color: #f8f9fa;
    padding: 20px 24px;
    border-bottom: 1px solid #eaeaea;
}

.modal-header-two h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.language-options {
    padding: 0;
}

.language-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #f9f9f9;
}

.language-option:last-child {
    border-bottom: none;
}

.language-info {
    display: flex;
    align-items: center;
}

.language-name {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.language-option.selected .language-name {
    color: #2e7d32;
    font-weight: 600;
}

.checkmark {
    color: #2e7d32;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.language-option.selected .checkmark {
    opacity: 1;
}

.language-number {
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

.language-option.portuguese .flag-icon {
    color: #2e7d32;
}

.language-option.english .flag-icon {
    color: #3f51b5;
}

.language-option.chinese .flag-icon {
    color: #d32f2f;
}

.flag-icon {
    margin-right: 12px;
    font-size: 20px;
}

/* 底部按钮 */
.modal-footer-two {
    padding: 20px 24px;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: flex-end;
}

.confirm-btn {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.confirm-btn:hover {
    background-color: #1b5e20;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .coins-container {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .app-card {
        min-width: 100%;
    }
}