/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.5s ease;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* AI助手浮动球 */
.ai-assistant {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s ease;
}

.ai-ball {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    animation: shadowPulse 3s ease-in-out infinite;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
}

.ai-ball::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg,
        #ff0000, #ff7300, #fffb00, #48ff00,
        #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    animation: shadowRotate 3s linear infinite;
    opacity: 0.6;
    z-index: -1;
    filter: blur(8px);
}

.ai-ball::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg,
        #ff0000, #ff7300, #fffb00, #48ff00,
        #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    animation: shadowRotate 3s linear infinite;
    opacity: 0.4;
    z-index: -2;
    filter: blur(15px);
}

@keyframes shadowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.ai-ball i {
    color: white;
    font-size: 22px;
    z-index: 1;
}

.ai-ball:hover {
    transform: scale(1.1);
}

.ai-ball.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 隐藏一半状态 */
.ai-assistant.hidden-left {
    left: -27px;
    transform: translateY(-50%);
}

.ai-assistant.hidden-right {
    right: -27px;
    transform: translateY(-50%);
}

/* AI助手面板 */
.ai-panel {
    position: absolute;
    right: 70px;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ai-panel.show {
    display: block;
}

.ai-assistant.left-side .ai-panel {
    right: auto;
    left: 70px;
}

.ai-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.ai-close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: transform 0.2s ease;
}

.ai-close-btn:hover {
    transform: scale(1.2);
}

.ai-panel-body {
    width: 100%;
    height: calc(100% - 44px);
}

.ai-panel-body iframe {
    width: 100%;
    height: 100%;
}

/* 上部区域 */
.header {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.btn-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-avatar:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-avatar.logged-in {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: white;
}

/* 中部区域 - 搜索 */
.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
    width: 100%;
    padding: 20px;
    padding-top: 18vh; /* 往上移动，距顶部18% */
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
}

.search-box:focus-within {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* 搜索引擎选择器 */
.search-engine-selector {
    position: relative;
}

.selected-engine {
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-right: 1px solid #eee;
    min-width: 50px;
    transition: background 0.2s ease;
}

.selected-engine:hover {
    background: rgba(0, 0, 0, 0.05);
}

.selected-engine i:first-child {
    font-size: 18px;
    color: #667eea;
}

.selected-engine i:last-child {
    font-size: 12px;
    color: #999;
    transition: transform 0.2s ease;
}

.selected-engine.open i:last-child {
    transform: rotate(180deg);
}

.engine-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: none;
    z-index: 100;
    min-width: 130px;
}

.engine-dropdown.show {
    display: block;
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.engine-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.engine-option:hover {
    background: rgba(102, 126, 234, 0.1);
}

.engine-option.selected {
    background: rgba(102, 126, 234, 0.15);
}

.engine-option i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.engine-option[data-engine="bing"] i { color: #008373; }
.engine-option[data-engine="baidu"] i { color: #2932E1; }
.engine-option[data-engine="google"] i { color: #4285F4; }
.engine-option[data-engine="360"] i { color: #00B38B; }

.engine-option span {
    font-size: 14px;
    color: #333;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn {
    padding: 15px 25px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 50px 50px 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 日期时间显示 - 紧跟搜索框下方 */
.datetime-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 5px;
}

.time-display {
    font-size: 32px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 25px;
    border-radius: 25px;
    letter-spacing: 2px;
}

.date-display {
    font-size: 16px;
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 15px;
    border-radius: 15px;
}

/* 下部区域 - 快捷链接 */
.footer {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    min-width: 100px;
    position: relative;
}

.quick-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-link-icon.douyin {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

.quick-link-icon.bilibili {
    background: linear-gradient(135deg, #FB7299 0%, #FF9B49 100%);
}

.quick-link-icon.github {
    background: linear-gradient(135deg, #24292e 0%, #555 100%);
}

.quick-link-icon.default {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.quick-link-name {
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-add-link {
    padding: 12px 25px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-add-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 22px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.login-hint {
    margin-top: 15px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* 删除按钮 */
.delete-link {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff4757;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.quick-link:hover .delete-link {
    display: flex;
}

/* 按键小猫样式 */
.keycat-container {
    position: fixed;
    bottom: 200px;
    left: 15px;
    z-index: 100;
}

.keycat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.keycat-counter {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.keycat {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 小猫身体 */
.cat-body {
    position: relative;
}

.cat-head {
    width: 60px;
    height: 50px;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd9a0 100%);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    margin-bottom: -5px;
}

.cat-ears {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
}

.cat-ear {
    position: absolute;
    width: 18px;
    height: 25px;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd9a0 100%);
    border-radius: 50% 50% 0 0;
}

.cat-ear.left {
    left: 5px;
    transform: rotate(-20deg);
}

.cat-ear.right {
    right: 5px;
    transform: rotate(20deg);
}

.cat-ear::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 15px;
    background: #ffb6c1;
    border-radius: 50% 50% 0 0;
}

.cat-face {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
}

.cat-eyes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.cat-eye {
    width: 12px;
    height: 14px;
    background: #333;
    border-radius: 50%;
    position: relative;
}

.cat-eye::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.cat-nose {
    width: 8px;
    height: 6px;
    background: #ffb6c1;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    margin: 8px auto 0;
}

.cat-mouth {
    width: 20px;
    height: 8px;
    margin: 2px auto 0;
    position: relative;
}

.cat-mouth::before,
.cat-mouth::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 8px;
    border-bottom: 2px solid #333;
    border-radius: 0 0 50% 50%;
}

.cat-mouth::before {
    left: 0;
}

.cat-mouth::after {
    right: 0;
}

.cat-whiskers {
    position: absolute;
    top: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-whiskers.left {
    left: -5px;
}

.cat-whiskers.right {
    right: -5px;
}

.cat-whiskers span {
    width: 20px;
    height: 1px;
    background: #333;
    display: block;
}

.cat-whiskers.left span {
    transform-origin: right;
    transform: rotate(-5deg);
}

.cat-whiskers.left span:nth-child(2) {
    transform: rotate(0deg);
}

.cat-whiskers.left span:nth-child(3) {
    transform: rotate(5deg);
}

.cat-whiskers.right span {
    transform-origin: left;
    transform: rotate(5deg);
}

.cat-whiskers.right span:nth-child(2) {
    transform: rotate(0deg);
}

.cat-whiskers.right span:nth-child(3) {
    transform: rotate(-5deg);
}

.cat-torso {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd9a0 100%);
    border-radius: 45% 45% 50% 50%;
    margin-top: -3px;
}

.cat-tail {
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 30px;
    height: 8px;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd9a0 100%);
    border-radius: 5px;
    transform-origin: left center;
    animation: tailWag 2s ease-in-out infinite;
}

@keyframes tailWag {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* 键盘区域 */
.cat-keyboard-area {
    position: relative;
    width: 60px;
    margin-top: 5px;
}

.mini-keyboard {
    width: 50px;
    height: 20px;
    background: #e0e0e0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mini-key {
    width: 20px;
    height: 15px;
    background: #fff;
    border-radius: 3px;
    font-size: 10px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mini-key.active {
    background: #667eea;
    color: white;
    transform: scale(0.95);
}

.cat-paws {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
}

.cat-paw {
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd9a0 100%);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.cat-paw.typing {
    animation: pawPress 0.15s ease;
}

@keyframes pawPress {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.paw-pad {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #ffb6c1;
    border-radius: 50%;
}

/* 小猫开心状态 */
.keycat.happy .cat-eye {
    height: 6px;
    border-radius: 50% 50% 0 0;
    background: transparent;
    border-top: 2px solid #333;
}

.keycat.happy .cat-eye::after {
    display: none;
}

/* 响应式调整按键小猫 */
@media (max-width: 600px) {
    .keycat-container {
        bottom: 10px;
        left: 10px;
    }

    .keycat {
        width: 80px;
    }

    .cat-head {
        width: 50px;
        height: 42px;
    }

    .cat-ear {
        width: 14px;
        height: 20px;
    }

    .cat-ear::after {
        width: 8px;
        height: 12px;
    }

    .cat-eye {
        width: 10px;
        height: 12px;
    }

    .cat-torso {
        width: 38px;
        height: 30px;
    }

    .cat-paw {
        width: 16px;
        height: 12px;
    }

    .mini-keyboard {
        width: 40px;
        height: 16px;
    }

    .mini-key {
        width: 16px;
        height: 12px;
        font-size: 8px;
    }

    .keycat-counter {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* IP和网速卡片 - 毛玻璃效果 */
.network-card {
    position: fixed;
    right: -180px;
    bottom: 200px;
    z-index: 100;
    transition: right 0.3s ease;
}

.network-card:hover {
    right: 15px;
}

.network-mini {
    position: absolute;
    right: 180px;
    top: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 80px;
}

.speed-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.speed-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.network-full {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 16px;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.network-header i {
    font-size: 18px;
}

.network-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: white;
}

.info-item i {
    color: rgba(255, 255, 255, 0.9);
    width: 18px;
}

.info-item span:nth-child(2) {
    color: rgba(255, 255, 255, 0.8);
    min-width: 60px;
}

.info-item span:last-child {
    color: white;
    font-weight: 500;
}

/* 天气卡片 */
.weather-card {
    position: fixed;
    right: -320px;
    top: 120px;
    z-index: 100;
    transition: right 0.3s ease;
}

.weather-card:hover {
    right: 15px;
}

.weather-mini {
    position: absolute;
    right: 320px;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.weather-mini i {
    font-size: 18px;
    color: #667eea;
}

.temp-mini {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.weather-full {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* 天气背景主题 */
.weather-full.sunny {
    background: linear-gradient(135deg, rgba(255, 200, 100, 0.9), rgba(255, 150, 50, 0.9), rgba(255, 255, 255, 0.85));
}

.weather-full.cloudy {
    background: linear-gradient(135deg, rgba(150, 150, 150, 0.9), rgba(180, 180, 180, 0.9), rgba(255, 255, 255, 0.85));
}

.weather-full.rainy {
    background: linear-gradient(135deg, rgba(100, 120, 140, 0.9), rgba(80, 100, 120, 0.9), rgba(255, 255, 255, 0.85));
}

.weather-full.snowy {
    background: linear-gradient(135deg, rgba(200, 220, 255, 0.9), rgba(180, 200, 240, 0.9), rgba(255, 255, 255, 0.85));
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-main i {
    font-size: 36px;
    color: #667eea;
}

.weather-temp {
    display: flex;
    flex-direction: column;
}

.current-temp {
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.weather-desc {
    font-size: 14px;
    color: #666;
}

.weather-location {
    font-size: 12px;
    color: #999;
    text-align: right;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.detail-item i {
    color: #667eea;
    font-size: 14px;
}

.detail-item span:nth-child(2) {
    font-size: 12px;
    color: #666;
}

.detail-item span:last-child {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.weather-forecast {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
}

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-width: 40px;
}

.forecast-day {
    font-size: 10px;
    color: #666;
}

.forecast-icon {
    font-size: 16px;
    color: #667eea;
}

.forecast-temp {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

/* 雨滴效果 */
.rain-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(transparent, rgba(100, 150, 200, 0.6));
    animation: rainFall 0.8s linear infinite;
}

@keyframes rainFall {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100% + 20px));
        opacity: 0;
    }
}

/* 雨水溅落效果 */
.splash-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    overflow: hidden;
}

.splash-drop {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 6px;
    background: rgba(100, 150, 200, 0.4);
    border-radius: 50%;
    animation: splash 0.5s ease-out infinite;
}

@keyframes splash {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-15px) scale(0.5);
        opacity: 0;
    }
}

/* 响应式 */
@media (max-width: 600px) {
    .header {
        padding: 15px 20px;
    }

    .main {
        padding-top: 12vh;
    }

    .selected-engine {
        padding: 12px 12px;
        min-width: 40px;
    }

    .selected-engine i:first-child {
        font-size: 16px;
    }

    .search-input {
        padding: 12px 15px;
    }

    .search-btn {
        padding: 12px 20px;
    }

    .quick-link {
        min-width: 85px;
        padding: 12px;
    }

    .quick-link-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .ai-ball {
        width: 45px;
        height: 45px;
    }

    .ai-ball i {
        font-size: 18px;
    }

    .ai-panel {
        width: 300px;
        height: 400px;
    }

    .ai-assistant.hidden-left {
        left: -22px;
    }

    .ai-assistant.hidden-right {
        right: -22px;
    }

    .datetime-container {
        margin-top: 12px;
    }

    .time-display {
        font-size: 24px;
        padding: 6px 20px;
    }

    .date-display {
        font-size: 14px;
        padding: 4px 12px;
    }

    .network-card {
        bottom: 150px;
    }

    .network-mini {
        padding: 8px 12px;
        min-width: 60px;
    }

    .network-full {
        width: 160px;
        padding: 15px;
    }

    .weather-card {
        top: 100px;
    }

    .keycat-container {
        bottom: 150px;
    }
}

/* 音乐卡片 - 手机样式播放器 */
.music-card {
    position: fixed;
    left: -380px;
    bottom: 100px;
    z-index: 100;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-card:hover {
    left: 15px;
}

/* 迷你显示条 */
.music-mini {
    position: absolute;
    left: 380px;
    top: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    cursor: pointer;
}

.mini-cover {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 3s linear infinite paused;
}

.mini-cover.playing {
    animation-play-state: running;
}

.mini-cover i {
    color: white;
    font-size: 14px;
}

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

.mini-title {
    font-size: 12px;
    color: white;
    font-weight: 500;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* 手机播放器样式 */
.music-phone {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    width: 360px;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 手机状态栏 */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.time-small {
    font-weight: 500;
}

.status-icons {
    display: flex;
    gap: 5px;
    font-size: 12px;
}

/* 平台切换器 */
.platform-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 5px 15px;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.platform-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.platform-btn i {
    font-size: 16px;
}

.platform-btn span {
    font-size: 10px;
}

/* 播放器内容 */
.player-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 歌曲封面 */
.song-cover {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: coverSpin 20s linear infinite paused;
}

.song-cover.playing {
    animation-play-state: running;
}

.cover-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.cover-placeholder i {
    font-size: 50px;
}

.cover-placeholder span {
    font-size: 14px;
    text-align: center;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes coverSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 歌曲信息 */
.song-info {
    text-align: center;
}

.song-title {
    font-size: 18px;
    color: white;
    font-weight: 600;
    margin: 0;
}

.song-artist {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0 0;
}

/* 进度条 */
.progress-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* 播放控制 */
.play-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.control-btn.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.control-btn.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* 音量控制 */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.volume-control i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* 功能按钮 */
.extra-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.extra-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.extra-btn.active {
    color: #667eea;
}

.extra-btn.open-btn {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

.extra-btn.open-btn:hover {
    background: rgba(102, 126, 234, 0.5);
}

/* 手机底部导航 */
.phone-nav {
    padding: 8px;
    display: flex;
    justify-content: center;
}

.nav-indicator {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* 音乐卡片响应式 */
@media (max-width: 1200px) {
    .music-card {
        left: -320px;
    }

    .music-card:hover {
        left: 10px;
    }

    .music-mini {
        left: 320px;
    }

    .music-phone {
        width: 300px;
    }
}

@media (max-width: 800px) {
    .music-card {
        left: -280px;
        bottom: 80px;
    }

    .music-card:hover {
        left: 10px;
    }

    .music-mini {
        left: 280px;
        min-width: 100px;
        padding: 6px 10px;
    }

    .mini-cover {
        width: 28px;
        height: 28px;
    }

    .mini-title {
        font-size: 11px;
        max-width: 60px;
    }

    .music-phone {
        width: 260px;
        border-radius: 25px;
    }

    .platform-switcher {
        gap: 5px;
        padding: 8px 10px;
    }

    .platform-btn {
        padding: 6px 8px;
    }

    .platform-btn i {
        font-size: 14px;
    }

    .platform-btn span {
        font-size: 9px;
    }

    .player-content {
        padding: 15px;
        gap: 15px;
    }

    .song-cover {
        width: 160px;
        height: 160px;
    }

    .cover-placeholder i {
        font-size: 40px;
    }

    .song-title {
        font-size: 16px;
    }

    .song-artist {
        font-size: 12px;
    }

    .play-controls {
        gap: 20px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .control-btn.play-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .extra-controls {
        gap: 15px;
    }

    .extra-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .music-card {
        left: -240px;
    }

    .music-card:hover {
        left: 5px;
    }

    .music-mini {
        left: 240px;
    }

    .music-phone {
        width: 230px;
        border-radius: 20px;
    }

    .phone-status-bar {
        padding: 8px 15px;
        font-size: 11px;
    }

    .platform-switcher {
        gap: 4px;
    }

    .player-content {
        padding: 10px;
        gap: 12px;
    }

    .song-cover {
        width: 140px;
        height: 140px;
        border-radius: 15px;
    }
}

/* 网盘链接卡片 - 右侧 */
.storage-links-card {
    position: fixed;
    right: -200px;
    bottom: 300px;
    z-index: 100;
    transition: right 0.3s ease;
}

.storage-links-card:hover {
    right: 15px;
}

.storage-mini {
    position: absolute;
    right: 200px;
    top: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.storage-mini i {
    font-size: 16px;
    color: white;
}

.storage-label {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.storage-full {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 16px;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.storage-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.storage-header i {
    font-size: 16px;
}

.storage-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storage-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.storage-link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.storage-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.storage-link-item.baidu .storage-icon {
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 100%);
}

.storage-link-item.xunlei .storage-icon {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
}

.storage-link-item.aliyun .storage-icon {
    background: linear-gradient(135deg, #FF6A00 0%, #FF4500 100%);
}

.storage-link-item.chaoxing .storage-icon {
    background: linear-gradient(135deg, #00A0E9 0%, #0078D7 100%);
}

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

.storage-name {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.storage-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* 灵动岛 - Dynamic Island */
.dynamic-island {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.island-content {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 10px rgba(255, 0, 100, 0.5),
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 0, 0.5);
    animation: glowRotate3 3s linear infinite;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-island:hover .island-content {
    width: 500px;
    max-width: calc(100vw - 40px);
    height: auto;
    min-height: 60px;
    padding: 15px 20px;
    box-shadow:
        0 0 15px rgba(255, 0, 100, 0.6),
        0 0 15px rgba(0, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 0, 0.6),
        0 0 15px rgba(0, 255, 0, 0.6),
        0 0 15px rgba(255, 0, 255, 0.6),
        0 0 15px rgba(100, 100, 255, 0.6);
    animation: glowRotate6 2s linear infinite;
}

.island-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.dynamic-island:hover .island-mini {
    opacity: 0;
    position: absolute;
}

.island-expanded {
    display: none;
    width: 100%;
}

.dynamic-island:hover .island-expanded {
    display: block;
}

.island-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FF88, #00FFFF);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* 多彩阴影动画 - 3色 */
@keyframes glowRotate3 {
    0% {
        box-shadow:
            0 0 10px rgba(255, 0, 100, 0.5),
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 0, 0.5);
    }
    33% {
        box-shadow:
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 0, 0.5),
            0 0 10px rgba(255, 0, 100, 0.5);
    }
    66% {
        box-shadow:
            0 0 10px rgba(255, 255, 0, 0.5),
            0 0 10px rgba(255, 0, 100, 0.5),
            0 0 10px rgba(0, 255, 255, 0.5);
    }
    100% {
        box-shadow:
            0 0 10px rgba(255, 0, 100, 0.5),
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 0, 0.5);
    }
}

/* 多彩阴影动画 - 6色 */
@keyframes glowRotate6 {
    0% {
        box-shadow:
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6);
    }
    16% {
        box-shadow:
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6),
            0 0 15px rgba(255, 0, 100, 0.6);
    }
    33% {
        box-shadow:
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6),
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6);
    }
    50% {
        box-shadow:
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6),
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6);
    }
    66% {
        box-shadow:
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6),
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6);
    }
    83% {
        box-shadow:
            0 0 15px rgba(100, 100, 255, 0.6),
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6);
    }
    100% {
        box-shadow:
            0 0 15px rgba(255, 0, 100, 0.6),
            0 0 15px rgba(0, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 0, 0.6),
            0 0 15px rgba(0, 255, 0, 0.6),
            0 0 15px rgba(255, 0, 255, 0.6),
            0 0 15px rgba(100, 100, 255, 0.6);
    }
}

/* 灵动岛响应式 */
@media (max-width: 600px) {
    .dynamic-island .island-content {
        width: 40px;
        height: 28px;
        border-radius: 20px;
    }

    .dynamic-island:hover .island-content {
        width: calc(100vw - 30px);
        padding: 10px 15px;
    }

    .island-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item i {
        font-size: 14px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-value {
        font-size: 12px;
    }
}

/* 网盘卡片响应式 */
@media (max-width: 600px) {
    .storage-links-card {
        bottom: 250px;
    }

    .storage-full {
        width: 170px;
    }

    .storage-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .storage-name {
        font-size: 12px;
    }

    .storage-desc {
        font-size: 10px;
    }
}