/* 眼睛时钟组件样式 */
.sotms-eye-clock-widget {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-primary);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    margin-bottom: 10px;
}

.sotms-eye-clock-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.sotms-eye-clock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* 眼睛区域 */
.sotms-eyes-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.sotms-eye {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sotms-pupil {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.sotms-pupil::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    right: 4px;
}

/* 时间显示 */
.sotms-time-display {
    font-size: 36px;
    font-weight: 700;
    font-family: 'SF Mono', 'Monaco', 'Consolas', 'Courier New', monospace;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}

.sotms-time-separator {
    animation: blink 1s infinite;
    margin: 0 -20px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* 日期显示 */
.sotms-date-display {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 深色模式适配 */
html[data-theme="dark"] .sotms-eye {
    background: #f5f5f5;
    border-color: #444;
}

/* 响应式 */
@media (max-width: 768px) {
    .sotms-eye-clock-widget {
        padding: 16px;
    }

    .sotms-eye {
        width: 50px;
        height: 50px;
    }

    .sotms-pupil {
        width: 20px;
        height: 20px;
    }

    .sotms-time-display {
        font-size: 28px;
    }

    .sotms-date-display {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sotms-time-display {
        font-size: 24px;
        letter-spacing: 1px;
    }
}
