/* 卡密验证页面样式 */
.card-input-section {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid rgba(245, 87, 108, 0.3);
}

.card-input-section h3 {
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #f5576c;
    box-shadow: 0 0 10px rgba(245, 87, 108, 0.2);
}

.error-message {
    color: #f5576c;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    color: #4caf50;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.success-message.show {
    display: block;
}

.free-trial-section {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(245, 87, 108, 0.3);
}

.free-trial-section p {
    color: #666;
    margin-bottom: 10px;
}

.remaining-uses {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    border-radius: 10px;
    border: 2px solid rgba(245, 87, 108, 0.3);
}

.remaining-uses p {
    margin: 0;
    font-size: 1.1em;
    color: #555;
}

.remaining-uses span {
    font-weight: bold;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
}

/* 测试按钮区域 */
.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.home-buttons button {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .home-buttons button {
        max-width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #ffd876 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    color: #333;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page {
    display: none;
    min-height: 100vh;
    padding: 20px;
}

.page.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 首页样式 */
.title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #ffd876 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emoji-icon {
    font-size: 1em;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.intro {
    text-align: center;
    margin: 30px 0;
    line-height: 1.8;
}

.intro p {
    margin: 10px 0;
    color: #555;
}

/* 按钮样式 */
.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    color: white;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.5);
    background: linear-gradient(135deg, #ffd876 0%, #f5576c 50%, #f093fb 100%);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: white;
    color: #f5576c;
    border: 2px solid #f5576c;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

/* 进度�?*/
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 25%, #ffd876 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 200% 100%;
    animation: progressFlow 2s linear infinite;
    transition: width 0.3s ease;
    width: 0%;
}

@keyframes progressFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.question-number {
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* 问题卡片 */
.question-card {
    margin: 30px 0;
}

.question-text {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05em;
}

.option:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    border-color: #f5576c;
    transform: translateX(8px);
    box-shadow: 0 3px 10px rgba(245, 87, 108, 0.2);
}

.option.selected {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    color: white;
    border-color: #f5576c;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

/* 导航按钮 */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.navigation button {
    flex: 1;
}

/* 结果页样�?*/
.result-title {
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #ffd876 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
}

.main-animal {
    text-align: center;
    margin-bottom: 40px;
}

.animal-icon {
    font-size: 8em;
    margin-bottom: 20px;
}

.animal-name {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.animal-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(245, 87, 108, 0.3);
    transition: transform 0.3s;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

.result-content {
    margin: 30px 0;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.section p {
    line-height: 1.8;
    color: #555;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.section ul li:before {
    content: "�?;
    position: absolute;
    left: 0;
    color: #f5576c;
    font-weight: bold;
    font-size: 1.2em;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-tag {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.9em;
    color: #555;
}

.secondary-animals {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.secondary-animal {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.secondary-animal-icon {
    font-size: 3em;
}

.secondary-animal-name {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.result-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.result-actions button {
    min-width: 200px;
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .title {
        font-size: 2em;
        gap: 10px;
    }

    .question-text {
        font-size: 1.2em;
    }

    .animal-icon {
        font-size: 5em;
    }

    .animal-name {
        font-size: 1.8em;
    }

    .navigation {
        flex-direction: column;
    }

    .result-actions {
        flex-direction: column;
    }
    
    .result-actions button {
        width: 100%;
    }
}


/* 美化结果页面 */
.main-animal {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(245, 87, 108, 0.15) 50%, rgba(255, 216, 118, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(245, 87, 108, 0.3);
}

.animal-icon {
    font-size: 8em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animal-name {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.career-tag {
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 50%, rgba(255, 216, 118, 0.1) 100%);
    border: 1px solid #f5576c;
    border-radius: 15px;
    font-size: 0.9em;
    color: #f5576c;
    font-weight: 500;
    transition: all 0.3s;
}

.career-tag:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    color: white;
    transform: translateY(-2px);
}

.secondary-animals {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.08) 0%, rgba(245, 87, 108, 0.08) 50%, rgba(255, 216, 118, 0.08) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px dashed #f5576c;
}

/* 隐藏彩蛋样式 */
.easter-egg {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5em;
    opacity: 0.15;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.easter-egg:hover {
    opacity: 1;
    transform: scale(1.2);
}

.easter-egg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.easter-egg-modal.active {
    display: flex;
}

.easter-egg-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.easter-egg-content h2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 2em;
}

.easter-egg-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.easter-egg-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

/* 问题卡片相对定位 */
.question-card {
    margin: 30px 0;
    position: relative;
}

/* 选项点击动画 */
.option {
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05em;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 87, 108, 0.2), transparent);
    transition: left 0.5s;
}

.option:hover::before {
    left: 100%;
}

/* 结果页面卡片阴影 */
.section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.2);
}


/* 按钮脉冲动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(245, 87, 108, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(245, 87, 108, 0.6);
    }
}

/* 优化容器阴影 */
.container {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* 优化次要动物显示 */
.secondary-animal {
    display: inline-block;
    margin: 10px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s;
}

.secondary-animal:hover {
    transform: translateY(-5px);
}

.secondary-animal-icon {
    font-size: 3em;
}

.secondary-animal-name {
    font-size: 0.9em;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 5px;
    font-weight: 600;
}

/* 优化介绍文字 */
.intro p {
    margin: 10px 0;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
}

/* 优化副标�?*/
.subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}


/* 彩蛋奖励部分样式 */
.easter-egg-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.easter-egg-bonus::before {
    content: '🎊';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3em;
    opacity: 0.3;
}

.easter-egg-bonus h3 {
    color: #FF8C00;
}

.easter-egg-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}


/* 优化问题文字 */
.question-text {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

/* 优化进度条容�?*/
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 优化选项卡片 */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 优化结果页动物图�?*/
.animal-icon {
    font-size: 8em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* 优化次要动物卡片 */
.secondary-animal {
    display: inline-block;
    margin: 10px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.secondary-animal:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
}

/* 优化结果内容区域 */
.result-content {
    margin: 30px 0;
}

.section {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd876 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

/* 优化彩蛋奖励样式 */
.easter-egg-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
    animation: easterEggGlow 2s ease-in-out infinite;
}

@keyframes easterEggGlow {
    0%, 100% { box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5); }
}

.easter-egg-bonus::before {
    content: '🎊';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3em;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.easter-egg-bonus h3 {
    color: #FF8C00;
    background: none;
    -webkit-text-fill-color: #FF8C00;
}


/* 动物图鉴样式 */
.guide-container {
    max-width: 1000px;
}

.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.animal-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.animal-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    border: 2px solid #f5576c;
}

.animal-card-icon {
    font-size: 3.5em;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.animal-card-name {
    font-size: 1.1em;
    font-weight: 600;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.animal-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.mini-tag {
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
    border-radius: 10px;
    font-size: 0.75em;
    color: #f5576c;
    border: 1px solid rgba(245, 87, 108, 0.3);
}

/* 响应式优�?*/
@media (max-width: 768px) {
    .animal-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .animal-card {
        padding: 15px;
    }
    
    .animal-card-icon {
        font-size: 2.5em;
    }
}


/* 首页按钮容器 */
.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.home-buttons button {
    width: 100%;
    max-width: 300px;
}

/* 隐藏动物提示 */
.hidden-hint {
    text-align: center;
    margin: 30px 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-radius: 15px;
    border: 2px dashed #FFD700;
    animation: hintPulse 2s ease-in-out infinite;
}

.hidden-hint p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes hintPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

/* 响应式优�?*/
@media (max-width: 768px) {
    .home-buttons button {
        max-width: 100%;
    }
    
    .hidden-hint p {
        font-size: 1em;
    }
}

/* 加载页面样式 */
.loading-animation {
    text-align: center;
    padding: 60px 20px;
}

.animal-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    height: 100px;
    align-items: center;
}

.carousel-animal {
    font-size: 60px;
    animation: bounce-loading 1.5s ease-in-out infinite;
    opacity: 0.3;
}

.carousel-animal:nth-child(1) {
    animation-delay: 0s;
}

.carousel-animal:nth-child(2) {
    animation-delay: 0.2s;
}

.carousel-animal:nth-child(3) {
    animation-delay: 0.4s;
}

.carousel-animal:nth-child(4) {
    animation-delay: 0.6s;
}

.carousel-animal:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce-loading {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

.loading-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.loading-progress {
    max-width: 400px;
    margin: 0 auto 30px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadingProgress 2s ease-in-out forwards, shimmer 1.5s linear infinite;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.loading-text {
    font-size: 16px;
    color: #666;
    transition: opacity 0.3s ease;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .carousel-animal {
        font-size: 45px;
    }
    
    .loading-title {
        font-size: 22px;
    }
    
    .loading-progress {
        max-width: 300px;
    }
}
