@keyframes waveAnim {
  0% {
    transform: scaleY(0.6);
  }
  to {
    transform: scaleY(1.3);
  }
}
.blueBg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
#trends {
  padding: 0;
  margin: 0;
}
#trends,
#trends .inner {
  width: 100%;
  max-width: 100%;
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/520;
  filter: brightness(1);
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0 50px;
  background: 0 0;
  color: #fff;
}
.btn-hero-outline,
.btn-hero-primary {
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-hero-primary {
  background: #0a70ff;
  border: 0;
  padding: 12px 28px;
  margin-right: 10px;
}
.btn-hero-primary:hover {
  background: #05c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 112, 255, 0.4);
}
.btn-hero-outline {
  background: 0 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 10px 28px;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-quick {
  background: #f0f4ff;
  color: #0a70ff;
  border: 1px solid #d6e4ff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.btn-quick:hover {
  background: #0a70ff;
  color: #fff;
  border-color: #0a70ff;
  box-shadow: 0 2px 8px rgba(10, 112, 255, 0.25);
}
.btn-quick i {
  margin-right: 4px;
}
.message-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.message-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a3a5c;
  border-bottom: 2px solid #e8ecf1;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.message-card-title i {
  color: #0a70ff;
  margin-right: 6px;
}
.message-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f2f4f7;
  transition: background 0.2s ease;
}
.message-item:last-child {
  border-bottom: none;
}
.message-item:hover {
  background: #f8faff;
  margin: 0-12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}
.message-item-title {
  flex: 1;
  margin-right: 10px;
}
.message-item-title a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.message-item-title a:hover {
  color: #0a70ff;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .hero-img {
    aspect-ratio: 16/7;
  }
  .hero-overlay {
    padding: 40px 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .hero-img {
    aspect-ratio: 16/9;
  }
  .hero-overlay {
    padding: 20px 0;
  }
  .btn-hero-outline,
  .btn-hero-primary {
    padding: 8px 18px;
    font-size: 0.85rem;
    width: auto;
    margin-right: 0;
  }
  .quick-links {
    justify-content: center;
  }
  .btn-quick {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  .message-card {
    padding: 16px;
    margin-bottom: 0;
  }
  .message-card-title {
    font-size: 1rem;
  }
  .message-item {
    gap: 6px;
  }
  .message-item-title {
    margin-right: 0;
    flex: 1 1 0;
    min-width: 0;
  }
}
.content-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.content-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 112, 255, 0.12);
  border-color: #b3d1ff;
}
.content-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: #0a70ff;
}
.content-card:hover .content-card-icon {
  background: #0a70ff;
  color: #fff;
}
.content-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 6px;
  line-height: 1.3;
}
.content-card-meta {
  font-size: 0.8rem;
  color: #89a;
}
.book-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.book-card-cover,
.book-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card-cover {
  padding: 16px;
  min-height: 160px;
  background: #f8f9fa;
}
.book-card-cover img {
  max-width: 100%;
  max-height: 150px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.book-card-placeholder {
  width: 80px;
  height: 100px;
  background: #e8ecf1;
  border-radius: 4px;
  font-size: 2rem;
  color: #b0bec5;
}
.book-card-body {
  padding: 16px 20px;
}
.book-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.book-card-author,
.book-card-desc {
  font-size: 0.85rem;
  color: #89a;
  margin-bottom: 8px;
}
.book-card-author i,
.book-card-meta i,
.news-card-meta i {
  margin-right: 3px;
}
.book-card-desc {
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 4px;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp.expanded {
  -webkit-line-clamp: unset;
}
.read-more-link {
  font-size: 0.8rem;
  color: var(--primary-color, #0d6efd);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 12px;
  display: inline-block;
}

.read-more-link:hover {
  text-decoration: underline;
}
.book-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.book-card-meta {
  font-size: 0.8rem;
  color: #89a;
}
.book-detail-cover img,
.book-detail-cover picture {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}
.book-detail-cover:hover img,
.book-detail-cover:hover picture {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
}
.quote-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  border-left: 4px solid #0a70ff;
}
.quote-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.quote-card-icon {
  font-size: 2rem;
  color: #d6e4ff;
  line-height: 1;
  margin-bottom: 8px;
}
.quote-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 10px;
}
.quote-card-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}
.quote-card-author {
  font-size: 0.85rem;
  color: #0a70ff;
  font-weight: 600;
  margin-top: 12px;
}
.news-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.news-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #f57c00;
  margin-bottom: 12px;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}
.news-card-text {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 4px;
}
.news-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  margin-top: .5rem;
}
.news-card-meta {
  font-size: 0.8rem;
  color: #89a;
}
.blog-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 112, 255, 0.12);
  border-color: #b3d1ff;
}
.blog-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 6px;
  line-height: 1.3;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: #89a;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}
.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0a70ff;
  background: #f0f4ff;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.blog-card-category:hover {
  background: #0a70ff;
  color: #fff;
}
.blog-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-sidebar {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 20px;
}
.blog-sidebar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f4ff;
}
.blog-sidebar-title i {
  margin-right: 6px;
  color: #0a70ff;
}
.blog-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f2f5;
}
.blog-sidebar-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-sidebar-list a {
  text-decoration: none;
  color: #1a3a5c;
  display: block;
  transition: color 0.2s;
}
.blog-sidebar-list a:hover {
  color: #0a70ff;
}
.blog-sidebar-list a strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}
.blog-sidebar-list a small {
  font-size: 0.75rem;
  color: #89a;
}

.footer-quick-links a {
  text-decoration: none;
  font-size: 0.88rem;
}
.audio-player-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.audio-player-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.audio-player-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a70ff, #4a9fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.audio-player-actions,
.audio-track-card {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.audio-track-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 16px 20px;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.audio-track-card:hover {
  background: #f8faff;
  border-color: #b3d1ff;
}
.audio-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.audio-track-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a70ff;
  flex-shrink: 0;
}
.audio-track-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a3a5c;
  margin: 0;
}
.audio-track-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.audio-track-player {
  flex-basis: 100%;
}
.audio-track-player audio {
  width: 100%;
  height: 32px;
}
.detail-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.detail-card-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8ecf1;
}
.detail-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 8px;
}
.detail-card-author {
  font-size: 0.9rem;
  color: #89a;
  font-style: italic;
}
.detail-card-author i {
  margin-right: 4px;
}
.detail-card-actions {
  margin-bottom: 20px;
}
.detail-card-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .content-card {
    padding: 16px;
  }
  .content-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .content-card-title {
    font-size: 0.88rem;
  }
  .book-card-body {
    padding: 12px 14px;
  }
  .book-card-title {
    font-size: 0.9rem;
  }
  .book-card-desc {
    -webkit-line-clamp: 2;
  }
  .news-card,
  .quote-card {
    padding: 16px;
  }
  .audio-player-card {
    padding: 20px;
  }
  .audio-player-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .audio-track-card {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .audio-track-actions,
  .audio-track-player audio {
    width: 100%;
  }
  .audio-track-actions .btn {
    flex: 1;
    text-align: center;
  }
  .detail-card {
    padding: 20px 16px;
  }
  .detail-card-title {
    font-size: 1.2rem;
  }
  .detail-card-content {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
html {
  scroll-behavior: smooth;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 {
  transition-delay: 0.1s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-footer {
  background: #0f1b2d;
  color: #c0c8d4;
  padding: 48px 0 0;
  margin-top: 48px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.footer-podcast-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-podcast-badge {
  display: inline-block;
  opacity: 0.85;
  transition: all 0.25s ease;
  border-radius: 8px;
  overflow: hidden;
}
.footer-podcast-badge img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-podcast-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-social-links {
  display: flex;
  gap: 12px;
}
.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0c8d4;
  font-size: 1.15rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-social-icon:hover {
  background: #0a70ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 112, 255, 0.35);
}
.footer-quick-links li {
  margin-bottom: 6px;
}
.footer-quick-links a {
  color: #89a;
  transition: color 0.2s;
}
.footer-address strong,
.footer-quick-links a:hover {
  color: #fff;
}
.footer-address {
  font-style: normal;
  color: #89a;
  line-height: 1.8;
}
.footer-phone {
  color: #c0c8d4;
}
.footer-phone i {
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #6c757d;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 32px 0 0;
    text-align: center;
  }
  .footer-podcast-links,
  .footer-social-links {
    justify-content: center;
  }
  .footer-address {
    text-align: center;
  }
  .footer-bottom {
    margin-top: 24px;
  }
}
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: #0a70ff;
  border-color: #0a70ff;
}
.btn-primary:hover {
  background: #05c;
  border-color: #05c;
}
.btn-success {
  background: #22c55e;
  border-color: #22c55e;
}
.btn-success:hover {
  background: #16a34a;
  border-color: #16a34a;
}
.btn-outline-primary {
  color: #0a70ff;
  border-color: #0a70ff;
}
.btn-outline-primary:hover {
  background: #0a70ff;
  border-color: #0a70ff;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a3a5c;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.6rem;
  letter-spacing: -0.3px;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
h5 {
  font-size: 0.95rem;
}
h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
p {
  margin-bottom: 1em;
  color: #444;
}
hr {
  border: 0;
  border-top: 1px solid #e8ecf1;
  margin: 24px 0;
}
.text-muted {
  color: #89a !important;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 15px;
  }
}
#logo img,
table {
  width: 100%;
}
table {
  border: collapse;
}
.post {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.8;
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 20px;
}
h1.titleBlue {
  font-weight: 600;
}
.titleBlue,
h1.titleBlue {
  color: #1a3a5c;
  border-bottom: #e8ecf1 1px solid;
  padding: 10px 10px 0;
  margin-bottom: 10px;
}
.white-round {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.recent li:hover {
  background-color: #f8faff;
}
.auth-page {
  background: #111827;
  min-height: 100vh;
  margin: 0;
}
.auth-page-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.auth-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.auth-card-header {
  text-align: center;
  margin-bottom: 28px;
}
.auth-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a70ff, #4a9fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.auth-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.auth-card-subtitle {
  font-size: 0.9rem;
  color: #89a;
  margin-bottom: 0;
}
.auth-card .form-label {
  font-size: 0.85rem;
  color: #4a5568;
}
.auth-card .form-label i,
.footer-phone i {
  color: #0a70ff;
  margin-right: 4px;
}
.auth-card .form-control-lg {
  border-radius: 10px;
  border: 1px solid #e0e5ec;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.auth-card .form-control-lg:focus {
  border-color: #0a70ff;
  box-shadow: 0 0 0 3px rgba(10, 112, 255, 0.1);
}
.auth-btn {
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #0a70ff, #4a9fff);
  border: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 112, 255, 0.3);
}
.auth-btn:active {
  transform: translateY(0);
}
.auth-card-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f2f5;
}
.auth-card-footer p {
  font-size: 0.88rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.auth-card-footer a {
  color: #0a70ff;
  font-weight: 500;
}
.auth-card-footer a:hover {
  text-decoration: underline;
}
.auth-back-link {
  font-size: 0.82rem;
  color: #89a !important;
}
.auth-back-link:hover {
  color: #0a70ff !important;
}
@media (max-width: 576px) {
  .auth-card {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .auth-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
  .auth-card-title {
    font-size: 1.25rem;
  }
}
.author {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: #89a;
  margin-bottom: 30px;
}
.nav-pills .nav-link {
  font-size: 14px;
}
.nav-tabs li ul,
.recent {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.recent li {
  padding: 20px 10px;
  border-bottom: 1px solid #e8ecf1;
}
.auth-card-footer a,
.recent li a,
.recent li a:hover {
  text-decoration: none;
}

.four,
.one,
.three,
.two {
  float: left;
}
ol.inline,
ul.inline {
  margin-left: 0;
  list-style: none;
}
ol.inline > li,
ul.inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.one {
  width: 8.333%;
}
.two {
  width: 16.667%;
}
.three {
  width: 25%;
}
.four {
  width: 33.333%;
}
.img img {
  width: 100%;
}
.titleTop {
  padding: 10px 0;
  border-bottom: #ccc 1px solid;
  height: 30px;
}
.pageTitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a3a5c;
}
.clear {
  clear: both;
  margin-bottom: 10px;
}
.audio {
  height: 20px;
  overflow: hidden;
}
.nav-tabs li a {
  background: #0a70ff;
  border-color: #0a70ff;
  color: #fff;
  border-radius: 6px 6px 0 0;
  transition: background 0.2s ease;
}
.nav-tabs li a:hover {
  background: #05c;
  color: #fff;
}
.nav-tabs li.active a {
  background: #05c;
}
.nav-tabs li ul {
  padding: 0 0 0 20px;
}
.nav-tabs li ul li.active a,
.nav-tabs > li > ul > li > a {
  background-color: #d6e4ff;
  color: #0a70ff;
  border-bottom: 1px solid #fff;
}
.nav-tabs > li > ul > li > a {
  font-size: 13px;
  background-color: #f0f4ff;
  background-image: none;
  display: block;
  padding: 5px 13px;
}
.nav-tabs2 li a {
  background-color: none;
  background-image: none;
  color: #333;
}
.padd {
  padding: 20px;
}
@media screen and (max-width: 991.98px) {
  #menu {
    display: none;
  }
  .nav-glass-bar {
    border-radius: 0;
    padding: 8px 12px;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  .nav-glass-bar .navbar-toggler {
    border: 1.5px solid #0a70ff;
    border-radius: 8px;
    padding: 4px 10px;
  }
  .nav-glass-bar .nav-pills .nav-item {
    flex: none;
  }
  .nav-glass-bar .nav-pills .nav-link {
    text-align: center;
    margin: 3px 0;
    padding: 5px 14px;
    font-size: 14px;
  }
  #navCollapse {
    width: 100%;
    margin-top: 8px;
  }
  #logo img {
    width: 90%;
    padding: 0 20px;
  }
  .white-round {
    margin-right: 10px;
    margin-left: 10px;
  }
  .well {
    margin: 0 20px 20px;
  }
  .audio {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  #menu {
    display: none;
  }
}
@media all and (max-width: 640px) {
  
  table,
  tbody,
  td,
  th,
  thead,
  tr {
    display: block;
  }
  tr + tr {
    margin-top: 1em;
  }
  #logo img {
    width: 90%;
    padding: 0 20px;
  }
  .white-round {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.content-card-cover {
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 14px;
  max-width: 180px;
}
.content-card-cover img,
.content-card-cover picture {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.detail-card-cover {
  margin-bottom: 16px;
}
.tract-detail-img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .content-card-cover {
    max-width: 140px;
  }
  .tract-detail-img {
    max-width: 220px;
  }
}
.message-item-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  margin-right: 8px;
}
.message-item-thumb img,
.message-item-thumb picture {
  width: 100%;
  height: 100%;
  display: block;
}
.message-item-thumb picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.message-item-thumb img {
  object-fit: cover;
  border-radius: 8px;
}
.message-item-thumb-icon {
  color: #0a70ff;
  font-size: 1rem;
  text-decoration: none;
}
.message-item-thumb-icon:hover {
  color: #05c;
}
@media screen and (max-width: 768px) {
  .message-item-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
}
.site-breadcrumbs {
  background: transparent;
  border-bottom: none;
  padding: 8px 0;
  font-size: 0.82rem;
}
.site-breadcrumbs .breadcrumb {
  margin-bottom: 0;
}
.site-breadcrumbs .breadcrumb-item a {
  color: #0a70ff;
  text-decoration: none;
}
.site-breadcrumbs .breadcrumb-item a:hover {
  text-decoration: underline;
}
.site-breadcrumbs .breadcrumb-item.active {
  color: #6c757d;
}
/* Picture Card Header */
.picture-card-header {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
  height: 180px;
}
.picture-card-header > img,
.picture-card-header > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.picture-card-header > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.picture-card-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(255, 255, 255, 0.6) 75%,
    #fff 100%
  );
}
.picture-card-header-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px 16px;
  z-index: 2;
  overflow: hidden;
}
.picture-card-header-content h1,
.picture-card-header-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.picture-card-header-content h1 i,
.picture-card-header-content h2 i {
  color: #0a70ff;
  margin-right: 8px;
}
.picture-card-header-content p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.picture-card-header-content .audio-search-form {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .picture-card-header {
    height: 140px;
    margin-top: 8px;
    border-radius: 10px;
  }
  .picture-card-header-content {
    padding: 0 16px 12px;
  }
  .picture-card-header-content h1,
  .picture-card-header-content h2 {
    font-size: 1.2rem;
  }
  .picture-card-header-content p {
    font-size: 0.82rem;
  }
}
/* Mobile nav logo fill override */
@media screen and (max-width: 991.98px) {
  .nav-glass-bar {
    min-height: 64px;
    height: auto;
    padding: 0 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
  }
  .sticky-logo-mobile {
    height: 64px;
    display: flex;
    align-items: center;
  }
  .sticky-logo-mobile img {
    height: 70%;
    width: auto;
    max-height: 70%;
  }
}
