@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/nunito-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/nunito-700.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/static/fonts/nunito-800.ttf") format("truetype");
}

@font-face {
  font-family: "ZCOOL KuaiLe";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/zcool-kuaile-400.ttf") format("truetype");
}

:root {
  --cute-bg: #fff8fb;
  --cute-pink: #ff8fab;
  --cute-peach: #ffb5a7;
  --cute-mint: #b8e8d2;
  --cute-sky: #a8d8ff;
  --cute-lavender: #e4c1f9;
  --cute-yellow: #ffe66d;
  --cute-text: #5c4d56;
  --cute-muted: #9a8a94;
  --cute-card: #ffffff;
  --cute-shadow: 0 8px 24px rgba(255, 143, 171, 0.18);
}

.record-pagination.d-none {
  display: none !important;
}

.record-pagination .cute-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cute-pager-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 143, 171, 0.4);
  background: #fff;
  color: #ff6b9d;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.cute-pager-btn:hover:not(:disabled) {
  border-color: var(--cute-pink);
  background: #fff5f8;
  color: #ff6b9d;
}

.cute-pager-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cute-pager-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cute-text);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 143, 171, 0.1);
}

.cute-pager-info strong {
  color: #ff6b9d;
}

.cute-pager-sub {
  margin-top: 0.4rem !important;
  font-size: 0.72rem;
  color: var(--cute-muted);
}

.earn-section-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

.earn-section-head-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.3;
}

.earn-section-head .section-title {
  line-height: 1.3;
  margin: 0;
}

.earn-section-head .section-hint {
  line-height: 1.3;
  margin: 0;
}

.earn-section-head .btn-cute-add-item {
  align-self: center;
  margin: 0;
}

.btn-cute-add-item {
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #a8d8ff, #c9e7ff);
  color: #2d6a9f;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  box-shadow: 0 4px 12px rgba(168, 216, 255, 0.45);
  white-space: nowrap;
}

.btn-cute-add-item:hover {
  filter: brightness(1.05);
  color: #1e5080;
}

.btn-cute-link-default {
  border-radius: 999px;
  border: none;
  background: rgba(255, 143, 171, 0.15);
  color: #ff6b9d;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

.btn-cute-link-default:hover,
.btn-cute-link-default:focus {
  background: rgba(255, 143, 171, 0.28);
  color: #e85a8a;
}

.cute-table .record-col-time {
  white-space: nowrap;
  color: var(--cute-muted);
  font-size: 0.85rem;
}

.btn-cute-cancel {
  border-radius: 999px;
  border: 2px solid rgba(255, 143, 171, 0.45);
  background: #fff;
  color: var(--cute-muted);
  font-weight: 600;
}

.btn-cute-cancel:hover,
.btn-cute-cancel:focus {
  background: #fff5f8;
  border-color: var(--cute-pink);
  color: #ff6b9d;
}

body.cute-page {
  font-family: "Nunito", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--cute-text);
  background: linear-gradient(160deg, #fff5f8 0%, #f0f9ff 45%, #fff9e6 100%);
  min-height: 100vh;
}

.page-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 245, 248, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loading-card {
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 1.25rem;
  background: var(--cute-card);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--cute-shadow);
}

.page-loading-spinner {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 143, 171, 0.25);
  border-top-color: var(--cute-pink);
  animation: page-loading-spin 0.75s linear infinite;
}

@keyframes page-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-loading-text {
  font-family: "ZCOOL KuaiLe", "PingFang SC", sans-serif;
  font-size: 1rem;
  color: #ff6b9d;
  letter-spacing: 0.05em;
}

.cute-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.35) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 12%, rgba(168, 216, 255, 0.4) 0 12px, transparent 13px),
    radial-gradient(circle at 75% 78%, rgba(255, 230, 109, 0.35) 0 10px, transparent 11px),
    radial-gradient(circle at 18% 85%, rgba(184, 232, 210, 0.35) 0 14px, transparent 15px);
  z-index: 0;
}

.cute-page .container {
  position: relative;
  z-index: 1;
}

.page-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .page-wrap {
    max-width: 1040px;
  }
}

.page-title {
  font-family: "ZCOOL KuaiLe", "PingFang SC", sans-serif;
  font-size: 1.65rem;
  color: var(--cute-pink);
  text-shadow: 0 2px 0 #fff, 0 4px 12px rgba(255, 143, 171, 0.35);
  letter-spacing: 0.05em;
}

.page-top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.page-top-bar .page-title {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  font-size: clamp(1.1rem, 4.5vw, 1.65rem);
}

.page-top-spend {
  align-self: center;
}

.cute-card {
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.35rem;
  background: var(--cute-card);
  box-shadow: var(--cute-shadow);
}

.cute-card .card-header {
  background: linear-gradient(90deg, rgba(255, 143, 171, 0.12), rgba(168, 216, 255, 0.12));
  border-radius: 1.35rem 1.35rem 0 0;
}

.section-title {
  font-family: "ZCOOL KuaiLe", "PingFang SC", sans-serif;
  color: #ff6b9d;
  font-size: 1.1rem;
}

.stat-card {
  border-radius: 1.35rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff5fa 100%);
}

.stat-card .col-4 {
  border-color: rgba(255, 143, 171, 0.2) !important;
}

.stat-label {
  color: var(--cute-muted);
  font-size: 0.8rem;
}

.stat-num-balance {
  color: #ff6b9d;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.stat-num-today {
  color: #5eb3f6;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.stat-num-month {
  color: #f4a261;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.stat-sub {
  font-size: 0.72rem;
  color: var(--cute-muted);
}

.item-btn {
  min-height: 3.5rem;
  padding: 0.35rem 0.4rem;
  border-radius: 0.85rem;
  border: 2px dashed rgba(255, 143, 171, 0.45);
  background: linear-gradient(180deg, #fff 0%, #fff0f5 100%);
  color: var(--cute-text);
  font-size: 0.78rem;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.item-btn .fw-semibold {
  font-size: 0.8rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-btn:hover,
.item-btn:focus {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--cute-pink);
  border-style: solid;
  box-shadow: 0 10px 20px rgba(255, 143, 171, 0.25);
  color: var(--cute-text);
  background: linear-gradient(180deg, #fff 0%, #ffe8f0 100%);
}

.item-points {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  background: var(--cute-yellow);
  color: #7a5c00;
  font-size: 0.65rem;
  font-weight: 700;
}

.item-grid {
  --bs-gutter-y: 0.4rem;
  --bs-gutter-x: 0.4rem;
}

@media (min-width: 768px) {
  .item-btn {
    min-height: 3.75rem;
    font-size: 0.82rem;
  }

  .item-btn .fw-semibold {
    font-size: 0.85rem;
  }

  .item-points {
    font-size: 0.68rem;
  }
}

#recordTabs .nav-link {
  color: var(--cute-muted);
  border-radius: 999px;
  margin-right: 0.35rem;
  padding: 0.35rem 0.9rem;
  border: none;
}

#recordTabs .nav-link.active {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--cute-pink), var(--cute-peach));
}

.btn-cute-spend {
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff9a9e, #fecfef);
  color: #8b3a4a;
  font-weight: 700;
  padding: 0.4rem 1rem;
  box-shadow: 0 4px 12px rgba(255, 154, 158, 0.4);
}

.btn-cute-spend:hover {
  color: #6b2a38;
  filter: brightness(1.05);
}

.cute-modal .modal-content {
  border: none;
  border-radius: 1.25rem;
  box-shadow: var(--cute-shadow);
  overflow: hidden;
}

.cute-modal-dialog {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575.98px) {
  .cute-modal-dialog {
    width: calc(100% - 1.5rem);
    max-width: 420px;
    margin: 0.75rem auto;
  }

  .cute-modal .modal-content {
    max-height: calc(100vh - 2rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: auto;
  }
}

.cute-modal .modal-header {
  background: linear-gradient(90deg, rgba(255, 143, 171, 0.2), rgba(168, 216, 255, 0.25));
  border-bottom: none;
}

.cute-modal .modal-title {
  font-family: "ZCOOL KuaiLe", sans-serif;
  color: #ff6b9d;
}

.btn-cute-confirm-spend {
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ffb5a7, #ff8fab);
  color: #fff;
  font-weight: 700;
}

.btn-cute-confirm-spend.btn-spend-insufficient,
.btn-cute-confirm-spend.btn-spend-insufficient:disabled {
  background: linear-gradient(90deg, #d8d8d8, #bdbdbd) !important;
  color: #fff !important;
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}

.cute-page .form-label,
.cute-modal .form-label {
  color: var(--cute-text);
  font-weight: 700;
}

.cute-page .form-control,
.cute-page .form-select,
.cute-modal .form-control,
.cute-modal .form-select {
  border: 2px solid rgba(255, 143, 171, 0.35);
  border-radius: 0.85rem;
  background-color: #fffafc;
  color: var(--cute-text);
  font-weight: 600;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cute-page .form-control::placeholder,
.cute-modal .form-control::placeholder {
  color: rgba(154, 138, 148, 0.75);
  font-weight: 500;
}

.cute-page .form-control:hover,
.cute-page .form-select:hover,
.cute-modal .form-control:hover,
.cute-modal .form-select:hover {
  border-color: rgba(255, 143, 171, 0.55);
  background-color: #fff;
}

.cute-page .form-control:focus,
.cute-page .form-select:focus,
.cute-modal .form-control:focus,
.cute-modal .form-select:focus {
  border-color: var(--cute-pink);
  background-color: #fff;
  color: var(--cute-text);
  box-shadow: 0 0 0 0.2rem rgba(255, 143, 171, 0.22);
}

.cute-page .form-select,
.cute-modal .form-select {
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff8fab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 14px 10px;
}

.cute-page .form-control-lg,
.cute-modal .form-control-lg {
  border-radius: 1rem;
  border-width: 2px;
}

.cute-page .input-group .form-control,
.cute-modal .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cute-page .input-group .btn,
.cute-modal .input-group .btn {
  border-radius: 0 0.85rem 0.85rem 0;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.cute-page .input-group .btn-cute-confirm-spend,
.cute-modal .input-group .btn-cute-confirm-spend {
  border: 2px solid transparent;
  border-left: none;
  box-shadow: none;
}

.cute-page .input-group .btn-cute-confirm-spend:hover,
.cute-modal .input-group .btn-cute-confirm-spend:hover {
  filter: brightness(1.05);
  color: #fff;
}

.cute-table thead {
  background: rgba(255, 230, 240, 0.6);
  color: var(--cute-muted);
  font-size: 0.85rem;
}

.cute-inline-action {
  color: #ff6b9d;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.cute-inline-action:hover,
.cute-inline-action:focus {
  color: #e53935;
  text-decoration: none;
}

.record-col-action {
  width: 3rem;
  white-space: nowrap;
}

.btn-record-delete {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 157, 0.3);
  background: #fff;
  color: #ff6b9d;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-record-delete:hover,
.btn-record-delete:focus {
  background: #fff0f5;
  border-color: #ff6b9d;
  color: #e53935;
}

.btn-cute-danger {
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff6b9d, #e53935);
  color: #fff;
  font-weight: 700;
}

.btn-cute-danger:hover,
.btn-cute-danger:focus {
  color: #fff;
  filter: brightness(1.05);
}

.toast-cute {
  border-radius: 1rem;
  background: linear-gradient(90deg, #ff8fab, #a8d8ff) !important;
}

.toast-container.toast-container-center {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.toast-container.toast-container-center .toast {
  pointer-events: auto;
  width: auto;
  max-width: min(92vw, 22rem);
  margin-left: auto !important;
  margin-right: auto !important;
  box-shadow: 0 8px 28px rgba(255, 143, 171, 0.35);
}

.toast-container.toast-container-center .toast .d-flex {
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.toast-container.toast-container-center .toast-body {
  text-align: center;
  font-weight: 700;
  flex: 0 1 auto;
}

.cute-select {
  position: relative;
}

.cute-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-align: left;
  border: 2px solid rgba(255, 143, 171, 0.35);
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #fffafc 0%, #fff5f9 100%);
  color: var(--cute-text);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 2px 8px rgba(255, 143, 171, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cute-select-trigger:hover,
.cute-select-trigger:focus {
  border-color: rgba(255, 143, 171, 0.55);
  color: var(--cute-text);
  background: #fff;
  outline: none;
}

.cute-select.is-open .cute-select-trigger {
  border-color: var(--cute-pink);
  box-shadow: 0 0 0 0.2rem rgba(255, 143, 171, 0.22);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cute-select-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cute-select-chevron {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--cute-pink);
  transition: transform 0.2s ease;
}

.cute-select.is-open .cute-select-chevron {
  transform: rotate(180deg);
}

.cute-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  z-index: 1060;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  max-height: 11rem;
  overflow-y: auto;
  border: 2px solid var(--cute-pink);
  border-top: 1px solid rgba(255, 143, 171, 0.45);
  border-radius: 0 0 0.85rem 0.85rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(255, 143, 171, 0.22);
  display: none;
}

.cute-select.is-open .cute-select-menu {
  display: block;
}

.cute-select-option {
  padding: 0.45rem 0.65rem;
  border-radius: 0.55rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cute-text);
  cursor: pointer;
  user-select: none;
}

.cute-select-option:hover {
  background: rgba(255, 143, 171, 0.12);
}

.cute-select-option.is-selected {
  background: linear-gradient(90deg, rgba(255, 181, 167, 0.35), rgba(255, 143, 171, 0.2));
  color: #c44d6a;
}

#spendPreview {
  color: #e53935;
  font-weight: 600;
}

#spendPreview strong,
#spendPreview #previewPoints {
  color: #c62828;
  font-weight: 800;
}

.record-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

.record-toolbar .record-tabs {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0 !important;
  margin-right: 0.25rem;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.record-date-wrap {
  display: flex;
  align-items: center;
  align-self: center;
}

.record-date-trigger {
  border-radius: 999px;
  border: 2px solid rgba(255, 143, 171, 0.35);
  background: #fff;
  color: var(--cute-text);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  max-width: 11rem;
  white-space: nowrap;
}

.record-date-trigger:hover,
.record-date-trigger:focus {
  border-color: var(--cute-pink);
  box-shadow: 0 0 0 0.15rem rgba(255, 143, 171, 0.2);
  color: var(--cute-text);
  background: #fff;
}

.record-date-chevron {
  font-size: 0.65rem;
  color: var(--cute-muted);
  line-height: 1;
}

.date-picker-dialog {
  max-width: 320px;
}

.date-wheel-frame {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8fc 0%, #fff 50%, #fff8fc 100%);
}

.date-wheel-highlight {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 50%;
  height: 40px;
  margin-top: -20px;
  border-radius: 0.65rem;
  background: rgba(255, 143, 171, 0.12);
  border: 1px solid rgba(255, 143, 171, 0.25);
  pointer-events: none;
  z-index: 1;
}

.date-wheel-cols {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}

.date-wheel-col {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
}

.date-wheel-viewport {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-wheel-viewport::-webkit-scrollbar {
  display: none;
}

.date-wheel-list {
  list-style: none;
  margin: 0;
  padding: 70px 0;
}

.date-wheel-item {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cute-muted);
  scroll-snap-align: center;
  user-select: none;
}

.date-wheel-item.is-active {
  color: #ff6b9d;
  font-size: 1.05rem;
}

.record-toolbar .record-tabs .nav-item {
  display: flex;
  align-items: center;
}

.record-toolbar .record-tabs .nav-link {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 575.98px) {
  .record-toolbar .record-tabs .nav-link {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .record-date-trigger {
    max-width: 10rem;
    font-size: 0.75rem;
  }

  .page-top-spend {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
  }
}

.record-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.record-card-mobile {
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(180deg, #fff 0%, #fff8fc 100%);
  border: 1px solid rgba(255, 143, 171, 0.25);
}

.record-card-mobile .rc-time {
  font-size: 0.72rem;
  color: var(--cute-muted);
  white-space: nowrap;
}

.record-card-mobile .rc-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.record-card-mobile .rc-points {
  font-weight: 800;
  font-size: 1.05rem;
}

.record-card-mobile .rc-action {
  display: flex;
  align-items: center;
}

.toast-safe {
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.cute-page {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 575.98px) {
  .page-title {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .stat-label {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .stat-row .fs-2 {
    font-size: 1.35rem !important;
  }

  .stat-sub {
    font-size: 0.62rem;
  }

  .stat-col {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  #recordTabs .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
  }

  .btn-cute-spend,
  .btn-cute-confirm-spend,
  .btn-cute-cancel {
    min-height: 44px;
  }

  .cute-modal .modal-footer .btn {
    flex: 1 1 auto;
  }

  .cute-modal .modal-footer {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .page-title {
    font-size: 1.5rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .item-btn:hover {
    transform: none;
  }

  .item-btn:active {
    transform: scale(0.98);
    border-color: var(--cute-pink);
    border-style: solid;
  }
}
