.moods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .mood-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .mood-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    text-decoration: none;
    border-color: rgba(0, 0, 0, 0.15);
  }

  .mood-custom-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
  }

  .mood-custom-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
  }

  .mood-custom-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .mood-stats {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .mood-btn {
    margin-top: auto;
    background-color: #6f42c1;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s;
  }

  .mood-card:hover .mood-btn {
    background-color: #59359a;
    color: white;
  }

  .search-container {
    max-width: 500px;
    margin: 0 auto 2rem auto;
  }

  .rm-page[data-theme="dark"] .mood-card,
  body.dark-mode .mood-card {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .mood-custom-title { color: #f8f9fa; }
  body.dark-mode .mood-custom-desc { color: #adb5bd; }
  body.dark-mode .mood-custom-icon { color: #ddd; }
  body.dark-mode .mood-stats { color: #888; }