/* 实时时间卡片样式 */
.time-card {
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}

.time-title {
    font-size: 13px;
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.time-display {
    text-align: center;
}

.time-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.time-main .timer-num {
    font-size: 42px;
    font-weight: 600;
    color: #222;
    line-height: 1;
    min-width: 60px;
}

.time-colon {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    line-height: 1;
    margin: 0 2px;
}

.time-sub {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* 一言样式 - 优雅引用风格 */
.hitokoto {
    margin-top: 25px;
    padding: 20px 15px 10px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    font-family: "Georgia", "KaiTi", "楷体", "STKaiti", serif;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

/* 上引号 */
.hitokoto::before {
    content: "“";
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 40px;
    color: rgba(255, 107, 129, 0.2);
    font-family: "Georgia", serif;
    line-height: 1;
}

/* 下引号 */
.hitokoto::after {
    content: "”";
    position: absolute;
    bottom: -5px;
    right: 5px;
    font-size: 40px;
    color: rgba(255, 107, 129, 0.2);
    font-family: "Georgia", serif;
    line-height: 1;
}

/* 一言文本 */
.hitokoto-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 8px;
    text-indent: 0;
}

/* 作者/来源 */
.hitokoto-from {
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-top: 8px;
    padding-right: 15px;
    font-style: normal;
    letter-spacing: 1px;
}

.hitokoto-from::before {
    content: "—— ";
    color: #ff6b81;
    opacity: 0.5;
}

/* 加载状态 */
.hitokoto.loading {
    font-style: normal;
    color: #999;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hitokoto.loading::before,
.hitokoto.loading::after {
    content: "";
    display: none;
}

@media (min-width: 768px) {
    .time-card {
        max-width: none;
    }

    .time-main .timer-num {
        font-size: 48px;
        min-width: 70px;
    }

    .time-colon {
        font-size: 36px;
    }

    .time-sub {
        font-size: 15px;
    }
}