/* CCT Status HUD - 生产环境样式 */
:root {
    --hud-bg: rgba(10, 10, 10, 0.85); /* 深色背景，带透明度 */
    --hud-border: rgba(0, 176, 212, 0.3); /* 边框颜色，青色 */
    --hud-glow: #00b0d4; /* 发光特效色 */
    --hud-text: #e0e0e0; /* 主要文字颜色 */
    --hud-accent: #fff;  /* 强调色 */
}

/* 底部主容器 */
#cct-hud-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--hud-bg);
    border-top: 1px solid var(--hud-border);
    backdrop-filter: blur(10px); /* 毛玻璃特效 */
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999; /* 强制置顶，确保不被视频遮挡 */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', 'Courier New', monospace; /* 科技感字体 */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
}

.hud-wrapper {
    display: flex;
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}

/* 左侧区域：倒计时 & 认购数据 */
.hud-metrics {
    display: flex;
    gap: 30px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.metric-value {
    font-size: 16px;
    color: var(--hud-glow);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 176, 212, 0.4); /* 文字发光 */
}

.countdown-timer {
    color: var(--hud-accent);
}

/* 右侧区域：外部链接按钮 */
.hud-links {
    display: flex;
    gap: 15px;
}

.hud-btn {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 6px 16px;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-btn:hover {
    border-color: var(--hud-glow);
    color: var(--hud-glow);
    box-shadow: 0 0 10px rgba(0, 176, 212, 0.2);
    background: rgba(0, 176, 212, 0.05);
}

/* 手机端适配：改为垂直排列，防止拥挤 */
@media (max-width: 768px) {
    #cct-hud-container {
        height: auto;
        padding: 15px 0;
    }
    .hud-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .hud-metrics {
        width: 100%;
        justify-content: space-around;
    }
    .hud-links {
        width: 100%;
        justify-content: center;
    }
}