.my-page {
    padding: 1rem;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
    padding-bottom: var(--bottom-nav-height);
}

.user-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-size: 1.2rem;
    font-weight: 500;
}

.menu-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item i:first-child {
    width: 24px;
    color: var(--color-accent);
}

.menu-item i:last-child {
    margin-left: auto;
    color: #999;
    font-size: 0.8rem;
} 