:root {
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.72);
  --accent-gold: #ffd166;
  --accent-gold-soft: rgba(255, 209, 102, 0.18);
  --panel-bg: rgba(255,255,255,0.12);
  --panel-bg-strong: rgba(255,255,255,0.16);
  --panel-border: rgba(255,255,255,0.2);
  --field-bg: rgba(255,255,255,0.13);
  --field-bg-focus: rgba(255,255,255,0.17);
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Songti SC', 'STSong', 'Kaiti', 'PingFang SC', serif;
  --font-mono: 'SF Mono', 'Roboto Mono', Consolas, 'Liberation Mono', monospace;
  --shadow-soft: 0 18px 50px rgba(0,0,0,0.16);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(160deg, #0f1c4d, #2c376d);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* 页面顶部引导区 */
.page-intro {
  text-align: center;
  margin-bottom: 24px;
}
.page-intro h1 {
  font-size: 22px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.page-intro .subtitle {
  opacity: .75;
  font-size: 14px;
  margin: 0;
}
.auth-intro {
  margin-bottom: 18px;
}
.auth-intro h1 {
  font-size: 21px;
  font-weight: 700;
}
.auth-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}

h1 { margin-bottom: 8px; }
.subtitle { opacity: .9; margin-bottom: 20px; }
.qr-id-hint {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: .7;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(4px);
  min-width: 0;
}
label { display:block; margin: 10px 0 6px; }
.field-hint {
  margin: -2px 0 6px;
  font-size: 13px;
  opacity: .72;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  background: var(--field-bg);
  color: #fff;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
input:focus,
textarea:focus {
  border-color: rgba(255, 209, 102, 0.82);
  background: var(--field-bg-focus);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.12);
}
input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.58);
}
.sms-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
  margin-top: 6px;
}
.sms-row input {
  min-width: 0;
  height: 40px;
}
.sms-btn {
  margin-top: 0;
  padding: 0 8px;
  font-size: 14px;
  white-space: nowrap;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
textarea { min-height: 100px; resize: vertical; }

.memory-input {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-align: left;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: auto;
}

.upload-area {
  position: relative;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.file-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.upload-area-placeholder {
  pointer-events: none;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.text-action {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 233, 178, 0.88);
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

/* 上传成功反馈 */
.upload-feedback {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 12px;
  background: rgba(100, 220, 150, 0.15);
  border: 1px solid rgba(100, 220, 150, 0.35);
  border-radius: 8px;
  color: #7effc0;
  font-size: 14px;
}


.btn {
  width: 100%;
  margin-top: 14px;
  padding: 0 24px;
  min-height: 40px;
  border: 0;
  background: #ffd166;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active:not(:disabled) {
  transform: scale(0.97);
}
.btn:active:not(:disabled) {
  transform: scale(0.97);
}
.btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}
.btn-secondary { background: #d5d8e8; font-size: 15px; }
.sms-row .btn.sms-btn {
  width: 132px;
  min-width: 132px;
  border: 1px solid rgba(255, 209, 102, 0.48);
  background: rgba(255, 209, 102, 0.16);
  color: #ffe9b2;
}
.sms-row .btn.sms-btn:disabled {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
}
.preview {
  position: relative;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  width: 24px;
  height: 24px;
  min-width: 24px;
  accent-color: #ffd166;
  cursor: pointer;
}
.checkbox-row label {
  display: inline;
  margin: 0;
  cursor: pointer;
  font-size: 15px;
}
.hidden { display: none !important; }
.message { min-height: 22px; margin-top: 10px; color: #ffe9b2; }
.login-card {
  border-color: rgba(255,255,255,0.18);
}
.wechat-login-hint {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 14px;
  background: rgba(255, 209, 102, 0.12);
  color: #ffe9b2;
  font-size: 13px;
  line-height: 1.6;
}
.auth-method-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.auth-method-subtitle {
  margin: 6px 0 18px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.6;
}
.auth-field-label {
  margin: 16px 0 8px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 700;
}
.login-input {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(5, 10, 34, 0.28);
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.login-input:focus-within {
  border-color: rgba(255, 209, 102, 0.82);
  background: rgba(5, 10, 34, 0.34);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.12);
}
.login-input input {
  height: 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.login-input input:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.country-code {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 700;
}
.phone-login-input input {
  padding-left: 10px;
}
.auth-sms-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 0;
  margin-top: 0;
}
.auth-sms-row input {
  height: 56px;
  min-width: 0;
  padding-left: 18px;
}
.auth-sms-row .btn.sms-btn {
  width: 128px;
  min-width: 128px;
  height: 56px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  background: transparent;
  color: #ffe9b2;
  font-size: 14px;
}
.auth-sms-row .btn.sms-btn:disabled {
  border-left-color: rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.48);
}
.auth-agreement {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.login-card #registerBtn {
  min-height: 52px;
  margin-top: 20px;
  border-radius: 999px;
  background: #ffd166;
  box-shadow: 0 12px 26px rgba(255, 209, 102, 0.18);
}
.result-meta {
  margin-top: 14px;
  color: rgba(245, 241, 212, 0.72);
  font-size: 13px;
  line-height: 1.6;
}
.brand-line { margin: 0 0 6px; color: inherit; font-size: 13px; }
.brand { font-weight: 700; color: #ffd166; }
.hash-toggle {
  display: inline;
  width: auto;
  margin: 4px 0 0;
  padding: 0;
  height: auto;
  border: 0;
  border-bottom: 1px solid rgba(255, 233, 178, 0.45);
  background: transparent;
  color: rgba(255, 233, 178, 0.9);
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

/* 品牌露出卡片 */
.brand-card {
  margin-top: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255, 215, 0, 0.13);
  border-radius: 10px;
}
.brand-preview {
  margin: 0 0 8px 0;
  padding: 7px 9px;
  background: rgba(255,255,255,0.055);
  border-radius: 6px;
  color: rgba(255, 233, 178, 0.78);
  font-size: 13px;
  line-height: 1.5;
}
.brand-card .checkbox-row {
  margin-top: 0;
  gap: 6px;
}
.brand-card .checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.brand-card .checkbox-row label {
  font-size: 14px;
}

.save-mode-card,
.comment-form-card,
.comments-card,
.co-owner-actions,
.result-comments {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.section-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mode-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  margin-top: 8px;
  background: rgba(255,255,255,0.05);
}
.mode-option::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
}
.mode-option.selected {
  border-color: rgba(255, 209, 102, 0.72);
  background: rgba(255, 209, 102, 0.1);
}
.mode-option.selected::before {
  border-color: #7fb2ff;
  background:
    radial-gradient(circle, #fff 0 37%, transparent 40%),
    #2f7cff;
}
.mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mode-option strong,
.mode-option small {
  display: block;
}
.mode-option small {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  opacity: .72;
}
.co-status-banner {
  text-align: center;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}
.comment-form-card label {
  margin-top: 10px;
}
.comments-list {
  display: grid;
  gap: 10px;
}
.comment-item {
  padding: 10px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
}
.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  opacity: .78;
  min-width: 0;
}
.comment-head strong {
  color: #ffe39b;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.comment-item p {
  margin: 8px 0 0;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.comment-delete {
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
}

/* 结果页成功横幅 */
.result-success-banner {
  text-align: center;
  padding: 16px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}
.result-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffd166;
  margin: 0 0 4px;
}
.result-success-sub {
  font-size: 14px;
  opacity: .75;
  margin: 0;
}

.memory-card {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.result-image {
  width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  background: rgba(5, 12, 38, 0.34);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.memory-content {
  margin: 14px 0 0;
  line-height: 1.85;
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-serif);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  text-align: left;
}
.credential-card {
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.045);
  color: rgba(245, 241, 212, 0.72);
  font-size: 13px;
  line-height: 1.72;
}
.credential-detail {
  margin-top: 10px;
}
.credential-label {
  margin: 0 0 4px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.credential-hash {
  margin: 0;
  color: rgba(255,255,255,0.72);
  word-break: break-all;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
}
.credential-brand {
  margin: 10px 0 0;
  color: rgba(255, 233, 178, 0.84);
}
.result-actions {
  margin-top: 10px;
}
.result-actions .btn {
  margin-bottom: 10px;
}
.project-link-wrap {
  margin: 4px 0 0;
  text-align: center;
}
.project-link {
  font-size: 12px;
  color: rgba(255, 233, 178, 0.82);
  text-decoration: underline;
}

.content-fade-out {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn-glow {
  animation: btnGlow 0.22s ease;
}
@keyframes btnGlow {
  0% { box-shadow: 0 0 0 rgba(255, 209, 102, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 209, 102, 0.8); }
  100% { box-shadow: 0 0 0 rgba(255, 209, 102, 0); }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.overlay.hidden {
  display: none !important;
}
.overlay-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,247,255,0.18), rgba(12,20,56,0.62));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.overlay-panel {
  position: relative;
  width: min(520px, 100%);
  margin: 0 12px 18px;
  padding: 20px 18px;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(22, 34, 82, 0.96);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.overlay.show .overlay-mask {
  opacity: 1;
}
.overlay.show .overlay-panel {
  transform: translateY(0);
  opacity: 1;
}
.overlay-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.overlay-subtitle {
  margin: 10px 0 6px;
  opacity: .8;
  line-height: 1.65;
}
.overlay-subtitle strong {
  color: #fff;
  font-weight: 600;
}
.confirm-preview {
  margin-top: 12px;
}
.confirm-preview-photo {
  min-height: 220px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.1), transparent 46%),
    rgba(5, 12, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.confirm-preview-image {
  width: 100%;
  max-height: min(52vh, 520px);
  object-fit: contain;
  border-radius: 14px;
  display: block;
  background: transparent;
}
.confirm-preview-text {
  margin-top: 12px;
  padding: 13px 14px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(6, 14, 42, 0.24);
}
.confirm-preview-label {
  margin: 0 0 7px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  letter-spacing: 0;
}
.confirm-preview-content {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  text-align: left;
}
.confirm-preview-content.empty {
  color: rgba(255,255,255,0.58);
}
.confirm-notice-card {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.08);
  color: rgba(255,255,255,0.82);
}


.stage-hint {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(245,247,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0;
  border-radius: 0;
  color: #ffe9b2;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  animation: stageHintFade 0.42s ease-in-out forwards;
}
.stage-hint.hidden {
  display: none !important;
}
@keyframes stageHintFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.result-animate {
  opacity: 0;
  animation: resultFadeIn 0.32s ease forwards;
}
.result-animate .result-success-title,
.result-animate .result-success-sub {
  opacity: 0;
  transform: translateY(8px);
}
.result-animate .result-success-title {
  animation: textRiseIn 0.28s ease 0.3s forwards, starBlink 0.3s ease 0.3s 1;
}
.result-animate .result-success-sub {
  animation: textRiseIn 0.28s ease 0.6s forwards;
}
.result-actions {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: auto;
  transition: opacity 0.26s ease, transform 0.26s ease;
}


.result-animate.show-actions .result-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@keyframes resultFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes textRiseIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes starBlink {
  0% { filter: brightness(1); text-shadow: 0 0 0 rgba(255,209,102,0); }
  50% { filter: brightness(1.35); text-shadow: 0 0 12px rgba(255,209,102,0.85); }
  100% { filter: brightness(1); text-shadow: 0 0 0 rgba(255,209,102,0); }
}

/* 我的记录页卡片 */
.record-feed {
  margin-top: 14px;
}
.record-item {
  padding: 0;
  overflow: hidden;
  margin-top: 14px;
}
.record-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: none;
  object-fit: cover;
  display: block;
}
.detail-cover {
  width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  display: block;
  background: rgba(5, 12, 38, 0.34);
}
.record-body,
.detail-body {
  padding: 14px 16px 16px;
}
.record-content {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 17px;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  text-align: left;
}
.record-summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-card {
  padding: 0;
  overflow: hidden;
  margin-top: 14px;
}
.detail-body .qr-id-hint {
  margin-bottom: 10px;
}
.detail-credential-group {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.detail-bottle-group {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.detail-slogan {
  color: rgba(255, 233, 178, 0.72);
}
.detail-credential-group strong,
.detail-bottle-group strong {
  font-family: var(--font-mono);
  letter-spacing: 0;
}
.account-card {
  padding-top: 12px;
  padding-bottom: 12px;
}
.account-card .qr-id-hint {
  margin-bottom: 0;
}
.account-card .message:empty {
  display: none;
}

/* Landing page */
.landing-page {
  padding-top: 20px;
}
.landing-hero {
  text-align: center;
}
.landing-eyebrow {
  margin: 0 0 8px;
  color: #ffe9b2;
  opacity: .9;
  font-size: 13px;
  letter-spacing: .5px;
}
.landing-slogan {
  margin: 12px 0 0;
  color: #ffd166;
  font-weight: 700;
}
.landing-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.landing-section {
  margin-top: 14px;
}
.landing-section h2 {
  margin: 0 0 10px;
  font-size: 20px;
}
.landing-flow-list,
.landing-value-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}
.landing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.landing-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
}
.landing-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #ffd166;
}
.landing-item p {
  margin: 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.landing-contact-copy {
  margin: 0 0 10px;
  color: #ffe9b2;
}

@media (max-width: 380px) {
  .container {
    padding: 20px 12px 32px;
  }

  .card {
    padding: 14px 12px;
  }

  .page-intro h1,
  .auth-intro h1,
  .result-success-title {
    font-size: 20px;
  }

  .sms-row {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .sms-row .btn.sms-btn {
    width: 112px;
    min-width: 112px;
    padding: 0 6px;
    font-size: 13px;
  }

  .btn {
    padding: 0 16px;
  }

  .checkbox-row {
    align-items: flex-start;
  }
}
