/* CSS变量已移至 common/variables.css */
/* 基础重置已移至 common/common.css */

body {
    background-color: var(--bg-gray);
    padding-bottom: 90px;
    min-height: 100vh;
}

/* 加载动画已移至 common/common.css */

/* 艺术化顶部设计 */
.premium-header {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, var(--santander-red) 0%, var(--dark-red) 100%);
    overflow: hidden;
    color: white;
    z-index: 1;
}

/* 艺术弧线底层 */
.premium-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: var(--bg-gray);
    border-radius: 50% 50% 0 0;
}

/* 动态装饰光晕 */
.light-effect {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    transform: rotate(35deg);
}

.header-content {
    position: relative;
    z-index: 5;
    padding: 55px 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 头像设计 */
.profile-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}

.avatar-container {
    position: relative;
    width: 75px;
    height: 75px;
    background: rgba(255,255,255,0.2);
    padding: 3px;
    border-radius: 24px;
    transform: rotate(-5deg);
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 21px;
    transform: rotate(5deg);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.8);
    overflow: hidden;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-text h2 {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.user-text span {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-text .verified {
    color: var(--accent-gold);
}

.settings-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
}

/* 快捷入口条 */
.quick-bar {
    margin: -55px 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 22px;
    padding: 20px 10px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 10;
    position: relative;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s;
}

.quick-item:active {
    transform: scale(0.9);
}

.quick-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--santander-red) 0%, var(--dark-red) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(236, 0, 0, 0.25);
}

.quick-item span {
    font-size: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

/* 菜单网格 */
.menu-grid {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.menu-card {
    background: white;
    padding: 20px 18px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.2s;
}

.menu-card:active {
    transform: scale(0.96);
    background: #fefefe;
}

.menu-card i {
    width: 42px;
    height: 42px;
    background: #fdf2f2;
    color: var(--santander-red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.menu-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

/* 列表菜单 */
.menu-list {
    background: white;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.list-item {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:active {
    background: #fafafa;
}

.list-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--santander-red);
    margin-right: 14px;
    font-size: 0.95rem;
}

.list-item span {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-main);
}

.list-item .fa-chevron-right {
    color: #ccc;
    font-size: 0.75rem;
}

/* 退出登录 */
.bottom-action {
    margin-top: 25px;
    padding: 0 20px;
}

.sign-out {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ffebeb;
    color: var(--santander-red);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.sign-out:active {
    background: #fff5f5;
}

/* 底部文字 */
.footer-text {
    text-align: center;
    padding: 25px;
    color: #ccc;
    font-size: 0.7rem;
}

/* 底部导航样式已移至 common/navigation.css 统一管理 */

/* Toast样式已移至 common/common.css */
