/* ========================================
   Solarized Color Palette (CSS Variables)
   ======================================== */
:root {
  --sol-base03:  #002b36;
  --sol-base02:  #073642;
  --sol-base01:  #586e75;
  --sol-base00:  #657b83;
  --sol-base0:   #839496;
  --sol-base1:   #93a1a1;
  --sol-base2:   #eee8d5;
  --sol-base3:   #fdf6e3;
  --sol-yellow:  #b58900;
  --sol-orange:  #cb4b16;
  --sol-red:     #dc322f;
  --sol-magenta: #d33682;
  --sol-violet:  #6c71c4;
  --sol-blue:    #268bd2;
  --sol-cyan:    #2aa198;
  --sol-green:   #859900;

  /* Islamic gold accent */
  --gold:        #c9a84c;
  --gold-light:  #e0c068;
}

/* ========================================
   DARK MODE (default Solarized Dark)
   ======================================== */
[data-bs-theme="dark"] {
  --bs-body-bg:         var(--sol-base03);
  --bs-body-color:      var(--sol-base0);
  --bs-secondary-bg:    var(--sol-base02);
  --bs-tertiary-bg:     #0a3845;
  --bs-border-color:    var(--sol-base02);
  --bs-link-color:      var(--sol-cyan);
  --bs-link-hover-color:var(--gold-light);

  --card-bg:            var(--sol-base02);
  --card-border:        #0e4555;
  --navbar-bg:          #001e28;
  --footer-bg:          #001e28;
  --hero-bg:            linear-gradient(135deg, #001e28 0%, #00343f 50%, #001e28 100%);
  --accent:             var(--sol-cyan);
  --accent2:            var(--gold);
  --text-muted-custom:  var(--sol-base01);
  --heading-color:      var(--sol-base1);
  --badge-featured-bg:  var(--sol-yellow);
  --overlay-bg:         rgba(0,43,54,0.95);
  --modal-bg:           var(--sol-base02);
  --input-bg:           var(--sol-base03);
  --input-border:       var(--sol-base01);
  --scrollbar-track:    var(--sol-base02);
  --scrollbar-thumb:    var(--sol-base01);
  --cat-pill-active-bg: var(--sol-cyan);
  --cat-pill-active-color: var(--sol-base03);
  --shimmer-base:       #0a3845;
  --shimmer-highlight:  #0e4a5a;
}

/* ========================================
   LIGHT MODE (Solarized Light)
   ======================================== */
[data-bs-theme="light"] {
  --bs-body-bg:         var(--sol-base3);
  --bs-body-color:      var(--sol-base00);
  --bs-secondary-bg:    var(--sol-base2);
  --bs-tertiary-bg:     #e8e0c8;
  --bs-border-color:    #d5ceb8;
  --bs-link-color:      var(--sol-blue);
  --bs-link-hover-color:var(--sol-cyan);

  --card-bg:            #ffffff;
  --card-border:        #d5ceb8;
  --navbar-bg:          #fdf6e3;
  --footer-bg:          var(--sol-base2);
  --hero-bg:            linear-gradient(135deg, #e8e0c8 0%, #fdf6e3 50%, #e8e0c8 100%);
  --accent:             var(--sol-blue);
  --accent2:            var(--sol-yellow);
  --text-muted-custom:  var(--sol-base1);
  --heading-color:      var(--sol-base01);
  --badge-featured-bg:  var(--sol-yellow);
  --overlay-bg:         rgba(253,246,227,0.97);
  --modal-bg:           #fff;
  --input-bg:           #fff;
  --input-border:       #d5ceb8;
  --scrollbar-track:    var(--sol-base2);
  --scrollbar-thumb:    var(--sol-base1);
  --cat-pill-active-bg: var(--sol-blue);
  --cat-pill-active-color: #fff;
  --shimmer-base:       #e8e0c8;
  --shimmer-highlight:  #f5efd8;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  direction: rtl;
  line-height: 2;
  font-size: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  color: var(--heading-color);
  line-height: 1.8;
}

.arabic-text {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.4rem;
  line-height: 2.2;
  color: var(--accent);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background-color: var(--navbar-bg) !important;
  border-bottom: 2px solid var(--card-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
  transition: background-color 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(42,161,152,0.4);
}

.brand-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, var(--sol-base02), var(--sol-base03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  box-shadow: 0 0 12px rgba(42,161,152,0.4);
  flex-shrink: 0;
}

.brand-name-ur {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
}

.brand-name-sub {
  font-size: 0.75rem;
  color: var(--accent);
  line-height: 1;
}

.nav-link {
  color: var(--bs-body-color) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
  background: rgba(42,161,152,0.1);
}

/* Theme Toggle */
.theme-toggle-btn {
  width: 42px;
  height: 24px;
  background: var(--sol-base01);
  border-radius: 12px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  outline: none;
  box-shadow: none !important;
}

.theme-toggle-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

[data-bs-theme="light"] .theme-toggle-btn::after {
  transform: translateX(-18px);
}

[data-bs-theme="dark"] .theme-toggle-btn {
  background: var(--sol-cyan);
}

.theme-icon {
  font-size: 1rem;
  transition: opacity 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: var(--hero-bg);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232aa198' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C%2Fsvg%3E");
  opacity: 0.5;
}

.hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(42,161,152,0.3), 0 0 60px rgba(42,161,152,0.1);
  object-fit: cover;
}

.hero-avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(42,161,152,0.3), 0 0 60px rgba(42,161,152,0.1);
  background: linear-gradient(135deg, var(--sol-base02), var(--sol-base03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted-custom);
  margin-bottom: 1rem;
}

.hero-quote {
  background: rgba(42,161,152,0.08);
  border-right: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  color: var(--sol-base1);
  display: inline-block;
  margin-top: 0.5rem;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-heading {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--card-border));
}

.section-heading .icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================================
   CATEGORY PILLS
   ======================================== */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cat-pill {
  padding: 0.35rem 1rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--bs-body-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.5;
}

.cat-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cat-pill.active {
  background: var(--cat-pill-active-bg);
  color: var(--cat-pill-active-color);
  border-color: var(--cat-pill-active-bg);
}

.cat-pill .count {
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 0 0.4rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ========================================
   VIDEO CARDS
   ======================================== */
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: var(--accent);
}

.video-thumb-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: var(--sol-base03);
  overflow: hidden;
}

.video-thumb-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s ease;
}

.video-card:hover .play-overlay {
  background: rgba(0,0,0,0.35);
}

.play-btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(42,161,152,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding-left: 4px;
}

.video-card:hover .play-btn-icon {
  opacity: 1;
  transform: scale(1);
}

.badge-featured {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 1.6;
}

.views-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.video-card-body {
  padding: 0.85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-desc {
  font-size: 0.82rem;
  color: var(--text-muted-custom);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
  flex: 1;
}

.video-meta {
  font-size: 0.78rem;
  color: var(--text-muted-custom);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cat-tag {
  background: rgba(42,161,152,0.12);
  color: var(--accent);
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
}

/* ========================================
   VIDEO MODAL / LIGHTBOX
   ======================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--overlay-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-box {
  width: 100%;
  max-width: 900px;
  background: var(--modal-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.25s ease;
}

.video-modal-overlay.active .video-modal-box {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  gap: 1rem;
}

.video-modal-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.8;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--bs-body-color);
  border-radius: 6px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 1rem;
}

.modal-close-btn:hover {
  background: var(--sol-red);
  border-color: var(--sol-red);
  color: #fff;
}

.video-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-modal-body {
  padding: 1rem 1.25rem;
}

.video-modal-desc {
  font-size: 0.9rem;
  color: var(--bs-body-color);
  line-height: 2;
  margin-bottom: 0.75rem;
}

.video-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted-custom);
}

.yt-external-link {
  color: var(--sol-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.yt-external-link:hover { text-decoration: underline; }

/* ========================================
   FEATURED SECTION
   ======================================== */
.featured-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  transition: all 0.25s ease;
  border-right: 3px solid var(--gold);
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-color: var(--gold);
}

.featured-card .thumb-wrap {
  position: relative;
  overflow: hidden;
}

.featured-card .thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.featured-card:hover .thumb-wrap img {
  transform: scale(1.05);
}

.featured-card .info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-rank {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  font-family: 'Noto Sans', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-custom);
  margin-top: 0.25rem;
  display: block;
}

/* ========================================
   HADITH BANNER
   ======================================== */
.hadith-banner {
  background: linear-gradient(135deg, rgba(42,161,152,0.15) 0%, rgba(181,137,0,0.1) 100%);
  border: 1px solid rgba(42,161,152,0.3);
  border-right: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  margin-bottom: 2rem;
}

.hadith-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,161,152,0.2);
  color: inherit;
  border-color: var(--accent);
}

.hadith-banner .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(42,161,152,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hadith-banner .text h5 {
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.hadith-banner .text p {
  color: var(--text-muted-custom);
  margin: 0;
  font-size: 0.85rem;
}

/* ========================================
   SEARCH BOX
   ======================================== */
.search-wrap {
  position: relative;
}

.search-wrap .form-control {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--bs-body-color);
  border-radius: 10px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-family: 'Noto Nastaliq Urdu', serif;
  transition: border-color 0.2s;
}

.search-wrap .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,161,152,0.15);
  background: var(--input-bg);
  color: var(--bs-body-color);
}

.search-wrap .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-custom);
  pointer-events: none;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--card-border);
  padding: 2rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-brand {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted-custom);
  line-height: 2;
}

.footer-divider {
  border-color: var(--card-border);
  margin: 1.25rem 0;
}

.footer-links a {
  color: var(--text-muted-custom);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ========================================
   NO RESULTS
   ======================================== */
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted-custom);
  display: none;
}

.no-results.visible { display: block; }

.no-results .icon {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 1rem;
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton {
  background: var(--shimmer-base);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--shimmer-highlight) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
  transform: translateX(-100%);
}

[dir="rtl"] .skeleton::after {
  animation: shimmer-rtl 1.5s infinite;
}

@keyframes shimmer {
  to { transform: translateX(100%); }
}
@keyframes shimmer-rtl {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-accent { color: var(--accent) !important; }
.text-gold   { color: var(--gold) !important; }
.border-accent { border-color: var(--accent) !important; }

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--card-border), transparent);
  margin: 2.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

.video-card {
  animation: fadeInUp 0.4s ease both;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card .thumb-wrap {
    height: 180px;
  }
  .hero-section {
    padding: 2.5rem 0 2rem;
  }
  .stats-bar {
    gap: 0.75rem;
  }
  .hadith-banner {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  body { font-size: 0.95rem; }
  .video-modal-box { border-radius: 12px 12px 0 0; }
  .video-modal-overlay { align-items: flex-end; padding: 0; }
}
