/**
 * shared/profile_styles.css
 * 统一个人主页 + 登录弹窗共享样式
 */

/* 右侧滑入动画 */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.animate-slide-in-right {
    animation: slideInRight 0.3s ease-out both;
}

/* 淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out both;
}

/* 上浮淡入动画 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.35s ease-out both;
}

/* 书卷纸纹背景 */
.shared-paper-bg {
    background-color: #faf8f3;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d6d3c9' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* 隐藏滚动条 */
.shared-no-scrollbar::-webkit-scrollbar {
    display: none;
}
.shared-no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 高级图鉴卡片 UI (Premium Atlas UI) */
.atlas-category-header {
    background: linear-gradient(90deg, #f0ede6 0%, transparent 100%);
    border-left: 4px solid #b4a078;
    color: #5c4f41;
}

.atlas-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 0.75rem;
}

.atlas-group-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e7dfd0 0%, transparent 100%);
    margin-left: 1rem;
}

.atlas-item-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(249,246,240,0.6));
    border: 1px solid #e7dfd0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(139,115,85,0.05);
}

.atlas-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139,115,85,0.1);
    border-color: #d4c5a9;
    background: #fff;
}

.atlas-empty-star {
    color: #e5e0d8;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.atlas-filled-star {
    color: #fbbf24;
    filter: drop-shadow(0 0 2px rgba(251,191,36,0.4));
}
