.cardPage {
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  padding: 0 0 90px;
  transition: filter 0.3s;
  position: relative;
}
.cardPage--blur {
  filter: blur(8px);
  pointer-events: none;
}
.cp__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  padding: 20px 20px 16px;
}
.cp__hero {
  position: relative;
  margin: 0 16px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.cp__heroImg {
  width: 100%;
  display: block;
  filter: blur(6px) brightness(0.5);
}
.cp__heroOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.cp__lockIcon {
  margin-bottom: 12px;
}
.cp__lockTitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cp__lockSub {
  font-family: var(--font-inter);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}
.cp__notice {
  margin: 14px 16px 0;
  background: #0500ff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cp__noticeIcon {
  flex: 0 0 auto;
  margin-top: 2px;
}
.cp__noticeText {
  font-family: var(--font-inter);
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}
.cp__actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 16px 0;
}
.cp__act {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.cp__actBtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f3f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp__actBtn--active {
  background: #0500ff;
}
.cp__actLabel {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  color: #111;
  font-weight: 500;
}
.cp__wallet {
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  width: calc(100% - 120px);
  cursor: pointer;
}
.cp__walletText {
  font-family: var(--font-inter);
  font-size: 0.8125rem;
  color: #111;
  font-weight: 500;
}
.cp__txTitle {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: #111;
  padding: 24px 20px 12px;
}
.cp__txEmpty {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.cp__txEmpty img {
  width: 120px;
  height: auto;
}
.cp__tabBar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 70px;
  background: #fff;
  border-top: 1px solid #e6ecf0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 40;
}
.cp__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 0;
}
.cp__tab--main {
  margin-top: -20px;
}
.cp__tabBtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0500ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(5, 0, 255, 0.3);
}
.cp__tabLabel {
  font-family: var(--font-inter);
  font-size: 0.625rem;
  font-weight: 600;
  color: #0500ff;
}
.cs {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.cs[hidden] {
  display: none;
}
.cs__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.cs--open .cs__backdrop {
  opacity: 1;
}
.cs__panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 12px 20px 28px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  z-index: 1;
}
.cs--open .cs__panel {
  transform: translateY(0);
}
.cs__handle {
  width: 48px;
  height: 5px;
  border-radius: 10px;
  background: #ddd;
  margin: 0 auto 14px;
}
.cs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cs__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: #111;
}
.cs__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cs__cardRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}
.cs__cardName {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  flex: 1;
}
.cs__cardStatus {
  font-family: var(--font-inter);
  font-size: 0.8125rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f3f5f7;
  padding: 4px 12px;
  border-radius: 20px;
}
.cs__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.cs__warning {
  text-align: center;
  padding: 20px 0;
}
.cs__warningIcon {
  margin-bottom: 10px;
}
.cs__warningTitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.cs__warningText {
  font-family: var(--font-inter);
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.cs__field {
  background: #f8f9fb;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.cs__fieldLabel {
  font-family: var(--font-inter);
  font-size: 0.6875rem;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cs__fieldVal {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}
.cs__fieldVal--cvv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs__fieldRow {
  display: flex;
  gap: 10px;
}
.cs__field--half {
  flex: 1;
}
