/* 全建筑展示页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

body {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1708 50%, #0d0d0d 100%);
    color: #fff;
}

/* 背景动画 */
#animations {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.animation {
    position: absolute;
}

.animation1 { left: 1%; top: 1%; }
.animation2 { left: 0.5%; bottom: 13%; }
.animation3 { left: 20%; top: 60%; }
.animation4 { left: 30%; top: 15%; }
.animation5 { left: 45%; top: 2%; }
.animation6 { left: 60%; top: -2%; }
.animation7 { left: 70%; top: 40%; }
.animation8 { right: 12%; top: 8%; }
.animation9 { right: 5%; bottom: 12%; }
.animation10 { left: 50%; top: 80%; }

.animation div {
    position: absolute;
    top: 0;
    left: 0;
    width: 618px;
    height: 618px;
    border-radius: 50%;
    animation: move linear infinite;
    opacity: 0.12;
}

.animation .animate1 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation-duration: 30s;
}

.animation .animate2 {
    background: radial-gradient(circle, rgba(255, 180, 0, 0.2) 0%, transparent 70%);
    animation-duration: 20s;
    animation-direction: reverse;
}

.animation .animate3 {
    background: radial-gradient(circle, rgba(180, 140, 20, 0.3) 0%, transparent 70%);
    animation-duration: 15s;
}

.fanzhuan .animate1 { animation-direction: reverse; animation-duration: 25s; }
.fanzhuan .animate2 { animation-direction: normal; animation-duration: 15s; }
.fanzhuan .animate3 { animation-direction: reverse; animation-duration: 10s; }

@keyframes move {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主容器 */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
}

/* 头部导航 */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(90deg, rgba(139, 105, 20, 0.3) 0%, rgba(139, 105, 20, 0.2) 50%, rgba(139, 105, 20, 0.3) 100%);
    border: 2px solid rgba(0, 160, 233, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 160, 233, 0.3);
    border: 1px solid #00A0E9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(0, 160, 233, 0.5);
    box-shadow: 0 0 20px rgba(0, 160, 233, 0.5);
    transform: translateX(-5px);
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(180deg, #CAE0FF 0%, #6EB2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 14px;
    color: #74B3FC;
    margin-top: 5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 280px;
    padding: 12px 45px 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 160, 233, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: #00A0E9;
    box-shadow: 0 0 15px rgba(0, 160, 233, 0.3);
}

.search-box input::placeholder {
    color: #74B3FC;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.header-time {
    text-align: right;
    color: #ADC2FF;
    font-size: 14px;
}

/* 统计卡片 */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 160, 233, 0.2) 0%, rgba(139, 105, 20, 0.15) 100%);
    border: 2px solid rgba(0, 160, 233, 0.4);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 160, 233, 0.3);
}

.stat-icon {
    font-size: 32px;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #FFF600;
    text-shadow: 0 0 10px rgba(255, 246, 0, 0.5);
}

.stat-label {
    font-size: 12px;
    color: #74B3FC;
}

/* 数据质量面板 */
.quality-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.quality-head h3 {
    color: #cfe3ff;
    font-size: 18px;
}

.quality-help-btn {
    background: rgba(0, 160, 233, 0.25);
    border: 1px solid rgba(0, 160, 233, 0.7);
    color: #d8ebff;
    border-radius: 8px;
    font-size: 12px;
    padding: 6px 12px;
    cursor: pointer;
}

.quality-help-btn:hover {
    background: rgba(0, 160, 233, 0.45);
}

.quality-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.quality-card {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.35) 0%, rgba(31, 53, 249, 0.2) 100%);
    border: 1px solid rgba(0, 160, 233, 0.5);
    border-radius: 10px;
    padding: 14px 16px;
}

.quality-label {
    color: #9fc5ff;
    font-size: 12px;
    margin-bottom: 8px;
}

.quality-value {
    color: #fff600;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 246, 0, 0.4);
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(31, 53, 249, 0.15);
    border: 2px solid rgba(139, 105, 20, 0.7);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 14px;
    color: #CFE3FF;
    font-weight: bold;
}

.filter-tags {
    display: flex;
    gap: 8px;
}

.filter-tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 160, 233, 0.4);
    border-radius: 6px;
    color: #74B3FC;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background: rgba(0, 160, 233, 0.4);
    border-color: #00A0E9;
    color: #fff;
}

.view-toggle {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 160, 233, 0.4);
    border-radius: 6px;
    color: #74B3FC;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover,
.view-btn.active {
    background: rgba(0, 160, 233, 0.4);
    border-color: #00A0E9;
    color: #fff;
}

/* 内容区域 */
.content-area {
    flex: 1;
    overflow: visible;
}

/* 卡片视图 */
.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.building-card {
    background: linear-gradient(135deg, rgba(31, 53, 249, 0.25) 0%, rgba(139, 105, 20, 0.15) 100%);
    border: 2px solid rgba(139, 105, 20, 0.7);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.building-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00A0E9, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.building-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 160, 233, 0.3);
}

.building-card:hover::before {
    opacity: 1;
}

/* 不同类型的卡片颜色 */
.building-card[data-type="minju"] { border-color: rgba(70, 176, 93, 0.5); }
.building-card[data-type="minju"]::before { background: linear-gradient(90deg, transparent, #46B05D, transparent); }
.building-card[data-type="minju"] .card-type-icon { color: #46B05D; }

.building-card[data-type="guanfu"] { border-color: rgba(175, 75, 135, 0.5); }
.building-card[data-type="guanfu"]::before { background: linear-gradient(90deg, transparent, #AF4B87, transparent); }
.building-card[data-type="guanfu"] .card-type-icon { color: #AF4B87; }

.building-card[data-type="huanggong"] { border-color: rgba(3, 162, 233, 0.5); }
.building-card[data-type="huanggong"]::before { background: linear-gradient(90deg, transparent, #03A2E9, transparent); }
.building-card[data-type="huanggong"] .card-type-icon { color: #03A2E9; }

.building-card[data-type="qiaoliang"] { border-color: rgba(245, 213, 46, 0.5); }
.building-card[data-type="qiaoliang"]::before { background: linear-gradient(90deg, transparent, #F5D52E, transparent); }
.building-card[data-type="qiaoliang"] .card-type-icon { color: #F5D52E; }

/* 卡片图片样式 */
.card-image {
    width: calc(100% + 40px);
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin: -20px -20px 15px -20px;
    border-bottom: 2px solid rgba(0, 160, 233, 0.3);
    transition: all 0.4s;
}

.building-card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.card-image-placeholder {
    width: calc(100% + 40px);
    height: 160px;
    margin: -20px -20px 15px -20px;
    background: linear-gradient(135deg, rgba(0, 160, 233, 0.2) 0%, rgba(139, 105, 20, 0.15) 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid rgba(0, 160, 233, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: 0.5;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-type-icon {
    font-size: 36px;
}

.card-num {
    font-size: 12px;
    color: #74B3FC;
    font-family: monospace;
}

.card-name {
    font-size: 18px;
    font-weight: bold;
    color: #CFE3FF;
    margin-bottom: 8px;
}

.card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.info-item {
    font-size: 13px;
    color: #74B3FC;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-world {
    background: linear-gradient(135deg, #FFF600 0%, #FF9F0A 100%);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 246, 0, 0.3);
}

.badge-national {
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    color: #000;
}

.badge-provincial {
    background: linear-gradient(135deg, #74B3FC 0%, #5C92E8 100%);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.evidence-btn,
.table-evidence-btn {
    background: rgba(0, 160, 233, 0.25);
    border: 1px solid rgba(0, 160, 233, 0.7);
    color: #cfe3ff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.evidence-btn:hover,
.table-evidence-btn:hover {
    background: rgba(0, 160, 233, 0.45);
    color: #fff;
}

.table-evidence-btn {
    margin-left: 8px;
}

/* 指标说明弹窗 */
.method-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.method-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.method-dialog {
    position: relative;
    width: min(760px, calc(100vw - 40px));
    margin: 10vh auto;
    background: linear-gradient(160deg, rgba(11, 34, 72, 0.98) 0%, rgba(9, 20, 48, 0.98) 100%);
    border: 1px solid rgba(0, 160, 233, 0.55);
    border-radius: 14px;
    padding: 18px 20px;
}

.method-dialog h3 {
    color: #cfe3ff;
    margin-bottom: 10px;
}

.method-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.method-list {
    color: #9fc5ff;
    line-height: 1.9;
    padding-left: 18px;
}

.method-list strong {
    color: #fff;
}

/* 来源证据弹窗 */
.evidence-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.evidence-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.evidence-dialog {
    position: relative;
    width: min(860px, calc(100vw - 40px));
    margin: 6vh auto;
    background: linear-gradient(160deg, rgba(15, 32, 68, 0.98) 0%, rgba(10, 18, 42, 0.98) 100%);
    border: 1px solid rgba(0, 160, 233, 0.6);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.evidence-dialog h3 {
    color: #cfe3ff;
    margin-bottom: 14px;
}

.evidence-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.evidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.evidence-grid > div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(116, 179, 252, 0.25);
    border-radius: 8px;
    padding: 10px;
}

.evidence-key {
    display: block;
    color: #8bb8ff;
    font-size: 12px;
    margin-bottom: 4px;
}

.evidence-value {
    color: #fff;
    font-size: 13px;
    word-break: break-all;
}

.evidence-value a {
    color: #00e5ff;
    text-decoration: none;
}

.evidence-screenshot {
    margin-top: 14px;
    border: 1px dashed rgba(0, 229, 255, 0.5);
    border-radius: 10px;
    padding: 12px;
    background: rgba(0, 160, 233, 0.08);
}

.evidence-shot-title {
    color: #cfe3ff;
    font-size: 13px;
    margin-bottom: 8px;
}

.evidence-shot-box {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8bb8ff;
    font-size: 12px;
    text-align: center;
    border: 1px dashed rgba(139, 184, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
}

.evidence-shot-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(116, 179, 252, 0.35);
}

.evidence-shot-caption {
    color: #9fc5ff;
    font-size: 12px;
    margin-top: 8px;
}

/* 建筑实景图片样式 */
.evidence-building-images {
    margin-top: 14px;
    border: 1px dashed rgba(0, 229, 255, 0.5);
    border-radius: 10px;
    padding: 12px;
    background: rgba(0, 160, 233, 0.08);
}

.building-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.building-image-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(116, 179, 252, 0.35);
    cursor: pointer;
    transition: all 0.3s;
}

.building-image-thumb:hover {
    transform: scale(1.05);
    border-color: #00A0E9;
    box-shadow: 0 5px 15px rgba(0, 160, 233, 0.4);
}

.evidence-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 12px;
}

.level-a {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #03200f;
}

.level-b {
    background: linear-gradient(135deg, #fff176 0%, #fdd835 100%);
    color: #3c2d00;
}

.level-c {
    background: linear-gradient(135deg, #ff8a80 0%, #ff5252 100%);
    color: #2a0000;
}

.evidence-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.evidence-copy-btn {
    background: rgba(0, 160, 233, 0.28);
    border: 1px solid rgba(0, 160, 233, 0.75);
    color: #d8ebff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.evidence-copy-btn:hover {
    background: rgba(0, 160, 233, 0.5);
    color: #fff;
}

.table-view {
    background: rgba(31, 53, 249, 0.15);
    border: 2px solid rgba(139, 105, 20, 0.7);
    border-radius: 12px;
    padding: 15px;
    overflow-x: auto;
}

.buildings-table {
    width: 100%;
    border-collapse: collapse;
}

.buildings-table th {
    padding: 12px;
    text-align: left;
    color: #CFE3FF;
    font-weight: bold;
    border-bottom: 2px solid rgba(0, 160, 233, 0.5);
}

.buildings-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #74B3FC;
}

.buildings-table tbody tr:hover {
    background: rgba(0, 160, 233, 0.1);
}

.table-type-icon {
    display: inline-block;
    margin-right: 8px;
}

.table-link {
    color: #00A0E9;
    text-decoration: none;
    transition: color 0.3s;
}

.table-link:hover {
    color: #00E676;
    text-decoration: underline;
}

/* 底部 */
.footer {
    text-align: center;
    padding: 20px;
    color: #74B3FC;
    font-size: 13px;
}

.footer p {
    margin: 5px 0;
}

/* 页面加载动画 */
.container {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .search-box input {
        width: 200px;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-panel {
        grid-template-columns: 1fr;
    }

    .filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-toggle {
        margin-left: 0;
    }

    .grid-view {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .buildings-table {
        font-size: 12px;
    }

    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .buildings-table th,
    .buildings-table td {
        padding: 8px 6px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 160, 233, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 160, 233, 0.8);
}

/* 无数据提示 */
.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #74B3FC;
    font-size: 16px;
}

.no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* 灯箱样式 */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 160, 233, 0.8);
    border-color: #00A0E9;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 160, 233, 0.8);
    border-color: #00A0E9;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 80%;
    text-align: center;
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}
