  /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Comic Sans MS', 'Marker Felt', '微软雅黑', sans-serif;
        }
        
        body {
            background-color: #f9f4ff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* 容器样式 */
        .fantasy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 魔法标题样式 */
        .magic-header {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }
        
        .magic-header h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #6a3093;
        }
        
        .sparkle {
            background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: sparkle 3s infinite alternate;
        }
        
        @keyframes sparkle {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.3); }
        }
        
        /* 浮动岛屿样式 */
       .floating-island {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    overflow: visible; /* 确保放大后内容可见 */
}

.floating-island img {
    width: 140%;
    height: auto;
    display: block;
    transform: scale(1.8); /* 放大到150% */
    transform-origin: center top; /* 从顶部中心缩放 */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(106, 48, 147, 0.2));
    margin: 0 auto; /* 保持居中 */
}

        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .tiny-developers {
            position: absolute;
            bottom: 15%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-around;
        }
        
        .dev-avatar {
            width: 50px;
            height: 50px;
            background-color: #fff;
            border-radius: 50%;
            border: 3px solid #b399d4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .dev-avatar:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        /* 故事书部分 */
        .storybook-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: 60px 0;
            background-color: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(106, 48, 147, 0.1);
        }
        
        .page-turn {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .page-turn h2 {
            font-size: 1.8rem;
            color: #6a3093;
            margin-bottom: 20px;
        }
        
        .page-turn p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .magic-button {
            background: linear-gradient(90deg, #ff9a8b, #ff6b95);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
            transition: all 0.3s ease;
        }
        
        .magic-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
        }
        
        .story-illustration {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .story-illustration img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.5s ease;
        }
        
        .story-illustration:hover img {
            transform: scale(1.03);
        }
        
        /* 魔法能力部分 */
        .magic-powers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
        }
        
        .power-card {
            flex: 1;
            min-width: 300px;
            max-width: 450px;
            padding: 30px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .power-card:hover {
            transform: translateY(-10px);
        }
        
        .power-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .power-card:hover::before {
            opacity: 1;
        }
        
        .sparkle-bg {
            background: linear-gradient(135deg, #6a3093, #a044ff);
        }
        
        .rainbow-bg {
            background: linear-gradient(135deg, #ff6b95, #ff8e53);
        }
        
        .power-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .power-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .power-card p {
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .magic-list {
            list-style-type: none;
        }
        
        .magic-list li {
            padding: 8px 0;
            font-size: 1rem;
            position: relative;
            padding-left: 30px;
        }
        
        .magic-list li::before {
            content: '✨';
            position: absolute;
            left: 0;
        }
        
        /* 魔法团队部分 */
        .enchanted-team {
            text-align: center;
            margin: 80px 0;
        }
        
        .enchanted-team h2 {
            font-size: 2rem;
            color: #6a3093;
            margin-bottom: 40px;
        }
        
        .team-carousel {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .team-member {
            width: 150px;
            text-align: center;
        }
        
        .member-avatar {
            width: 120px;
            height: 120px;
            background-color: #fff;
            border-radius: 50%;
            margin: 0 auto 15px;
            border: 4px solid #b399d4;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(106, 48, 147, 0.2);
            transition: all 0.3s ease;
        }
        
        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-member:hover .member-avatar {
            transform: scale(1.1);
            box-shadow: 0 12px 24px rgba(106, 48, 147, 0.3);
        }
        
        .member-name {
            font-weight: bold;
            color: #6a3093;
            margin-bottom: 5px;
        }
        
        .member-role {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* 魔法使命部分 */
        .magic-mission {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: linear-gradient(135deg, rgba(179, 153, 212, 0.1), rgba(99, 197, 218, 0.1));
            border-radius: 30px;
            padding: 50px;
            margin: 60px 0;
        }
        
        .crystal-ball {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
        }
        
        .crystal-ball img {
            width: 100%;
            max-width: 300px;
            height: auto;
            animation: pulse 4s infinite ease-in-out;
            filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.5));
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }
        
        .mission-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .mission-text h2 {
            font-size: 1.8rem;
            color: #6a3093;
            margin-bottom: 20px;
        }
        
        .mission-text p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .rainbow-button {
            background: linear-gradient(90deg, 
                #ff9a8b, #ff6b95, #ff8e53, #ffca3a, 
                #8fd3f4, #a044ff, #6a3093);
            background-size: 400% 400%;
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            animation: rainbowBg 8s ease infinite;
        }
        
        @keyframes rainbowBg {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .rainbow-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .magic-header h1 {
                font-size: 2rem;
            }
            
            .storybook-section {
                flex-direction: column;
            }
            
            .page-turn, .story-illustration {
                min-width: 100%;
            }
            
            .power-card {
                min-width: 100%;
            }
            
            .magic-mission {
                padding: 30px;
            }
            
            .crystal-ball {
                margin-bottom: 30px;
            }
        }
        
        /* 加载动画 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        body {
            animation: fadeIn 0.5s ease-out;
        }