/* GLOBAL RESET & FONTS */
* { box-sizing: border-box; }
.txyf-app {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f3f4f6;
  min-height: 100vh;
  color: #1f2937;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
  color: white;
  padding: 60px 20px 80px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.4);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 150%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero-section .subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* --- SEARCH BAR --- */
.search-bar {
  max-width: 650px;
  margin: 0 auto 24px;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  color: white;
}
.search-bar input::placeholder { color: rgba(255, 255, 255, 0.7); }
.search-bar input:focus { outline: none; }
.search-bar button {
  padding: 12px 32px;
  background: #ffffff;
  color: #2563eb;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  background: #f8fafc;
}

/* --- CATEGORY PILLS --- */
.category-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVENESS FOR HERO */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px 60px;
    border-radius: 0 0 30px 30px;
  }
  .hero-section h1 { font-size: 26px; }
  .search-bar {
    flex-direction: row;
    border-radius: 12px;
    padding: 6px;
  }
  .search-bar input {
    font-size: 14px;
    padding: 10px;
    width: 0;
  }
  .search-bar button {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
  }
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
  .category-pills::-webkit-scrollbar { display: none; }
}

/* --- MOBILE FILTER BUTTON --- */
.mobile-filter-toggle {
  display: none;
  margin-top: -30px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}
.mobile-filter-toggle button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  color: white !important;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s;
}
.mobile-filter-toggle button:active { transform: scale(0.98); }
.mobile-filter-toggle button::before { content: '⚙️'; font-size: 18px; }

/* --- FILTERS SECTION (Desktop) --- */
.filters-section {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  position: relative;
  top: -30px;
}
.filters-row { display: flex; gap: 20px; align-items: flex-end; }
.filter-group { flex: 1; }
.filter-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: #6b7280; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-group select {
  width: 100%; padding: 12px;
  border: 2px solid #f3f4f6; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: #374151;
  background-color: #fff; cursor: pointer;
  transition: border-color 0.2s;
}
.filter-group select:focus { border-color: #2563eb; outline: none; }
.filter-actions { display: flex; gap: 10px; }
.btn-primary {
  background: #2563eb; color: white; border: none;
  padding: 12px 24px; border-radius: 10px; font-weight: 600;
  cursor: pointer; box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}
.btn-secondary {
  background: #f3f4f6; color: #4b5563; border: none;
  padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer;
}

/* --- CARDS GRID (COMPACT) --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
}
.txyf-card-compact {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 120px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.txyf-card-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}
.tc-row-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.tc-exam-info {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; color: #64748b; text-transform: uppercase;
}
.tc-exam-info img { width: 18px; height: 18px; object-fit: contain; border-radius: 4px; }
.tc-badges { display: flex; gap: 4px; }
.tc-badge { font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.tc-new { background: #dcfce7; color: #15803d; }
.tc-done { background: #e0f2fe; color: #0369a1; display: none; }
.txyf-card-compact.is-attempted .tc-done { display: inline-block; }
.txyf-card-compact.is-attempted .tc-new { display: none; }
.tc-row-mid { margin-bottom: 12px; flex-grow: 1; }
.tc-title {
  font-size: 13px; font-weight: 700; color: #0f172a; line-height: 1.35; margin: 0; text-align: left;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tc-row-bot {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px dashed #f1f5f9; padding-top: 8px;
}
.tc-meta-left {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 10px; font-weight: 600; color: #64748b; text-align: left;
}
.tc-meta-right { text-align: right; }
.tc-users {
  font-size: 10px; font-weight: 700; color: #4f46e5;
  background: #eef2ff; padding: 3px 6px; border-radius: 4px;
}

@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .txyf-card-compact { padding: 10px; min-height: 110px; }
  .tc-title { font-size: 12px; }
}

/* --- PAGINATION --- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pg {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid #e5e7eb; background: white;
  font-weight: 600; color: #374151; cursor: pointer;
  transition: all 0.2s;
}
.pg.active, .pg:hover {
  background: #2563eb; color: white; border-color: #2563eb;
}

/* --- MOBILE PANEL --- */
.mobile-filter-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-filter-overlay.show { display: block; }
.mobile-filter-panel {
  position: fixed; top: 0; right: -100%;
  width: 85%; max-width: 320px; height: 100%;
  background: white; z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px; display: flex; flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.mobile-filter-panel.show { right: 0; }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.panel-header strong { font-size: 20px; }
.panel-body { flex: 1; }
.panel-body .filter-group { margin-bottom: 24px; }
.panel-actions { display: flex; gap: 12px; margin-top: 20px; }
.panel-actions button { flex: 1; padding: 14px; border-radius: 12px; }
@media (max-width: 768px) {
  .filters-section { display: none; }
  .mobile-filter-toggle { display: block; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SERIES CARDS
   ============================================= */
.txyf-series-grid { padding: 10px 0; }
.txyf-sc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.txyf-sc:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.txyf-sc-thumb {
    position: relative;
    height: 168px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex; align-items: center; justify-content: center;
}
.txyf-sc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.txyf-sc-thumb-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: #fff; padding: 16px; text-align: center; width: 100%;
}
.txyf-sc-thumb-placeholder span { font-size: 38px; }
.txyf-sc-thumb-placeholder strong { font-size: 13px; line-height: 1.4; }
.txyf-sc-crown {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #fff; padding: 4px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245,158,11,0.5);
}
.txyf-sc-lock-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 10px 12px; color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px;
}
.txyf-sc-unlocked-badge {
    position: absolute; top: 10px; right: 10px;
    background: #059669; color: #fff; padding: 4px 10px;
    border-radius: 20px; font-size: 11px; font-weight: 700;
}
.txyf-sc-tags { display: flex; gap: 6px; flex-wrap: wrap; padding: 10px 14px 4px; }
.txyf-tag-free   { background: #d1fae5; color: #065f46; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.txyf-tag-paid   { background: #fef3c7; color: #92400e; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.txyf-tag-exam   { background: #dbeafe; color: #1e40af; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.txyf-sc-title {
    font-size: 14px; font-weight: 700; color: #1f2937;
    padding: 6px 14px 4px; line-height: 1.4; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.txyf-sc-meta {
    display: flex; gap: 12px; flex-wrap: wrap; padding: 4px 14px 8px;
    font-size: 12px; color: #6b7280;
}
.txyf-sc-price {
    display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
    padding: 10px 14px 14px; border-top: 1px solid #f1f5f9;
}
.txyf-price-free   { font-size: 20px; font-weight: 800; color: #059669; }
.txyf-price-actual { font-size: 20px; font-weight: 800; color: #1f2937; }
.txyf-price-orig   { font-size: 13px; color: #9ca3af; text-decoration: line-through; }
.txyf-price-off    { font-size: 13px; color: #059669; font-weight: 700; }

@media (max-width: 768px) {
    .txyf-series-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}
@media (max-width: 480px) {
    .txyf-series-grid { grid-template-columns: 1fr !important; }
}

/* =============================================
   AUTH PAGE
   ============================================= */
.txyf-auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #db2777 100%);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.txyf-auth-box {
    background: #fff; border-radius: 24px;
    width: 100%; max-width: 460px;
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.txyf-auth-header {
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    padding: 32px 32px 20px; color: #fff; text-align: center;
}
.txyf-auth-logo { font-size: 40px; margin-bottom: 10px; }
.txyf-auth-header h2 { margin: 0 0 6px; font-size: 24px; font-weight: 800; }
.txyf-auth-header p  { margin: 0 0 16px; opacity: 0.85; font-size: 14px; }
.txyf-auth-tabs {
    display: flex; background: rgba(255,255,255,0.15);
    border-radius: 10px; padding: 3px;
}
.txyf-auth-tab {
    flex: 1; padding: 9px; border: none; border-radius: 8px;
    font-weight: 700; font-size: 14px; cursor: pointer;
    background: transparent; color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.txyf-auth-tab.active { background: #fff; color: #1e3a8a; }
.txyf-auth-body { padding: 24px 32px 28px; }
.txyf-auth-input-wrap { position: relative; margin-bottom: 14px; }
.txyf-auth-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 17px;
}
.txyf-auth-input-wrap input {
    width: 100%; padding: 12px 14px 12px 44px;
    border: 2px solid #e5e7eb; border-radius: 10px;
    font-size: 15px; color: #1f2937; outline: none; transition: border 0.2s; box-sizing: border-box;
}
.txyf-auth-input-wrap input:focus { border-color: #7c3aed; }
.txyf-auth-submit {
    width: 100%; padding: 14px; border: none; border-radius: 10px;
    font-size: 16px; font-weight: 800; cursor: pointer; margin-top: 4px;
    background: linear-gradient(135deg, #1e3a8a, #7c3aed); color: #fff;
    box-shadow: 0 4px 14px rgba(124,58,237,0.4); transition: all 0.2s;
}
.txyf-auth-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(124,58,237,0.5); }
.txyf-auth-msg {
    margin-top: 12px; font-size: 14px; font-weight: 600;
    padding: 10px; border-radius: 8px; display: none; text-align: center;
}
.txyf-auth-msg.ok  { background: #d1fae5; color: #065f46; }
.txyf-auth-msg.err { background: #fee2e2; color: #991b1b; }

/* =============================================
   HERO SECTION (tests listing page)
   ============================================= */
.tmt-tests-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    color: #fff; padding: 56px 20px 72px;
    text-align: center; border-radius: 0 0 40px 40px; position: relative; overflow: hidden;
}
.tmt-hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.tmt-hero-shapes .shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.tmt-hero-shapes .s1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.tmt-hero-shapes .s2 { width: 300px; height: 300px; bottom: -80px; right: -60px; }
.tmt-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.tmt-hero-inner h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.tmt-hero-inner p  { opacity: 0.9; font-size: 16px; margin-bottom: 28px; }
.tmt-text-gradient { background: linear-gradient(90deg,#fbbf24,#f9fafb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tmt-badge-new { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 14px; }
.tmt-modern-search { max-width: 560px; margin: 0 auto 20px; display: flex; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 6px 6px 6px 16px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.25); }
.tmt-search-wrap { flex: 1; display: flex; align-items: center; gap: 8px; }
.tmt-search-icon { font-size: 17px; opacity: 0.8; }
.tmt-modern-search input { flex: 1; background: transparent; border: none; padding: 10px 0; font-size: 15px; color: #fff; outline: none; }
.tmt-modern-search input::placeholder { color: rgba(255,255,255,0.7); }
.tmt-modern-search button { padding: 11px 26px; background: #fff; color: #2563eb; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.tmt-trending { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tmt-trending .label { opacity: 0.8; font-size: 13px; }
.tmt-topic-tag { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.tmt-topic-tag:hover { background: rgba(255,255,255,0.3); }
.tmt-section-header { display: flex; align-items: center; justify-content: space-between; margin: 26px 0 14px; }
.tmt-section-header h2 { font-size: 22px; font-weight: 700; color: #1f2937; margin: 0; }
.tmt-section-header p  { color: #6b7280; font-size: 14px; margin: 0; }
.txyf-access-badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.txyf-access-sample { background: #dbeafe; color: #1e40af; }
.txyf-access-free   { background: #d1fae5; color: #065f46; }
.txyf-access-paid   { background: #fef3c7; color: #92400e; }
@media (max-width: 640px) {
    .tmt-hero-inner h1 { font-size: 26px; }
    .tmt-modern-search { flex-direction: column; border-radius: 16px; gap: 8px; }
    .tmt-modern-search button { width: 100%; border-radius: 10px; }
}

/* =============================================
   OTP INPUT BOXES
   ============================================= */
.txyf-otp-box {
    width: 44px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    color: #1f2937;
    transition: border 0.2s, transform 0.1s;
    background: #f9fafb;
}
.txyf-otp-box:focus {
    border-color: #7c3aed;
    background: #fff;
    transform: scale(1.05);
}
.txyf-otp-box:not(:placeholder-shown) {
    border-color: #059669;
    background: #f0fdf4;
}
.txyf-auth-divider {
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    margin: 16px 0;
    position: relative;
}
.txyf-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}
.txyf-auth-divider span {
    background: #fff;
    padding: 0 12px;
    position: relative;
}
@media (max-width: 400px) {
    .txyf-otp-box { width: 38px; height: 46px; font-size: 18px; }
}

/* =============================================
   MOBILE MENU PROFILE
   ============================================= */
.tmt-mob-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    border-radius: 14px;
    margin-bottom: 8px;
    color: #fff;
}
.tmt-mob-auth-icon  { font-size: 36px; flex-shrink: 0; }
.tmt-mob-auth-text  { flex: 1; }
.tmt-mob-auth-title { display: block; font-weight: 700; font-size: 15px; }
.tmt-mob-auth-sub   { display: block; font-size: 12px; opacity: 0.8; margin-top: 2px; }
.tmt-mob-auth-btn   {
    padding: 8px 16px; background: #fff; color: #1e3a8a;
    border-radius: 20px; font-weight: 700; font-size: 13px;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.tmt-mob-profile { border-radius: 14px; overflow: hidden; margin-bottom: 8px; }
.tmt-mob-profile-header {
    display: flex; align-items: center; gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    color: #fff;
}
.tmt-mob-avatar {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 22px; font-weight: 800;
    flex-shrink: 0;
}
.tmt-mob-info    { flex: 1; }
.tmt-mob-name    { font-weight: 700; font-size: 16px; }
.tmt-mob-email   { font-size: 12px; opacity: 0.8; margin-top: 2px; word-break: break-all; }
.tmt-mob-stats {
    display: flex; background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}
.tmt-mob-stat {
    flex: 1; text-align: center; padding: 10px;
    border-right: 1px solid #e5e7eb;
}
.tmt-mob-stat:last-child { border-right: none; }
.tmt-mob-stat-val { font-size: 18px; font-weight: 800; color: #1f2937; }
.tmt-mob-stat-lbl { font-size: 11px; color: #6b7280; margin-top: 2px; }
.tmt-mob-links   { background: #fff; }
.tmt-mob-link {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px; color: #374151; text-decoration: none;
    font-size: 14px; font-weight: 600; border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.tmt-mob-link:hover   { background: #f8fafc; }
.tmt-mob-logout       { color: #dc2626 !important; }