/* 天气组件样式优化 */
.weather-widget {
    position       : fixed;
    top            : 20px;
    right          : 20px;
    z-index        : 10000;
    display        : flex;
    align-items    : center;
    gap            : 12px;
    padding        : 12px 20px;
    background     : var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius  : 30px;
    border         : 2px solid var(--primary-light);
    box-shadow     : var(--shadow-md);
    animation      : weatherFadeIn 1s ease-out;
    transition     : all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.weather-widget:hover {
    transform   : translateY(-2px);
    box-shadow  : var(--shadow-lg);
    border-color: var(--primary-dark);
}

.weather-icon {
    font-size: 28px;
    animation: weatherIconPulse 3s ease-in-out infinite;
}

.weather-info {
    display       : flex;
    flex-direction: column;
    gap           : 2px;
}

.weather-temp {
    font-size  : 20px;
    font-weight: bold;
    color      : #FF69B4;
    text-shadow: none;
}

.weather-location {
    font-size     : 12px;
    color         : var(--text-secondary);
    letter-spacing: 0;
}

/* Logo 样式 */
.logo-container {
    position : fixed;
    top      : 20px;
    left     : 20px;
    z-index  : 10000;
    animation: logoFadeIn 1s ease-out;
}

.logo-image {
    width        : 60px;
    height       : 60px;
    transition   : all 0.3s ease;
    animation    : logoPulse 3s ease-in-out infinite;
}

.logo-image:hover {
    transform    : scale(1.1) rotate(5deg);
}

@keyframes logoFadeIn {
    from {
        opacity  : 0;
        transform: translateX(-50px);
    }

    to {
        opacity  : 1;
        transform: translateX(0);
    }
}

@keyframes logoPulse {
    0%,
    100% {
    }

    50% {
    }
}