/* ==========================================================================
   DateMeet - Main App CSS
   Mobile-first design for dating web app
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --primary: #ff4757;
  --primary-light: #ff6b7a;
  --primary-dark: #e8384a;
  --secondary: #ffa502;
  --bg: #f5f5f5;
  --card-bg: #fff;
  --text: #333;
  --text-light: #999;
  --text-medium: #666;
  --border: #f0f0f0;
  --border-radius: 12px;
  --nav-height: 56px;
  --top-bar-height: 48px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   Global Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   App Container
   -------------------------------------------------------------------------- */
.app-container {
  min-height: 100vh;
  padding-bottom: calc(var(--nav-height) + env(safe-area-inset-bottom));
  position: relative;
}

.page-content {
  padding-top: var(--top-bar-height);
}

/* --------------------------------------------------------------------------
   Card
   -------------------------------------------------------------------------- */
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card + .card {
  margin-top: 8px;
}

.card-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 15px;
}

.card-body {
  padding: 16px;
}

.card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn:active {
  opacity: 0.85;
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:active {
  background: var(--primary-dark);
  transform: scale(0.97);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary.btn-block {
  width: 100%;
  border-radius: 12px;
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:active {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}

.btn-whatsapp:active {
  background: #1da851;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 17px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 48px;
  background: #111108;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.top-bar-title {
  font-size: 17px;
  font-weight: 700;
  color: #f0d060;
  flex: 1;
  text-align: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 40px;
}

.top-bar-right {
  justify-content: flex-end;
}

.top-bar-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
}

.top-bar-back:active {
  background: var(--border);
}

/* --------------------------------------------------------------------------
   Bottom Navigation
   -------------------------------------------------------------------------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: var(--nav-height);
  background: #0c0c0a;
  border-top: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3px;
  cursor: pointer;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-item.active {
  color: #d4af37;
}

.nav-item-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform var(--transition);
}

.nav-item.active .nav-item-icon {
  transform: scale(1.1);
}

.nav-item-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nav-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.hidden {
  display: none;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  width: 90%;
  position: relative;
  animation: slideUp 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
}

.modal-desc {
  font-size: 14px;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-light);
  transition: background var(--transition);
}

.modal-close:active {
  background: var(--border);
}

.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.modal-actions .btn {
  flex: 1;
}

/* Bottom Sheet */
.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  animation: fadeIn 0.2s ease;
}

.bottom-sheet-overlay.hidden {
  display: none;
}

.bottom-sheet {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0 0 env(safe-area-inset-bottom);
  width: 100%;
  animation: slideUpSheet 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.bottom-sheet-handle {
  width: 36px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 12px auto 16px;
}

.bottom-sheet-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--border);
}

.bottom-sheet-content {
  padding: 16px;
}

/* --------------------------------------------------------------------------
   Toast Notification
   -------------------------------------------------------------------------- */
.dm-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 2000;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  animation: toastIn 0.25s ease;
  max-width: calc(100% - 40px);
  text-align: center;
}

.dm-toast.toast-success {
  background: rgba(40, 167, 69, 0.9);
}

.dm-toast.toast-error {
  background: rgba(220, 53, 69, 0.9);
}

.dm-toast.toast-warning {
  background: rgba(255, 165, 0, 0.9);
}

.dm-toast.fade-out {
  animation: toastOut 0.3s ease forwards;
}

/* --------------------------------------------------------------------------
   Form Styles
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.form-label.required::after {
  content: ' *';
  color: var(--primary);
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #ccc;
}

.form-control.is-invalid {
  border-color: var(--primary);
}

textarea.form-control {
  height: auto;
  min-height: 80px;
  padding: 12px 14px;
  resize: none;
  line-height: 1.5;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M6 7L0 0h12z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-error {
  font-size: 12px;
  color: var(--primary);
  margin-top: 4px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Loading Spinner
   -------------------------------------------------------------------------- */
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.spinner-lg {
  width: 36px;
  height: 36px;
  border-width: 3px;
}

.spinner-white {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loading-overlay.hidden {
  display: none;
}

.loading-text {
  font-size: 14px;
  color: var(--text-medium);
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}

.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--text-light);
  font-size: 13px;
  gap: 8px;
}

.no-more-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--text-light);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Avatar
   -------------------------------------------------------------------------- */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
}

.avatar-xs { width: 28px; height: 28px; }
.avatar-sm { width: 36px; height: 36px; }
.avatar-md { width: 48px; height: 48px; }
.avatar-lg { width: 64px; height: 64px; }
.avatar-xl { width: 80px; height: 80px; }
.avatar-2xl { width: 100px; height: 100px; }

.avatar-online {
  position: relative;
}

.avatar-online::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #2ed573;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* --------------------------------------------------------------------------
   Tags / Badges
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg);
  color: var(--text-medium);
  white-space: nowrap;
}

.tag-primary {
  background: rgba(255, 71, 87, 0.1);
  color: var(--primary);
}

.tag-success {
  background: rgba(46, 213, 115, 0.1);
  color: #1ba855;
}

.tag-warning {
  background: rgba(255, 165, 0, 0.12);
  color: #b37400;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Divider
   -------------------------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 13px;
  margin: 16px 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* --------------------------------------------------------------------------
   Activation / Unlock Prompt
   -------------------------------------------------------------------------- */
.activation-card {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1.5px solid rgba(255, 71, 87, 0.2);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  text-align: center;
}

.activation-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.activation-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.activation-desc {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.activation-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Empty State
   -------------------------------------------------------------------------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.empty-state-icon {
  font-size: 56px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 8px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.section-more {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.hidden { display: none !important; }
.visible { display: block !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-light { color: var(--text-light); }
.text-medium { color: var(--text-medium); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.p-16 { padding: 16px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.w-full { width: 100%; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Animations / Keyframes
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, 10px); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.6); }
  60% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Scrollbar Hide (for horizontal scrolls)
   -------------------------------------------------------------------------- */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --------------------------------------------------------------------------
   Safe Area Helpers
   -------------------------------------------------------------------------- */
.safe-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

.safe-top {
  padding-top: env(safe-area-inset-top);
}

/* --------------------------------------------------------------------------
   Premium Feed Cards (dm-feed-card — rendered by feed.js)
   -------------------------------------------------------------------------- */
.dm-feed-card {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0a10;
  box-shadow: 0 4px 18px rgba(0,0,0,0.38), 0 0 0 1px rgba(233,30,140,0.1);
  transition: transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.dm-feed-card:active {
  transform: scale(0.97);
}

.dm-card-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.dm-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 160px;
  background: #2a0f1e;
  transition: transform 0.3s ease;
}
.dm-feed-card:active .dm-card-img {
  transform: scale(1.04);
}

/* Dark gradient overlay so text reads on any image */
.dm-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 45%,
    transparent 100%
  );
  pointer-events: none;
}

/* Text overlay positioned at bottom of image */
.dm-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 10px 10px;
  z-index: 2;
}

.dm-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dm-card-bio {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}
.dm-card-bottom-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dm-card-cup {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 8px;
  background: rgba(233,30,140,0.75);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,107,157,0.35);
  flex-shrink: 0;
}
.dm-like-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,107,157,0.3);
  border-radius: 10px;
  padding: 3px 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s;
  flex-shrink: 0;
}
.dm-like-btn.liked {
  background: rgba(233,30,140,0.32);
  border-color: #e91e8c;
}
.dm-like-count {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.dm-like-icon {
  flex-shrink: 0;
}

/* Video auth badge — top-right corner of image */
.dm-card-video-auth {
  position: absolute;
  top: 7px; right: 7px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 3px 7px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dm-card-video-auth.dm-video-verified {
  background: rgba(46,213,115,0.18);
  border-color: rgba(46,213,115,0.45);
  color: #2ed573;
}
.dm-video-auth-icon { display: flex; align-items: center; }
.dm-video-check { display: flex; align-items: center; color: #2ed573; }
