.wishlist-container {
    position: relative;
    width: 85%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.wishlist-title {
    text-align: center;
    color: rgba(80, 80, 80, 0.9);
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.wishlist-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 182, 193, 0.5), 
        transparent
    );
}

.wish-item {
    position: relative;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.wish-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.wish-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: 15px;
    pointer-events: none;
}

.wish-title {
    font-size: 1.2em;
    color: rgba(80, 80, 80, 0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wish-icon {
    font-size: 1.4em;
    opacity: 0.8;
}

.wish-description {
    color: rgba(100, 100, 100, 0.8);
    font-size: 0.95em;
    line-height: 1.5;
    margin-left: 34px;
}

.wish-progress {
    margin-top: 15px;
    margin-left: 34px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 182, 193, 0.5), 
        rgba(255, 218, 224, 0.7)
    );
    border-radius: 2px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 装饰性元素 */
.wishlist-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 182, 193, 0.1) 0%,
        transparent 70%
    );
    animation: rotateLight 15s linear infinite;
    pointer-events: none;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .wishlist-container {
        width: 90%;
        padding: 20px;
    }
    
    .wish-title {
        font-size: 1.1em;
    }
    
    .wish-description {
        font-size: 0.9em;
    }
} 