body {
    background-color: rgba(220, 163, 203, 0.73); /* 蓝粉色背景 */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(188, 66, 151, 0.36);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header img {
    height: 60px;
    width: 100px;
}

/* 用户资料容器 */
.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 用户头像小样式 */
.user-avatar-small {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-right: 3px;
    border: 2px solid rgba(255, 255, 255, 0.49);
    vertical-align: middle;
}

/* 搜索框样式 */
.search-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    padding: 0 5%;
    gap: 10px;
}

.search-bar {
    width: 60%;
    max-width: 800px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 10px 12px 15px; /* 右侧留出搜索图标空间 */
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
}

.search-bar input:focus {
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* 公告轮播容器 */
.announcement-container {
    display: flex;
    margin: 30px auto;
    max-width: 1200px;
    gap: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(245, 245, 245, 0.65));
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 20px;
}

/* 轮播图容器 */
.slider-container {
    flex: 2;
    min-width: 0; /* 防止flex元素溢出 */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* 轮播图 */
.slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* 轮播图片 */
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
}

/* 箭头按钮 */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }

/* 公告栏样式 */
.notification-title {
    font-size: 24px;
    font-weight: bold;
    color: #a24c8e;
    text-align: center;
    margin: 0 0 15px 0; /* 调整外边距 */
    padding-bottom: 10px;
    position: relative;
    z-index: 100;
}

.notification-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #a24c8e, transparent);
}

.notification-list {
    position: relative;
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; /* 垂直布局 */
    z-index: 10;
}

.notification-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
}

/* 公告项容器 */
.notification-items-container {
    z-index: 10;
    overflow-y: auto;
    max-height: 350px;
    width: 100%;
}

.notification-item:not(:last-child) {
    border-bottom: 1px dashed rgb(255, 255, 255);
}

.notification-item:hover {
    background-color: #ffffff;
    transform: translateX(5px);
}

.notification-item::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(204, 204, 204, 0.62);
    border-radius: 50%;
    margin-right: 10px;
}

.notification-item.important {
    color: #e67e22;
    font-weight: 500
}

.notification-item.important::before {
    background: #e67e22;
}

.notification-item.urgent {
    color: #e74c3c;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.notification-item.urgent::before {
    background: #e74c3c;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .notification-list {
        padding: 15px;
    }

    .notification-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .notification-header {
        font-size: 16px;
    }

    .notification-items-container {
        max-height: 250px;
    }
}

/* 公告模态框样式 */
.content-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.content-modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #666;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #a24c8e;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    white-space: pre-wrap; /* 保留换行和空格 */
    padding: 0 20px;
}

.modal-body {
    position: relative;
    overflow: hidden;
}

.modal-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

.modal-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    pointer-events: none;
}

/* 预加载隐藏区域 */
.preload-area {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
}

/* 推荐信息样式 */
.user-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 10px;
    margin: 30px 5%;
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    .user-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .user-grid {
        grid-template-columns: 1fr;
    }
}

/* 单个卡片样式 */
.recommendation-item {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    height: 250px;
    max-width: 250px;
    margin: 0 auto;
    margin-top:10px;
    margin-bottom: 10px;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
    align-items: center; /* 居中对齐内容 */
}

/* 统一头像样式 */
.user-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 2px solid rgb(212, 143, 191);
    margin-bottom: 8px; /* 增加底部间距 */
}

.user-avatar.loaded {
    opacity: 1;
}

/* 文字样式 */
.recommendation-item h3 {
    font-size: 16px;
    margin: 8px 0;
}

.recommendation-item p {
    font-size: 14px;
    margin: 5px 0;
}

/* 分页样式 */
.pagination-container {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 10px;
    margin: 30px auto;
    width: 90%;
    max-width: 800px;
}

/* 分页按钮组 */
.pagination {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 通用按钮样式 */
.pagination a,
.pagination span {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 14px; /* 字体大小 */
}

/* 普通页码按钮 */
.page-number {
    border: 0.8px solid #ccc;
    color: rgb(246, 173, 224);
    background: white;
}

/* 当前页 */
.current-page {
    background: #f8aee2 !important;
    color: white !important;
    transform: scale(1);
}

/* 导航按钮 */
.page-nav {
    border: 1px solid rgb(246, 173, 224);
    color: #ffa8e5;
    background: rgba(234, 137, 218, 0.09);
}

/* 悬停效果 */
.page-number:hover,
.page-nav:hover {
    background-color: rgb(246, 173, 224);
    color: white;
    transform: translateY(-1px);
}

/* 页面信息 */
.page-info {
    color: #666;
    font-size: 14px;
    text-align: center; /* 居中对齐文本 */
    margin-top: 5px; /* 与分页按钮组保持一定距离 */
}

/* 登录提示动画 */
.login-prompt {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a24c8e;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease-out;
    display: none;
}

.login-prompt.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 消失时的动画 */
.login-prompt.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

#globalMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; top: 0; }
    to { opacity: 1; top: 20px; }
}

/* 模态框内部消息样式 */
.modal-message {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a24c8e;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1002;
    display: none;
    max-width: 90%;
    text-align: center;
    animation: modalMessageFadeIn 0.3s;
}

.modal-message.error {
    background-color: #c683c3;
}

@keyframes modalMessageFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 认证按钮样式 */
.auth-btn {
    background: rgba(162, 76, 142, 0.69);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
    /* 确保可以点击 */
    pointer-events: auto;
    /* 确保不被其他元素遮挡 */
    position: relative;
    z-index: 1;
}

.auth-btn:hover {
    background: #8c3a6e;
}

.welcome-msg {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.3s;
}

/* 模态框样式 */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.auth-modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 25px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.3s;
    pointer-events: auto;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #666;
}

/* 表单样式 */
.auth-form {
    padding: 10px;
}

.auth-form h3 {
    color: #a24c8e;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #a24c8e;
    outline: none;
    box-shadow: 0 0 0 2px rgba(162, 76, 142, 0.2);
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    color: #666;
    user-select: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #a24c8e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #8c3a6e;
}

.auth-switch {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.auth-switch a {
    color: #a24c8e;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.auth-switch a:hover {
    color: #6d3359;
    text-decoration: underline;
}

.error-msg {
    color: rgba(108, 51, 88, 0.87);
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .auth-modal-content {
        width: 90%;
        margin: 20% auto;
    }
}

/* 用户类型选择样式 */
.user-type-choice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
}

.user-type-btn {
    width: 200px;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.user-type-btn i {
    font-size: 20px;
}

.user-type-btn.user-btn {
    background-color: #a14b8d;
    color: white;
}

.user-type-btn.admin-btn {
    background-color: #4b8da1;
    color: white;
}

.user-type-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* 重置按钮样式 */
.reset-btn {
    background: rgba(162, 76, 142, 0.1);
    color: #a24c8e;
    border: 1px solid rgba(162, 76, 142, 0.3);
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    opacity: 0.7;
}

.reset-btn:hover {
    background: rgba(162, 76, 142, 0.2);
    color: #8c3a6e; /* 悬停加深颜色 */
    opacity: 1;
}

.reset-btn svg {
    transition: transform 0.3s;
}

.reset-btn:hover svg {
    transform: rotate(90deg);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #a24c8e; /* 与主题色一致 */
    font-size: 18px;
    padding: 5px;
    transition: color 0.3s;
    z-index: 2; /* 确保按钮在最上层 */
}

.search-btn:hover {
    color: #8c3a6e; /* 悬停加深颜色 */
}

/* 无结果提示 */
.no-results-message {
    width: 80%;
    margin: 0 auto 10px;
    text-align: center;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #a24c8e;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(162, 76, 142, 0.2);
    font-weight: bold;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 人脸识别模态框样式 */
.face-recognition-container {
    text-align: center;
    padding: 20px;
}

.face-recognition-container .loading {
    font-size: 22px;
    color: #a14b8d;
    margin-bottom: 20px;
    text-align: center;
}

.face-recognition-container img {
    width: 100px;
    height: 100px;
    margin: 10px 0;
}

/*  匹配容器样式  */
.match-container {
    align-items: center;
    text-align: center;
    margin: 30px auto;
    padding: 0 5%;
}

/* 匹配按钮样式 */
.match-btn {
    background: linear-gradient(135deg, #a24c8e, #d175b8);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(162, 76, 142, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.match-btn:hover {
    background: linear-gradient(135deg, #8c3a6e, #b85a9b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 76, 142, 0.4);
}

/* 匹配次数信息 */
.match-count-info {
    color: #a24c8e;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* 匹配结果容器 */
.match-results {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    width: 950px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 15px;
}

/* AI匹配容器样式 */
.ai-match-container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 15px;
}

/* 用户卡片本身 */
.match-user {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-percentage {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #a24c8e, #d175b8);
    color: white;
    padding: 8px 13px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
}

.user-avatar-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.basic-info {
    margin: 0 auto;
    width: fit-content;
}

.basic-info div {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.basic-info span:first-child {
    font-weight: bold;
    color: #a24c8e;
}

.match-feedback {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.like-btn, .dislike-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn {
    background: linear-gradient(135deg, #a24c8e, #d175b8);
    color: white;
}

.dislike-btn {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #666;
}

.like-btn:hover, .dislike-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.like-btn:disabled, .dislike-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.like-btn:disabled:hover, .dislike-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* AI响应区域 */
.ai-response {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    min-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ai-response::before {
    content: "";
    display: block;
    width: 80%;
    height: 5px;
    background: linear-gradient(to right, transparent, #a24c8e, transparent);
    margin: -15px auto 25px;
}

/* 加载动画样式 */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-heart {
    font-size: 60px;
    color: #ff6b9d;
    animation: heartbeat 3s infinite;
    text-shadow: 0 0 15px rgba(255,107,157,0.7);
    margin-bottom: 20px;
}

.loading-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

@keyframes heartbeat {
    0% { transform: scale(0.8); opacity: 0.8; }
    25% { transform: scale(1.2); opacity: 1; }
    50% { transform: scale(0.9); opacity: 0.9; }
    75% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.95; }
}

/* 匹配关闭按钮 */
.match-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 1;
}

.match-close-btn:hover {
    color: #a24c8e;
}
