/* ===========================
   TAB 1 — THÔNG ĐIỆP NGÀY
   =========================== */
/* Daily card flip scene */
.daily-card-scene {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  cursor: pointer;
}

.daily-card-flip {
  width: 82vw;
  max-width: 340px;
  height: calc(82vw * 1.5);
  max-height: 510px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.daily-card-flip:not(.flipped) .card-back-face {
  animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0,200,224,0.15); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 32px rgba(0,200,224,0.5); }
}
.daily-card-flip.flipped {
  transform: rotateY(180deg);
}

.daily-card-name {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 16px;
  animation: fadeInUp 0.5s ease both;
}

.daily-interpretation:not(.hidden),
.daily-cta:not(.hidden) {
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.daily-date-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.daily-interpretation {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  margin: 0 16px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
}
.daily-interpretation.hidden {
  display: none !important;
}

.daily-cta {
  margin: 0 16px 32px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 16px;
  text-align: center;
}
.daily-cta.hidden {
  display: none !important;
}

.daily-cta-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.daily-cta-text.hidden {
  display: none !important;
}

.daily-cta-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.daily-cta-btn.hidden {
  display: none !important;
}

.daily-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.daily-tap-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 12px;
  animation: fadeInUp 0.5s ease both;
}

.daily-tap-hint.hidden {
  display: none !important;
}

/* ===========================
   TAB 2 — CHỌN ẢNH
   =========================== */
.photo-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 32px 24px;
  text-align: center;
  gap: 12px;
}

.photo-prompt-icon {
  font-size: 3.5rem;
  margin-bottom: 8px;
}

.photo-prompt h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.photo-prompt p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.photo-upload-btn {
  margin-top: 8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   DRAW PAGE (cũ - giữ lại cho tương thích)
   =========================== */
.intro-text {
  text-align: center; color: var(--text-muted); font-size: 14px;
  margin: 8px 0 24px; padding: 0 8px;
}

.draw-options { display: flex; flex-direction: column; gap: 16px; }

.draw-btn {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(0, 112, 192, 0.2), rgba(0, 60, 120, 0.3));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 20px 20px;
  width: 100%;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.draw-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0,200,224,0.05));
  opacity: 0; transition: opacity var(--transition);
}
.draw-btn:hover::before, .draw-btn:active::before { opacity: 1; }
.draw-btn:active { transform: scale(0.98); }
.draw-btn-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 112, 192, 0.4);
}
.draw-btn.camera-btn .draw-btn-icon {
  background: linear-gradient(135deg, #007b7f, #004d52);
  box-shadow: 0 0 16px rgba(0, 180, 200, 0.4);
}
.draw-btn-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-title { font-size: 16px; font-weight: 700; color: var(--text); }
.btn-sub { font-size: 12px; color: var(--text-muted); }
.draw-divider {
  text-align: center; color: var(--text-dim); font-size: 13px;
  display: flex; align-items: center; gap: 12px;
}
.draw-divider::before, .draw-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ===========================
   CARD FLIP
   =========================== */
.step-hint {
  text-align: center; color: var(--text-muted); font-size: 13px;
  margin-bottom: 16px;
}
.card-flip-scene {
  width: 180px; height: 280px;
  margin: 0 auto 16px;
  perspective: 1000px; cursor: pointer;
  border-radius: 12px;
}
.card-flip {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-flip.flipped { transform: rotateY(180deg); }
.card-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0,200,224,0.15);
}
.card-face img { width: 100%; height: 100%; object-fit: cover; }
.card-front-face { transform: rotateY(180deg); }

.card-flip-scene:hover .card-flip:not(.flipped) { transform: rotateY(10deg); }

.card-name-label {
  text-align: center; font-size: 14px; font-weight: 600;
  color: var(--accent-light); min-height: 20px; margin-bottom: 12px;
}
.flip-btn {
  display: block; margin: 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white; font-size: 14px; font-weight: 600;
  padding: 10px 28px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,200,224,0.3);
  transition: all var(--transition);
}
.flip-btn:active { transform: scale(0.97); }
.flip-btn.hidden { display: none !important; }

/* Camera info */
.camera-info { margin-top: 12px; }
.camera-preview-wrap {
  width: 200px; height: 150px; margin: 0 auto 8px;
  border-radius: 12px; overflow: hidden; position: relative;
  border: 2px solid var(--accent);
}
.camera-preview-wrap img { width: 100%; height: 100%; object-fit: cover; }
.scan-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(0,200,224,0.05)); }
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanMove 2s linear infinite;
}
@keyframes scanMove { 0% { top: 0; } 100% { top: 100%; } }
.camera-hint { text-align: center; font-size: 12px; color: var(--text-muted); }

/* ===========================
   TOPIC SELECTION
   =========================== */
.selected-card-mini {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 16px;
}
.selected-card-mini img { width: 40px; height: 62px; object-fit: cover; border-radius: 6px; }
.selected-card-mini span { font-size: 13px; font-weight: 600; color: var(--accent-light); }

.step-title { font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 16px; color: var(--text); }

.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.topic-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 16px 10px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition);
}
.topic-btn i { font-size: 22px; }
.topic-btn:hover, .topic-btn.active {
  border-color: var(--accent); color: var(--accent-light);
  background: rgba(0, 200, 224, 0.1);
  box-shadow: 0 0 16px rgba(0,200,224,0.2);
}
.topic-btn[data-topic="love"].active { border-color: #ff6b9d; color: #ff6b9d; background: rgba(255,107,157,0.1); }
.topic-btn[data-topic="career"].active { border-color: #ffb74d; color: #ffb74d; background: rgba(255,183,77,0.1); }
.topic-btn[data-topic="health"].active { border-color: #66bb6a; color: #66bb6a; background: rgba(102,187,106,0.1); }
.topic-btn[data-topic="family"].active { border-color: #ab47bc; color: #ab47bc; background: rgba(171,71,188,0.1); }

.concern-section { margin-bottom: 20px; }
.concern-label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.concern-label .optional { font-size: 11px; color: var(--text-dim); }
.concern-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--text); font-size: 14px; resize: vertical; min-height: 90px;
  transition: border-color var(--transition);
}
.concern-input:focus { outline: none; border-color: var(--accent); }
.concern-input::placeholder { color: var(--text-dim); }

.interpret-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 16px; font-weight: 700;
  border-radius: 30px; letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 112, 192, 0.4);
}
.interpret-btn:not(:disabled):hover { box-shadow: 0 6px 24px rgba(0, 112, 192, 0.6); transform: translateY(-1px); }
.interpret-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.interpret-btn:not(:disabled):active { transform: scale(0.98); }

.limit-info { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 10px; }

.limit-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 8px;
}

/* ===========================
   LOADING
   =========================== */
.loading-scene { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; }
.loading-whale-wrap { position: relative; margin-bottom: 24px; }
.loading-whale { font-size: 64px; display: block; animation: floatWhale 3s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(0,200,224,0.5)); }
@keyframes floatWhale { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-16px) rotate(5deg); } }
.loading-ripple {
  position: absolute; top: 50%; left: 50%;
  width: 80px; height: 80px; margin: -40px 0 0 -40px;
  border: 2px solid var(--accent); border-radius: 50%;
  animation: rippleOut 2.5s ease-out infinite;
}
.loading-ripple.delay1 { animation-delay: 0.8s; }
.loading-ripple.delay2 { animation-delay: 1.6s; }
@keyframes rippleOut { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }
.loading-text { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; text-align: center; }
.loading-dots { display: flex; gap: 6px; }
.loading-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: dotBounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

/* ===========================
   RESULT
   =========================== */
.result-card {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow), var(--shadow-glow);
  margin-bottom: 16px;
}
.result-card-header { display: flex; gap: 16px; margin-bottom: 16px; }
.result-card-img { width: 80px; height: 125px; object-fit: cover; border-radius: 8px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.result-card-meta { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.result-card-name { font-size: 16px; font-weight: 700; color: var(--accent-light); }
.result-topic-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(0,200,224,0.15); border: 1px solid var(--border-bright); color: var(--accent);
}
.result-date { font-size: 11px; color: var(--text-dim); }
.result-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
/* ---- Result Cards Header (all cards in 1 row) ---- */
.result-cards-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.result-card-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface, var(--bg-card));
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.1));
}

.result-card-chip-img {
  width: 28px;
  height: 44px;
  object-fit: cover;
  border-radius: 3px;
}

.result-card-chip-name {
  font-weight: 600;
  color: var(--color-text, var(--text));
}

/* ---- Result Interpretations Container ---- */
.result-interpretations-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.result-interpretation-card {
  background: var(--color-surface, var(--bg-card));
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.15));
}

.result-interpretation-label {
  font-size: 11px;
  color: var(--color-text-muted, var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.result-interpretation-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text, var(--text));
  white-space: pre-wrap;
}

/* ---- Result Interpretation Card with Image ---- */
.result-interpretation-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.result-interpretation-img {
  width: 40px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.result-interpretation-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text, var(--text));
}

/* ---- Result Congratulation Card ---- */
.result-congratulation-card {
  background: linear-gradient(135deg, rgba(255, 201, 71, 0.1), rgba(255, 183, 77, 0.1));
  border: 1px solid rgba(255, 201, 71, 0.3);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.result-congratulation-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-congratulation-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text, var(--text));
}

/* ---- Result Summary Card ---- */
.result-summary-card {
  background: linear-gradient(135deg, rgba(0, 200, 224, 0.1), rgba(0, 112, 192, 0.1));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.result-summary-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.result-summary-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text, var(--text));
  white-space: pre-wrap;
}

.result-actions { display: flex; gap: 10px; margin-bottom: 12px; }
.result-btn {
  flex: 1; padding: 13px; border-radius: 12px;
  font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.result-btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.result-btn.secondary { background: var(--bg-card); border: 1px solid var(--border-bright); color: var(--accent); }
.result-btn:active { transform: scale(0.97); }

.limit-exhausted {
  text-align: center; color: var(--gold); font-size: 13px;
  background: rgba(255,201,71,0.08); border: 1px solid rgba(255,201,71,0.2);
  border-radius: var(--radius-sm); padding: 12px; margin-top: 8px;
}
.limit-exhausted.hidden { display: none !important; }

/* ===========================
   BUBBLES BACKGROUND
   =========================== */
.bubbles-bg { display: none; }

/* ===========================
   RESULT QUICK ACTIONS
   =========================== */
.result-quick-actions {
  display: flex; gap: 10px; padding: 12px 0 4px;
}
.result-action-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 8px; border-radius: var(--radius);
  border: 1px solid var(--border-bright); font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, rgba(0,112,192,0.2), rgba(0,60,120,0.3));
  color: var(--text); transition: all var(--transition);
}
.result-action-btn.camera {
  background: linear-gradient(135deg, rgba(0,123,127,0.2), rgba(0,77,82,0.3));
}
.result-action-btn:active { transform: scale(0.97); }

/* ===========================
   EMPTY STATE
   =========================== */
.empty-reading {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-reading-icon { font-size: 56px; opacity: 0.6; }
.empty-reading h3 { color: var(--text); font-size: 18px; margin: 0; }
.empty-reading p { color: var(--text-muted); font-size: 14px; margin: 0; max-width: 260px; }

/* ---- Cards Preview List ---- */
.cards-preview-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
  margin: 16px 0;
}

.card-preview-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-surface, var(--bg-card));
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.1));
}

.card-preview-img {
  width: 56px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.card-preview-info {
  flex: 1;
  min-width: 0;
}

.card-preview-num {
  font-size: 11px;
  color: var(--color-text-muted, var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-preview-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text, var(--text));
  margin: 2px 0;
}

.card-preview-id {
  font-size: 12px;
  color: var(--color-text-muted, var(--text-muted));
}

.preview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 24px;
}

.step-subtitle {
  text-align: center;
  color: var(--color-text-muted, var(--text-muted));
  font-size: 14px;
  margin: 4px 0 0;
}

/* ---- Result Cards List ---- */
.result-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.result-card-row {
  background: var(--color-surface, var(--bg-card));
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.15));
}

.result-card-label {
  font-size: 11px;
  color: var(--color-text-muted, var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.result-date-header {
  text-align: center;
  padding: 8px 16px 0;
  color: var(--color-text-muted, var(--text-muted));
  font-size: 13px;
}

/* ---- Identified Cards Summary ---- */
.identified-cards-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 4px;
}

.identified-card-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface, var(--bg-card));
  border-radius: 20px;
  padding: 4px 10px 4px 6px;
  font-size: 13px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.1));
}

.identified-card-chip img {
  width: 24px;
  height: 38px;
  object-fit: cover;
  border-radius: 3px;
}

/* ---- Card Edit Button ---- */
.card-edit-btn {
  flex-shrink: 0;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 8px;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
}
.card-edit-btn:hover,
.card-edit-btn:active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light, rgba(100, 80, 200, 0.08));
}

/* ---- Inline Search Panel ---- */
.card-search-panel {
  margin: -8px 0 8px 0;   /* Dính sát row phía trên */
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.card-search-input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}
.card-search-input::placeholder {
  color: var(--color-text-muted);
}

/* ---- Search Results Dropdown ---- */
.card-search-results {
  max-height: 280px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.1s;
}
.search-result-item:hover,
.search-result-item:active {
  background: var(--color-primary-light, rgba(100, 80, 200, 0.08));
}

.search-result-img {
  width: 32px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-result-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.search-result-en {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===========================
   PREMIUM LOCK OVERLAY
   =========================== */
.premium-lock-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.premium-lock-overlay.hidden {
  display: none;
}

.premium-lock-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid #e94560;
}

.premium-lock-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.premium-lock-title {
  color: #e94560;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.premium-lock-desc {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.premium-code-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.premium-code-input {
  flex: 1;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #0f3460;
  border-radius: 10px;
  background: #0f3460;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
  transition: border-color 0.3s;
}

.premium-code-input:focus {
  outline: none;
  border-color: #e94560;
}

.premium-code-input::placeholder {
  color: #666;
  letter-spacing: 1px;
}

.premium-unlock-btn {
  padding: 15px 25px;
  background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.premium-unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.premium-unlock-btn:active {
  transform: translateY(0);
}

.premium-lock-msg {
  color: #e94560;
  font-size: 14px;
  min-height: 20px;
  margin-top: 10px;
}

.premium-lock-msg.error {
  color: #dc3545;
}

.premium-lock-msg.success {
  color: #28a745;
}
