body {
  background: #FFF0F5;
  min-height: 100vh;
}

.mine-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 10px 0 calc(60px + env(safe-area-inset-bottom)) 0;
  box-sizing: border-box;
}

.page-title {
  width: 85%;
  text-align: center;
  padding: 15px 0 10px;
}

.title-text {
  font-size: 18px;
  font-weight: bold;
  color: #FF6B81;
  display: block;
}

.title-desc {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  display: block;
}

.couple-section {
  width: 85%;
}

.couple-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.couple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.partner-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.partner-avatar-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FF6B81;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(255, 107, 129, 0.2);
  object-fit: cover;
}

.partner-name-large {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.partner-birthday-large {
  font-size: 11px;
  color: #999;
}

.love-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.love-days {
  font-size: 16px;
  font-weight: bold;
  color: #FF6B81;
  margin-bottom: 4px;
}

.love-date {
  font-size: 11px;
  color: #999;
}

.edit-text {
  font-size: 11px;
  color: #FF6B81;
  margin-top: 4px;
  cursor: pointer;
}

.love-intro-section {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
}

.intro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.intro-title {
  font-size: 13px;
  font-weight: bold;
  color: #FF6B81;
}

.edit-intro-btn {
  font-size: 12px;
  color: #FF6B81;
  cursor: pointer;
}

.intro-image {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  margin-bottom: 8px;
  object-fit: cover;
}

.intro-content {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.empty-section {
  width: 100%;
}

.empty-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.empty-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.empty-tip {
  font-size: 12px;
  color: #999;
}

.setup-section {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mine-section-title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.setup-desc {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

.partner-phone-section {
  margin-top: 10px;
}

.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF5F7;
  border-radius: 6px;
  padding: 12px;
}

.phone-label {
  font-size: 13px;
  color: #666;
}

.phone-value {
  font-size: 14px;
  color: #FF6B81;
  font-weight: bold;
}

.tip-box {
  width: 85%;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
  border-radius: 6px;
  padding: 10px;
  margin-top: 10px;
}

.tip-text {
  font-size: 12px;
  color: #FF6B81;
}

.guest-tip {
  background: rgba(255, 107, 129, 0.1);
  border-radius: 6px;
  padding: 8px;
  margin-top: 15px;
  text-align: center;
}

.guest-tip-text {
  font-size: 12px;
  color: #FF6B81;
}

.modal-overlay,
.phone-modal,
.partner-phone-modal,
.edit-modal,
.intro-modal,
.startDateModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay .modal-content,
.phone-modal .modal-content,
.partner-phone-modal .modal-content,
.edit-modal .modal-content,
.intro-modal .modal-content,
.startDateModal .modal-content {
  width: 85%;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay .modal-header,
.phone-modal .modal-header,
.partner-phone-modal .modal-header,
.edit-modal .modal-header,
.intro-modal .modal-header,
.startDateModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modal-overlay .modal-title,
.phone-modal .modal-title,
.partner-phone-modal .modal-title,
.edit-modal .modal-title,
.intro-modal .modal-title {
  font-size: 16px;
  font-weight: bold;
  color: #FF6B81;
}

.modal-overlay .close-btn,
.phone-modal .close-btn,
.partner-phone-modal .close-btn,
.edit-modal .close-btn,
.intro-modal .close-btn,
.startDateModal .close-btn {
  font-size: 22px;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
}

.modal-overlay .modal-body,
.phone-modal .modal-body,
.partner-phone-modal .modal-body,
.edit-modal .modal-body,
.intro-modal .modal-body,
.startDateModal .modal-body {
  margin-bottom: 12px;
}

.modal-overlay .modal-footer,
.phone-modal .modal-footer,
.partner-phone-modal .modal-footer,
.edit-modal .modal-footer,
.intro-modal .modal-footer,
.startDateModal .modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cancel-btn {
  flex: 1;
  height: 36px;
  background: #f5f5f5;
  color: #666;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.submit-btn {
  flex: 1;
  height: 36px;
  background: linear-gradient(135deg, #FF6B81 0%, #FFB6C1 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.action-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 1001;
}

.action-sheet-overlay .action-sheet {
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  display: block;
}

.action-sheet-overlay .action-sheet-item {
  padding: 14px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
}

.action-sheet-overlay .action-sheet-item:last-of-type {
  border-bottom: 10px solid #eee;
}

.action-sheet-overlay .action-sheet-item.danger {
  color: #FF6B81;
}

.action-sheet-overlay .action-sheet-cancel {
  padding: 14px 20px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  text-align: center;
  background: #f5f5f5;
  border-radius: 0 0 0 0;
}

.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

.confirm-modal .modal-content {
  width: 70%;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.confirm-modal .modal-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.confirm-modal .modal-body {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.confirm-modal .modal-footer {
  display: flex;
  gap: 10px;
}