/* @🍮 */
/* === 主屏幕样式 === */

#home-screen {
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    padding: 50px 0;
}

.time-widget {
    text-align: center;
    padding: 0 20px;
    color: var(--text-color);
}

.time-widget .time {
    font-size: 72px;
    font-weight: 600;
}

.time-widget .date {
    font-size: 18px;
    color: #666;
}

#home-screen.day-mode .time-widget,
#home-screen.day-mode .time-widget .date,
#home-screen.day-mode .app-icon .app-name {
    color: var(--white-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.app-grid {
    width: 100%;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-content: center;
    margin-top: 40px;
}

.dock {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    margin: 0 20px;
    min-height: 80px;
    gap: 15px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.icon-img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    object-fit: cover;
}

.app-icon:hover .icon-img {
    transform: translateY(-5px);
}

.app-icon .app-name {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
}
