/* 图标网格容器 */
.icons-grid {
    position: absolute;
    top: 120px;          /* 避开顶部状态栏 */
    left: 20px;
    right: 20px;
    bottom: 100px;       /* 避开底部任务栏 */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); /* 自动填充，最小宽度90px */
    gap: 15px 10px;       /* 行间距和列间距 */
    align-content: start;
    overflow-y: auto;     /* 图标过多时可滚动 */
    z-index: 5;
    padding: 5px;
}

/* 记事本图标容器 */
.notebook-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格记事本图标 */
.future-notebook-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 80px;
    transition: transform 0.3s ease;
}

.future-notebook-icon:hover {
    transform: translateY(-5px);
}

/* 图标主体 */
.icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 12px;
    box-shadow: 
        0 10px 20px rgba(106, 17, 203, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
    transition: all 0.3s ease;
}

.future-notebook-icon:hover .icon-shape {
    background: linear-gradient(135deg, #7b1cff 0%, #3a86ff 100%);
    box-shadow: 
        0 15px 30px rgba(106, 17, 203, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 记事本线条 */
.icon-line {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.top-line {
    width: 90%;
}

.middle-line {
    width: 95%;
}

.bottom-line {
    width: 85%;
}

/* 记事本折角效果 */
.icon-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent rgba(255, 255, 255, 0.3) transparent transparent;
    border-radius: 0 0 0 5px;
}

/* 图标标签 */
.icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0ff;
    text-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes iconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.icon-clicked {
    animation: iconClick 0.3s ease;
}

/* 未来感光效 */
.icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-notebook-icon:hover .icon-shape::before {
    opacity: 1;
}


/* 音乐播放器图标容器 */
.music-player-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格音乐播放器图标 */
.future-music-player-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 80px;
    transition: transform 0.3s ease;
}

.future-music-player-icon:hover {
    transform: translateY(-5px);
}

/* 音乐图标主体 */
.music-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
    border-radius: 18px;
    box-shadow: 
        0 10px 20px rgba(255, 0, 128, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-music-player-icon:hover .music-icon-shape {
    background: linear-gradient(135deg, #ff3399 0%, #ff9933 100%);
    box-shadow: 
        0 15px 30px rgba(255, 0, 128, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 音乐符号 */
.music-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.note1 {
    top: 15px;
    left: 15px;
    transform: rotate(-15deg);
}

.note2 {
    bottom: 15px;
    right: 15px;
    transform: rotate(15deg);
}

.future-music-player-icon:hover .music-note {
    opacity: 1;
    transform: scale(1.1);
}

.future-music-player-icon:hover .note1 {
    transform: rotate(-15deg) scale(1.1);
}

.future-music-player-icon:hover .note2 {
    transform: rotate(15deg) scale(1.1);
}

/* 音波动画效果 */
.music-wave {
    position: absolute;
    width: 3px;
    height: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    bottom: 15px;
    transform-origin: bottom;
    animation: wavePulse 1.5s infinite ease-in-out;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.wave1 {
    left: 25px;
    animation-delay: 0s;
}

.wave2 {
    left: 35px;
    animation-delay: 0.2s;
}

.wave3 {
    left: 45px;
    animation-delay: 0.4s;
}

@keyframes wavePulse {
    0%, 100% {
        height: 15px;
        opacity: 0.7;
    }
    50% {
        height: 30px;
        opacity: 1;
    }
}

.future-music-player-icon:hover .music-wave {
    animation-duration: 1s;
    background: rgba(255, 255, 255, 0.9);
}

/* 播放按钮圆形 */
.play-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.future-music-player-icon:hover .play-circle {
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* 播放按钮三角形 */
.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #ff0080;
    margin-left: 3px;
    transition: all 0.3s ease;
}

.future-music-player-icon:hover .play-triangle {
    border-color: transparent transparent transparent #ff3399;
}

/* 图标标签 */
.music-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffe0f0;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes musicIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.music-icon-clicked {
    animation: musicIconClick 0.3s ease;
}

/* 未来感光效 */
.music-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-music-player-icon:hover .music-icon-shape::before {
    opacity: 1;
}


/* 书架图标容器 */
.bookshelf-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格书架图标 */
.future-bookshelf-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 85px;
    transition: transform 0.3s ease;
}

.future-bookshelf-icon:hover {
    transform: translateY(-5px);
}

/* 书架图标主体 */
.bookshelf-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(0, 176, 155, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.future-bookshelf-icon:hover .bookshelf-icon-shape {
    background: linear-gradient(135deg, #00d4b4 0%, #a8e063 100%);
    box-shadow: 
        0 15px 30px rgba(0, 176, 155, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 书架主体 */
.shelf {
    position: absolute;
    bottom: 15px;
    width: 85%;
    height: 12px;
    background: linear-gradient(to right, #8b4513 0%, #a0522d 100%);
    border-radius: 4px;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* 书本样式 */
.book {
    position: absolute;
    bottom: 27px; /* 放在书架上 */
    height: 40px;
    border-radius: 2px 4px 4px 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.book1 {
    left: 15px;
    width: 8px;
    background: linear-gradient(to right, #ff6b6b 0%, #ff8e8e 100%);
}

.book2 {
    left: 25px;
    width: 10px;
    background: linear-gradient(to right, #4ecdc4 0%, #6ae6de 100%);
}

.book3 {
    left: 38px;
    width: 12px;
    background: linear-gradient(to right, #45b7d1 0%, #6ad1e8 100%);
}

.book4 {
    left: 53px;
    width: 10px;
    background: linear-gradient(to right, #96c93d 0%, #b0e05c 100%);
}

/* 书脊样式 */
.book-spine {
    position: absolute;
    bottom: 27px;
    height: 40px;
    width: 3px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.spine1 {
    left: 20px;
}

.spine2 {
    left: 32px;
}

.spine3 {
    left: 47px;
}

.spine4 {
    left: 62px;
}

/* 悬停时书本效果 */
.future-bookshelf-icon:hover .book {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.future-bookshelf-icon:hover .book1 {
    transform: translateY(-5px) rotate(-2deg);
}

.future-bookshelf-icon:hover .book2 {
    transform: translateY(-3px) rotate(1deg);
}

.future-bookshelf-icon:hover .book3 {
    transform: translateY(-6px) rotate(-1deg);
}

.future-bookshelf-icon:hover .book4 {
    transform: translateY(-4px) rotate(2deg);
}

.future-bookshelf-icon:hover .book-spine {
    opacity: 0.5;
}

/* 书架光效 */
.shelf-glow {
    position: absolute;
    bottom: 15px;
    width: 85%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-bookshelf-icon:hover .shelf-glow {
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}

/* 图标标签 */
.bookshelf-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e0ffe0;
    text-shadow: 0 0 10px rgba(0, 176, 155, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes bookshelfIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.bookshelf-icon-clicked {
    animation: bookshelfIconClick 0.3s ease;
}

/* 未来感光效 */
.bookshelf-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-bookshelf-icon:hover .bookshelf-icon-shape::before {
    opacity: 1;
}

/* 书本上的标题文字效果（可选） */
.book::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 15px;
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.book::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 20px;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}


/* 画板图标容器 */
.drawing-board-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格画板图标 */
.future-drawing-board-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-drawing-board-icon:hover {
    transform: translateY(-5px);
}

/* 画板图标主体 */
.drawing-board-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(156, 39, 176, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-drawing-board-icon:hover .drawing-board-icon-shape {
    background: linear-gradient(135deg, #BA68C8 0%, #7E57C2 100%);
    box-shadow: 
        0 15px 30px rgba(156, 39, 176, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 画板表面 */
.board-surface {
    position: absolute;
    width: 55px;
    height: 45px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-radius: 8px;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.8);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.future-drawing-board-icon:hover .board-surface {
    transform: rotate(-8deg) scale(1.05);
}

/* 画笔手柄 */
.brush-handle {
    position: absolute;
    width: 25px;
    height: 5px;
    background: linear-gradient(to right, #795548 0%, #A1887F 100%);
    border-radius: 2px;
    top: 35px;
    left: 20px;
    transform: rotate(30deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-drawing-board-icon:hover .brush-handle {
    transform: rotate(35deg) translateX(2px);
}

/* 画笔毛 */
.brush-bristles {
    position: absolute;
    width: 12px;
    height: 8px;
    background: linear-gradient(to right, #FF5722 0%, #FF9800 100%);
    border-radius: 0 4px 4px 0;
    top: 33px;
    left: 40px;
    transform: rotate(30deg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-drawing-board-icon:hover .brush-bristles {
    transform: rotate(35deg) translateX(2px);
    background: linear-gradient(to right, #FF7043 0%, #FFB74D 100%);
}

/* 颜料点 */
.paint-dot {
    position: absolute;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot1 {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
    top: 25px;
    right: 20px;
}

.dot2 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
    top: 45px;
    right: 25px;
}

.dot3 {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    top: 40px;
    right: 15px;
}

.future-drawing-board-icon:hover .paint-dot {
    transform: scale(1.2);
}

.future-drawing-board-icon:hover .dot1 {
    transform: scale(1.2) translateY(-3px);
}

.future-drawing-board-icon:hover .dot2 {
    transform: scale(1.2) translateX(2px);
}

.future-drawing-board-icon:hover .dot3 {
    transform: scale(1.2) translateY(2px);
}

/* 调色板 */
.color-palette {
    position: absolute;
    width: 20px;
    height: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    bottom: 15px;
    left: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 3px;
    transition: all 0.3s ease;
    z-index: 2;
}

.future-drawing-board-icon:hover .color-palette {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 调色板上的颜色块 */
.color-chip {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chip1 {
    background: #F44336;
}

.chip2 {
    background: #4CAF50;
}

.chip3 {
    background: #2196F3;
}

.future-drawing-board-icon:hover .color-chip {
    transform: scale(1.3);
}

/* 图标标签 */
.drawing-board-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F3E5F5;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes drawingBoardIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.drawing-board-icon-clicked {
    animation: drawingBoardIconClick 0.3s ease;
}

/* 绘画笔触动画 */
@keyframes paintStroke {
    0% { transform: translateX(-10px) translateY(-10px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(0) translateY(0); opacity: 0; }
}

/* 未来感光效 */
.drawing-board-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-drawing-board-icon:hover .drawing-board-icon-shape::before {
    opacity: 1;
}



/* 视频图标容器 */
    .video-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格视频图标 */
.future-video-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-video-icon:hover {
    transform: translateY(-5px);
}

/* 视频图标主体 */
.video-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(255, 65, 108, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-video-icon:hover .video-icon-shape {
    background: linear-gradient(135deg, #FF6685 0%, #FF6A47 100%);
    box-shadow: 
        0 15px 30px rgba(255, 65, 108, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 视频屏幕 */
.video-screen {
    position: absolute;
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    border-radius: 6px;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.7),
        0 2px 5px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-video-icon:hover .video-screen {
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 3px 8px rgba(0, 0, 0, 0.5);
}

/* 播放按钮圆形 */
.play-button-circle {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-video-icon:hover .play-button-circle {
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* 播放按钮三角形 */
.play-button-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #FF416C;
    margin-left: 3px;
    transition: all 0.3s ease;
    z-index: 4;
}

.future-video-icon:hover .play-button-triangle {
    border-color: transparent transparent transparent #FF6685;
}

/* 信号波形 */
.signal-wave {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: wavePulse 2s infinite linear;
    opacity: 0;
}

.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: 0.5s;
}

.wave3 {
    animation-delay: 1s;
}

@keyframes wavePulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.future-video-icon:hover .signal-wave {
    border-color: rgba(255, 255, 255, 0.5);
    animation-duration: 1.5s;
}

/* 屏幕光效 */
.screen-glow {
    position: absolute;
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-video-icon:hover .screen-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.video-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFE5E5;
    text-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes videoIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.video-icon-clicked {
    animation: videoIconClick 0.3s ease;
}

/* 屏幕扫描线效果（可选） */
.video-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(255, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    border-radius: 6px;
    pointer-events: none;
}

/* 未来感光效 */
.video-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-video-icon:hover .video-icon-shape::before {
    opacity: 1;
}


/* 代码库图标容器 */
.code-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格代码库图标 */
.future-code-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-code-icon:hover {
    transform: translateY(-5px);
}

/* 代码库图标主体 */
.code-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(0, 188, 212, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-code-icon:hover .code-icon-shape {
    background: linear-gradient(135deg, #26C6DA 0%, #00ACC1 100%);
    box-shadow: 
        0 15px 30px rgba(0, 188, 212, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 代码花括号 */
.code-bracket {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 2;
}

.left-bracket {
    left: 15px;
    top: 22px;
    transform: rotate(0deg);
}

.right-bracket {
    right: 15px;
    bottom: 22px;
    transform: rotate(0deg);
}

.future-code-icon:hover .left-bracket {
    transform: rotate(-10deg) translateY(-3px);
    color: white;
}

.future-code-icon:hover .right-bracket {
    transform: rotate(10deg) translateY(3px);
    color: white;
}

/* 代码行 */
.code-line {
    position: absolute;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    left: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.line1 {
    top: 28px;
    width: 35px;
}

.line2 {
    top: 37px;
    width: 45px;
}

.line3 {
    top: 46px;
    width: 30px;
}

.future-code-icon:hover .code-line {
    background: rgba(255, 255, 255, 0.9);
}

.future-code-icon:hover .line1 {
    width: 40px;
    transform: translateX(5px);
}

.future-code-icon:hover .line2 {
    width: 50px;
    transform: translateX(0);
}

.future-code-icon:hover .line3 {
    width: 35px;
    transform: translateX(8px);
}

/* 代码点 */
.code-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.dot1 {
    top: 30px;
    left: 20px;
}

.dot2 {
    top: 39px;
    left: 20px;
}

.dot3 {
    top: 48px;
    left: 20px;
}

.future-code-icon:hover .code-dot {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

.future-code-icon:hover .dot1 {
    transform: scale(1.3) translateY(-2px);
}

.future-code-icon:hover .dot2 {
    transform: scale(1.3) translateX(2px);
}

.future-code-icon:hover .dot3 {
    transform: scale(1.3) translateY(2px);
}

/* 代码光效 */
.code-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    filter: blur(5px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-code-icon:hover .code-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(8px);
}

/* 图标标签 */
.code-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E0F7FA;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes codeIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.code-icon-clicked {
    animation: codeIconClick 0.3s ease;
}

/* 代码流动画 */
@keyframes codeFlow {
    0% { opacity: 0.5; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* 未来感光效 */
.code-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-code-icon:hover .code-icon-shape::before {
    opacity: 1;
}


/* 商城图标容器 */
.shop-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格商城图标 */
.future-shop-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-shop-icon:hover {
    transform: translateY(-5px);
}

/* 商城图标主体 */
.shop-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(255, 152, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-shop-icon:hover .shop-icon-shape {
    background: linear-gradient(135deg, #FFB74D 0%, #FF7043 100%);
    box-shadow: 
        0 15px 30px rgba(255, 152, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 购物袋主体 */
.shop-bag {
    position: absolute;
    width: 45px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px 8px 12px 12px;
    top: 25px;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 -5px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-shop-icon:hover .shop-bag {
    transform: translateY(-3px);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.3),
        inset 0 -7px 7px rgba(0, 0, 0, 0.15);
}

/* 购物袋手柄 */
.shop-handle {
    position: absolute;
    width: 25px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-shop-icon:hover .shop-handle {
    transform: translateY(-2px) scale(1.05);
    background: white;
}

/* 商品项 */
.shop-item {
    position: absolute;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.item1 {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    top: 35px;
    left: 25px;
}

.item2 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    top: 40px;
    left: 40px;
}

.item3 {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
    top: 45px;
    left: 30px;
}

.future-shop-icon:hover .shop-item {
    transform: scale(1.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.future-shop-icon:hover .item1 {
    transform: scale(1.3) translateY(-3px);
}

.future-shop-icon:hover .item2 {
    transform: scale(1.3) translateX(2px);
}

.future-shop-icon:hover .item3 {
    transform: scale(1.3) translateY(2px);
}

/* 价格标签 */
.price-tag {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #F44336 0%, #EF5350 100%);
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 4;
}

.future-shop-icon:hover .price-tag {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* 商城光效 */
.shop-glow {
    position: absolute;
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px 8px 12px 12px;
    top: 25px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-shop-icon:hover .shop-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.shop-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFF3E0;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes shopIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.shop-icon-clicked {
    animation: shopIconClick 0.3s ease;
}

/* 商品跳动动画 */
@keyframes itemBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 未来感光效 */
.shop-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-shop-icon:hover .shop-icon-shape::before {
    opacity: 1;
}


/* 今日运势图标容器  */
.luck -icon-container{
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格今日运势图标 */
.future-luck-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-luck-icon:hover {
    transform: translateY(-5px);
}

/* 运势图标主体 */
.luck-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(156, 39, 176, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-luck-icon:hover .luck-icon-shape {
    background: linear-gradient(135deg, #BA68C8 0%, #7E57C2 100%);
    box-shadow: 
        0 15px 30px rgba(156, 39, 176, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 水晶球 */
.crystal-ball {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 2;
    transition: all 0.3s ease;
}

.future-luck-icon:hover .crystal-ball {
    transform: scale(1.1);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.7);
}

/* 水晶球光效 */
.crystal-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(5px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-luck-icon:hover .crystal-glow {
    background: rgba(255, 255, 255, 0.2);
    filter: blur(8px);
}

/* 运势星星 */
.fortune-star {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    transition: all 0.5s ease;
    z-index: 3;
}

.star1 {
    top: 18px;
    left: 20px;
    transform: rotate(-15deg);
}

.star2 {
    top: 15px;
    right: 18px;
    transform: rotate(10deg);
}

.star3 {
    bottom: 18px;
    left: 25px;
    transform: rotate(5deg);
}

.future-luck-icon:hover .fortune-star {
    color: white;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.future-luck-icon:hover .star1 {
    transform: rotate(-15deg) translateY(-5px);
}

.future-luck-icon:hover .star2 {
    transform: rotate(10deg) translateX(3px);
}

.future-luck-icon:hover .star3 {
    transform: rotate(5deg) translateY(4px);
}

/* 星座符号 */
.zodiac-symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: bold;
    bottom: 20px;
    right: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 4;
}

.future-luck-icon:hover .zodiac-symbol {
    color: white;
    transform: scale(1.2) rotate(15deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* 闪光效果 */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: all 0.5s ease;
}

.sparkle1 {
    top: 25px;
    left: 15px;
}

.sparkle2 {
    top: 40px;
    right: 15px;
}

.sparkle3 {
    bottom: 25px;
    right: 25px;
}

.future-luck-icon:hover .sparkle {
    opacity: 1;
    animation: sparkleTwinkle 1.5s infinite alternate;
}

@keyframes sparkleTwinkle {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.3); opacity: 1; }
}

.future-luck-icon:hover .sparkle1 {
    animation-delay: 0s;
}

.future-luck-icon:hover .sparkle2 {
    animation-delay: 0.3s;
}

.future-luck-icon:hover .sparkle3 {
    animation-delay: 0.6s;
}

/* 图标标签 */
.luck-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F3E5F5;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes luckIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.luck-icon-clicked {
    animation: luckIconClick 0.3s ease;
}

/* 星星旋转动画 */
@keyframes starRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 未来感光效 */
.luck-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-luck-icon:hover .luck-icon-shape::before {
    opacity: 1;
}



/* 超级计算图标容器  */
.computer-icon-container {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}

/* 未来风格超级计算图标 */
.future-computer-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-computer-icon:hover {
    transform: translateY(-5px);
}

/* 超级计算图标主体 */
.computer-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(21, 101, 192, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-computer-icon:hover .computer-icon-shape {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    box-shadow: 
        0 15px 30px rgba(21, 101, 192, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* CPU芯片 */
.cpu-chip {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #263238 0%, #37474F 100%);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.7),
        0 3px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-computer-icon:hover .cpu-chip {
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.8),
        0 5px 10px rgba(0, 0, 0, 0.5);
}

/* 芯片核心 */
.chip-core {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.core1 {
    top: 25px;
    left: 25px;
}

.core2 {
    top: 25px;
    right: 25px;
}

.core3 {
    bottom: 25px;
    left: 25px;
}

.core4 {
    bottom: 25px;
    right: 25px;
}

.future-computer-icon:hover .chip-core {
    background: linear-gradient(135deg, #26C6DA 0%, #00BCD4 100%);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.9);
}

.future-computer-icon:hover .core1 {
    transform: translate(-2px, -2px);
}

.future-computer-icon:hover .core2 {
    transform: translate(2px, -2px);
}

.future-computer-icon:hover .core3 {
    transform: translate(-2px, 2px);
}

.future-computer-icon:hover .core4 {
    transform: translate(2px, 2px);
}

/* 数据线 */
.data-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.line1 {
    width: 30px;
    top: 20px;
    left: 23px;
}

.line2 {
    width: 25px;
    top: 38px;
    left: 25px;
}

.line3 {
    width: 28px;
    top: 56px;
    left: 23px;
}

.future-computer-icon:hover .data-line {
    background: rgba(255, 255, 255, 0.9);
}

.future-computer-icon:hover .line1 {
    width: 35px;
    transform: translateX(-2px);
}

.future-computer-icon:hover .line2 {
    width: 30px;
    transform: translateX(2px);
}

.future-computer-icon:hover .line3 {
    width: 33px;
    transform: translateX(-2px);
}

/* 二进制数字 */
.binary-digit {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 4;
}

.digit1 {
    top: 18px;
    left: 18px;
}

.digit2 {
    top: 36px;
    left: 20px;
}

.digit3 {
    top: 54px;
    left: 18px;
}

.future-computer-icon:hover .binary-digit {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.future-computer-icon:hover .digit1 {
    transform: translateY(-2px);
}

.future-computer-icon:hover .digit2 {
    transform: translateX(2px);
}

.future-computer-icon:hover .digit3 {
    transform: translateY(2px);
}

/* 芯片光效 */
.chip-glow {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-computer-icon:hover .chip-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.computer-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E3F2FD;
    text-shadow: 0 0 10px rgba(21, 101, 192, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes computerIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.computer-icon-clicked {
    animation: computerIconClick 0.3s ease;
}

/* 数据流动画 */
@keyframes dataFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* 未来感光效 */
.computer-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-computer-icon:hover .computer-icon-shape::before {
    opacity: 1;
}


/* 网址导航图标容器  */
.link-station-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格网址导航图标 */
.future-link-station-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-link-station-icon:hover {
    transform: translateY(-5px);
}

/* 网址导航图标主体 */
.link-station-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(76, 175, 80, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-link-station-icon:hover .link-station-icon-shape {
    background: linear-gradient(135deg, #66BB6A 0%, #388E3C 100%);
    box-shadow: 
        0 15px 30px rgba(76, 175, 80, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 地球图标 */
.global-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.global-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.3) 50%, transparent 52%);
}

.global-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.3) 50%, transparent 52%);
}

.future-link-station-icon:hover .global-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.4);
}

/* 链接节点 */
.link-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.node1 {
    top: 18px;
    left: 18px;
}

.node2 {
    top: 18px;
    right: 18px;
}

.node3 {
    bottom: 18px;
    left: 30px;
}

.future-link-station-icon:hover .link-node {
    background: linear-gradient(135deg, #FFB74D 0%, #FF8A65 100%);
    box-shadow: 0 0 12px rgba(255, 152, 0, 0.9);
}

.future-link-station-icon:hover .node1 {
    transform: translate(-2px, -2px);
}

.future-link-station-icon:hover .node2 {
    transform: translate(2px, -2px);
}

.future-link-station-icon:hover .node3 {
    transform: translate(0, 2px);
}

/* 连接线 */
.link-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.line1 {
    width: 20px;
    top: 22px;
    left: 26px;
    transform: rotate(45deg);
}

.line2 {
    width: 20px;
    top: 22px;
    right: 26px;
    transform: rotate(-45deg);
}

.line3 {
    width: 20px;
    bottom: 22px;
    left: 35px;
}

.future-link-station-icon:hover .link-line {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* 链接箭头 */
.link-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
    bottom: 22px;
    right: 20px;
    transition: all 0.3s ease;
    z-index: 4;
}

.future-link-station-icon:hover .link-arrow {
    transform: translateX(3px);
    border-color: transparent transparent transparent white;
}

/* 网络光效 */
.network-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-link-station-icon:hover .network-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(6px);
}

/* 图标标签 */
.link-station-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E8F5E9;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes linkStationIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.link-station-icon-clicked {
    animation: linkStationIconClick 0.3s ease;
}

/* 脉冲动画 */
@keyframes nodePulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* 未来感光效 */
.link-station-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-link-station-icon:hover .link-station-icon-shape::before {
    opacity: 1;
}


/* YOCIM助手图标容器 */
.yocim-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格YOCIM助手图标 */
.future-yocim-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 75px;
    transition: transform 0.3s ease;
}

.future-yocim-icon:hover {
    transform: translateY(-5px);
}

/* 助手图标主体 */
.yocim-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(93, 64, 55, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-yocim-icon:hover .yocim-icon-shape {
    background: linear-gradient(135deg, #6D4C41 0%, #4E342E 100%);
    box-shadow: 
        0 15px 30px rgba(93, 64, 55, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 助手头部 */
.assistant-head {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #757575 0%, #424242 100%);
    border-radius: 50%;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-yocim-icon:hover .assistant-head {
    transform: scale(1.05);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.15);
}

/* 助手眼睛 */
.assistant-eye {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
    animation: eyeBlink 3s infinite;
}

.left-eye {
    top: 32px;
    left: 26px;
}

.right-eye {
    top: 32px;
    right: 26px;
}

@keyframes eyeBlink {
    0%, 90%, 100% { height: 6px; }
    95% { height: 1px; }
}

.future-yocim-icon:hover .assistant-eye {
    background: linear-gradient(135deg, #26C6DA 0%, #00BCD4 100%);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.9);
}

.future-yocim-icon:hover .left-eye {
    transform: translate(-1px, -1px);
}

.future-yocim-icon:hover .right-eye {
    transform: translate(1px, -1px);
}

/* 助手嘴巴 */
.assistant-mouth {
    position: absolute;
    width: 12px;
    height: 4px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    border-radius: 2px;
    bottom: 30px;
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-yocim-icon:hover .assistant-mouth {
    width: 15px;
    height: 5px;
    background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.7);
}

/* 对话气泡 */
.speech-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-radius: 4px;
    top: 20px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 9px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 4;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #4CAF50 transparent transparent transparent;
    transition: all 0.3s ease;
}

.future-yocim-icon:hover .speech-bubble {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.future-yocim-icon:hover .speech-bubble::after {
    border-color: #66BB6A transparent transparent transparent;
}

/* 电路线 */
.circuit-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.line1 {
    width: 15px;
    top: 45px;
    left: 15px;
    transform: rotate(45deg);
}

.line2 {
    width: 10px;
    bottom: 20px;
    left: 20px;
}

.line3 {
    width: 12px;
    bottom: 25px;
    right: 20px;
    transform: rotate(-30deg);
}

.future-yocim-icon:hover .circuit-line {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* 电路点 */
.circuit-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.dot1 {
    top: 48px;
    left: 12px;
}

.dot2 {
    bottom: 23px;
    left: 17px;
}

.dot3 {
    bottom: 28px;
    right: 17px;
}

.future-yocim-icon:hover .circuit-dot {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

/* AI光效 */
.ai-glow {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-yocim-icon:hover .ai-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(6px);
}

/* 图标标签 */
.yocim-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #EFEBE9;
    text-shadow: 0 0 10px rgba(93, 64, 55, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes yocimIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.yocim-icon-clicked {
    animation: yocimIconClick 0.3s ease;
}

/* 脉冲动画 */
@keyframes circuitPulse {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

/* 未来感光效 */
.yocim-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-yocim-icon:hover .yocim-icon-shape::before {
    opacity: 1;
}

/* CSS特效库图标容器  */
.css-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格CSS特效库图标 */
.future-css-icon {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}

.future-css-icon:hover {
    transform: translateY(-5px);
}

/* CSS图标主体 */
.css-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #D81B60 0%, #880E4F 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(216, 27, 96, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-css-icon:hover .css-icon-shape {
    background: linear-gradient(135deg, #EC407A 0%, #AD1457 100%);
    box-shadow: 
        0 15px 30px rgba(216, 27, 96, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* CSS层叠效果 */
.css-layer {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.layer1 {
    width: 50px;
    height: 40px;
    transform: rotate(3deg);
    z-index: 1;
}

.layer2 {
    width: 45px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(-2deg);
    z-index: 2;
}

.layer3 {
    width: 40px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(5deg);
    z-index: 3;
}

.future-css-icon:hover .css-layer {
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        0 3px 8px rgba(0, 0, 0, 0.3);
}

.future-css-icon:hover .layer1 {
    transform: rotate(5deg) translateY(-2px);
}

.future-css-icon:hover .layer2 {
    transform: rotate(-4deg) translateY(-1px);
}

.future-css-icon:hover .layer3 {
    transform: rotate(7deg) translateY(-3px);
}

/* CSS花括号 */
.css-brace {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 4;
}

.left-brace {
    left: 15px;
    top: 25px;
    transform: rotate(0deg);
}

.right-brace {
    right: 15px;
    bottom: 25px;
    transform: rotate(0deg);
}

.future-css-icon:hover .css-brace {
    color: white;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.future-css-icon:hover .left-brace {
    transform: rotate(-10deg) translateY(-3px);
}

.future-css-icon:hover .right-brace {
    transform: rotate(10deg) translateY(3px);
}

/* 动画圆圈 */
.animation-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.7);
    animation: pulseCircle 2s infinite;
    transition: all 0.3s ease;
    z-index: 5;
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.future-css-icon:hover .animation-circle {
    background: linear-gradient(135deg, #26C6DA 0%, #00BCD4 100%);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.9);
    animation: pulseCircle 1s infinite;
}

/* 渐变线 */
.gradient-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, #4CAF50, #2196F3, #FF9800);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.line1 {
    width: 30px;
    bottom: 20px;
    left: 23px;
}

.line2 {
    width: 25px;
    bottom: 25px;
    left: 25px;
}

.line3 {
    width: 20px;
    bottom: 30px;
    left: 28px;
}

.future-css-icon:hover .gradient-line {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.future-css-icon:hover .line1 {
    width: 35px;
    transform: translateX(-2px);
}

.future-css-icon:hover .line2 {
    width: 30px;
    transform: translateX(1px);
}

.future-css-icon:hover .line3 {
    width: 25px;
    transform: translateX(-1px);
}

/* CSS光效 */
.css-glow {
    position: absolute;
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-css-icon:hover .css-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.css-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FCE4EC;
    text-shadow: 0 0 10px rgba(216, 27, 96, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes cssIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.css-icon-clicked {
    animation: cssIconClick 0.3s ease;
}

/* 颜色变换动画 */
@keyframes colorChange {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 未来感光效 */
.css-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-css-icon:hover .css-icon-shape::before {
    opacity: 1;
}

/* 设置图标容器 - 按照您指定的位置 */
.setting-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格设置图标 */
.future-setting-icon {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}

.future-setting-icon:hover {
    transform: translateY(-5px);
}

/* 设置图标主体 */
.setting-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #607D8B 0%, #37474F 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(96, 125, 139, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-setting-icon:hover .setting-icon-shape {
    background: linear-gradient(135deg, #78909C 0%, #455A64 100%);
    box-shadow: 
        0 15px 30px rgba(96, 125, 139, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 大齿轮 */
.gear-large {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.gear-large::before,
.gear-large::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
}

.gear-large::before {
    transform: rotate(45deg);
}

.gear-large::after {
    transform: rotate(22.5deg);
}

.future-setting-icon:hover .gear-large {
    transform: rotate(15deg);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* 小齿轮 */
.gear-small {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 20px;
    right: 20px;
    box-shadow: 
        inset 0 0 8px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.gear-small::before,
.gear-small::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
}

.gear-small::before {
    transform: rotate(45deg);
}

.future-setting-icon:hover .gear-small {
    transform: rotate(-15deg);
    box-shadow: 
        inset 0 0 12px rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* 齿轮点 */
.gear-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 4;
}

.dot1 {
    top: 28px;
    left: 28px;
}

.dot2 {
    top: 28px;
    right: 28px;
}

.dot3 {
    bottom: 28px;
    left: 34px;
}

.future-setting-icon:hover .gear-dot {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.future-setting-icon:hover .dot1 {
    transform: translate(-2px, -2px);
}

.future-setting-icon:hover .dot2 {
    transform: translate(2px, -2px);
}

.future-setting-icon:hover .dot3 {
    transform: translateY(2px);
}

/* 齿轮中心 */
.gear-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 5;
}

.future-setting-icon:hover .gear-center {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* 设置光效 */
.setting-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-setting-icon:hover .setting-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.setting-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ECEFF1;
    text-shadow: 0 0 10px rgba(96, 125, 139, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes settingIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.setting-icon-clicked {
    animation: settingIconClick 0.3s ease;
}

/* 齿轮旋转动画 */
@keyframes gearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 未来感光效 */
.setting-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-setting-icon:hover .setting-icon-shape::before {
    opacity: 1;
}


/* 直播图标容器  */
.live-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格直播图标 */
.future-live-icon {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}
.future-live-icon:hover {
    transform: translateY(-5px);
}

/* 直播图标主体 */
.live-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #E53935 0%, #B71C1C 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(229, 57, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-live-icon:hover .live-icon-shape {
    background: linear-gradient(135deg, #EF5350 0%, #C62828 100%);
    box-shadow: 
        0 15px 30px rgba(229, 57, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 摄像头主体 */
.camera-body {
    position: absolute;
    width: 35px;
    height: 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-live-icon:hover .camera-body {
    transform: scale(1.05);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 8px rgba(255, 255, 255, 0.2);
}

/* 摄像头镜头 */
.camera-lens {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(33, 150, 243, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-live-icon:hover .camera-lens {
    background: linear-gradient(135deg, #42A5F5 0%, #1565C0 100%);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(33, 150, 243, 0.9);
}

/* 摄像头指示灯 */
.camera-light {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    border-radius: 50%;
    top: 22px;
    right: 22px;
    box-shadow: 0 0 8px rgba(255, 82, 82, 0.8);
    animation: blink 2s infinite;
    transition: all 0.3s ease;
    z-index: 4;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 0.7; }
    25%, 75% { opacity: 1; }
}

.future-live-icon:hover .camera-light {
    animation: blink 1s infinite;
    background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
    box-shadow: 0 0 12px rgba(255, 82, 82, 0.9);
}

/* 信号波形 */
.signal-wave {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: wavePulse 2s infinite linear;
    opacity: 0;
}

.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: 0.5s;
}

.wave3 {
    animation-delay: 1s;
}

@keyframes wavePulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.future-live-icon:hover .signal-wave {
    border-color: rgba(255, 255, 255, 0.5);
    animation-duration: 1.5s;
}

/* 直播红点 */
.live-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    border-radius: 50%;
    bottom: 15px;
    left: 15px;
    box-shadow: 0 0 8px rgba(255, 82, 82, 0.8);
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
    z-index: 4;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.future-live-icon:hover .live-dot {
    animation: pulse 1s infinite;
    box-shadow: 0 0 12px rgba(255, 82, 82, 0.9);
}

/* 直播文字 */
.live-text {
    position: absolute;
    font-family: 'Arial', sans-serif;
    font-size: 8px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    bottom: 18px;
    right: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 4;
}

.future-live-icon:hover .live-text {
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

/* 直播光效 */
.live-glow {
    position: absolute;
    width: 35px;
    height: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-live-icon:hover .live-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.live-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFEBEE;
    text-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes liveIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.live-icon-clicked {
    animation: liveIconClick 0.3s ease;
}

/* 未来感光效 */
.live-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-live-icon:hover .live-icon-shape::before {
    opacity: 1;
}


/* 旅行图标容器 */
.travel-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格旅行图标 */
.future-travel-icon {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}

.future-travel-icon:hover {
    transform: translateY(-5px);
}

/* 旅行图标主体 */
.travel-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #039BE5 0%, #01579B 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(3, 155, 229, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-travel-icon:hover .travel-icon-shape {
    background: linear-gradient(135deg, #29B6F6 0%, #0277BD 100%);
    box-shadow: 
        0 15px 30px rgba(3, 155, 229, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 地球 */
.earth-globe {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(76, 175, 80, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.earth-globe::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.3) 50%, transparent 52%);
}

.earth-globe::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.3) 50%, transparent 52%);
}

.future-travel-icon:hover .earth-globe {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(76, 175, 80, 0.7);
}

/* 飞机 */
.flight-plane {
    position: absolute;
    width: 25px;
    height: 8px;
    background: linear-gradient(to right, #FF9800 0%, #F57C00 100%);
    border-radius: 4px;
    top: 25px;
    right: 20px;
    transform: rotate(-30deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.flight-plane::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #FF9800;
    top: 0;
    left: -6px;
}

.flight-plane::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #FF9800;
    border-radius: 2px;
    top: -4px;
    left: 8px;
    transform: rotate(-45deg);
}

.future-travel-icon:hover .flight-plane {
    transform: rotate(-30deg) translateX(-5px) translateY(-3px);
    background: linear-gradient(to right, #FFB74D 0%, #FF9800 100%);
}

/* 飞行路径 */
.flight-path {
    position: absolute;
    width: 40px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50% / 100%;
    border-bottom: none;
    top: 35px;
    left: 20px;
    transform: rotate(30deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.future-travel-icon:hover .flight-path {
    border-color: rgba(255, 255, 255, 0.9);
}

/* 目的地点 */
.destination-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.dot1 {
    top: 30px;
    left: 25px;
}

.dot2 {
    bottom: 25px;
    right: 25px;
}

.future-travel-icon:hover .destination-dot {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.future-travel-icon:hover .dot1 {
    transform: scale(1.3) translateY(-2px);
}

.future-travel-icon:hover .dot2 {
    transform: scale(1.3) translateX(2px);
}

/* 指南针指针 */
.compass-pointer {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
    bottom: 15px;
    left: 20px;
    transition: all 0.3s ease;
    z-index: 4;
}

.future-travel-icon:hover .compass-pointer {
    border-color: transparent transparent white transparent;
    transform: rotate(15deg);
}

/* 旅行光效 */
.travel-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-travel-icon:hover .travel-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(6px);
}

/* 图标标签 */
.travel-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E1F5FE;
    text-shadow: 0 0 10px rgba(3, 155, 229, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes travelIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.travel-icon-clicked {
    animation: travelIconClick 0.3s ease;
}

/* 飞机飞行动画 */
@keyframes planeFly {
    0% { transform: rotate(-30deg) translateX(0) translateY(0); }
    100% { transform: rotate(-30deg) translateX(-20px) translateY(10px); }
}

/* 未来感光效 */
.travel-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-travel-icon:hover .travel-icon-shape::before {
    opacity: 1;
}


/* 回收站图标容器  */
.trash-icon-container {
    position: relative;   
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 80px;
}

/* 未来风格回收站图标 */
.future-trash-icon {
    position: relative;  
    top: auto;
    left: auto;
    margin: 0;            
    width: 80;          
}

.future-trash-icon:hover {
    transform: translateY(-5px);
}

/* 回收站图标主体 */
.trash-icon-shape {
    position: relative;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 20px rgba(97, 97, 97, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.future-trash-icon:hover .trash-icon-shape {
    background: linear-gradient(135deg, #757575 0%, #616161 100%);
    box-shadow: 
        0 15px 30px rgba(97, 97, 97, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* 垃圾桶主体 */
.trash-can {
    position: absolute;
    width: 40px;
    height: 35px;
    background: linear-gradient(to bottom, #B0BEC5 0%, #78909C 100%);
    border-radius: 4px 4px 8px 8px;
    bottom: 15px;
    box-shadow: 
        inset 0 -5px 5px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.future-trash-icon:hover .trash-can {
    transform: scale(1.05);
    box-shadow: 
        inset 0 -7px 7px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.4);
}

/* 垃圾桶盖子 */
.trash-lid {
    position: absolute;
    width: 45px;
    height: 8px;
    background: linear-gradient(to right, #90A4AE 0%, #607D8B 100%);
    border-radius: 8px 8px 4px 4px;
    top: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.future-trash-icon:hover .trash-lid {
    transform: rotate(15deg) translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* 垃圾项目 */
.trash-item {
    position: absolute;
    border-radius: 2px;
    background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.item1 {
    width: 12px;
    height: 6px;
    top: 35px;
    left: 25px;
    transform: rotate(30deg);
}

.item2 {
    width: 8px;
    height: 4px;
    top: 40px;
    left: 35px;
    transform: rotate(-15deg);
}

.item3 {
    width: 10px;
    height: 5px;
    top: 45px;
    right: 25px;
    transform: rotate(45deg);
}

.future-trash-icon:hover .trash-item {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.future-trash-icon:hover .item1 {
    transform: rotate(30deg) translateY(-5px);
}

.future-trash-icon:hover .item2 {
    transform: rotate(-15deg) translateY(-3px) translateX(2px);
}

.future-trash-icon:hover .item3 {
    transform: rotate(45deg) translateY(-4px) translateX(-2px);
}

/* 删除线 */
.delete-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 4;
}

.line1 {
    width: 30px;
    top: 32px;
    left: 23px;
    transform: rotate(45deg);
}

.line2 {
    width: 30px;
    top: 32px;
    left: 23px;
    transform: rotate(-45deg);
}

.future-trash-icon:hover .delete-line {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

/* 删除符号 */
.delete-symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: bold;
    top: 20px;
    right: 20px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 5;
}

.future-trash-icon:hover .delete-symbol {
    color: white;
    transform: scale(1.2) rotate(15deg);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* 回收站光效 */
.trash-glow {
    position: absolute;
    width: 40px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 8px 8px;
    bottom: 15px;
    filter: blur(3px);
    z-index: 1;
    transition: all 0.3s ease;
}

.future-trash-icon:hover .trash-glow {
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
}

/* 图标标签 */
.trash-icon-label {
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F5F5F5;
    text-shadow: 0 0 10px rgba(97, 97, 97, 0.5);
    letter-spacing: 0.5px;
}

/* 点击动画效果 */
@keyframes trashIconClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.trash-icon-clicked {
    animation: trashIconClick 0.3s ease;
}

/* 垃圾项目掉落动画 */
@keyframes trashFall {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* 未来感光效 */
.trash-icon-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-trash-icon:hover .trash-icon-shape::before {
    opacity: 1;
}


/* 小屏幕（手机） */
@media (max-width: 600px) {
    .icons-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 10px;
        top: 100px;
        bottom: 80px;
    }
    
    .future-notebook-icon,
    .future-music-player-icon {
        width: 70px;
    }
    
    /* 如果图标内部的文字需要缩小 */
    .icon-label,
    .music-icon-label /* 等 */ {
        font-size: 12px;
    }
}
